/**
 * AccuArk© Website - Main Stylesheet
 * ==================================
 * Enterprise B2B SaaS Design
 */

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    /* Primary Colors */
    --primary-blue: #1a4b8c;
    --primary-blue-dark: #143a6d;
    --secondary-teal: #0d9488;
    --accent-green: #10b981;
    --accent-green-dark: #059669;
    --accent-green-light: #d1fae5;
    
    /* Neutrals */
    --dark-navy: #0d2137;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --light-gray: #f1f5f9;
    --border-gray: #b8c0cc;
    --white: #ffffff;
    
    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 40px;
    --section-padding-mobile: 28px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* =====================================================
   Base Styles
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

h1 { font-size: 3.25rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-green);
}

img {
    max-width: 100%;
    height: auto;
}

sup {
    font-size: 0.5em;
}

/* =====================================================
   Utility Classes
   ===================================================== */
.section-padding {
    padding: var(--section-padding) 0;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.bg-dark-navy {
    background-color: var(--dark-navy);
}

.text-accent-green { color: var(--accent-green); }
.text-primary-blue { color: var(--primary-blue); }
.text-muted { color: var(--text-muted); }

.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* Dropdown hover for desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    .navbar .dropdown-menu {
        border: none;
        box-shadow: var(--shadow-md);
        border-radius: var(--radius-md);
        padding: 10px 0;
    }
    
    .navbar .dropdown-item {
        padding: 8px 20px;
        font-size: 0.95rem;
    }
    
    .navbar .dropdown-item:hover {
        background: var(--light-gray);
        color: var(--primary-blue);
    }
    
    .navbar .dropdown-divider {
        margin: 8px 0;
    }
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-green-dark);
    border-color: var(--accent-green-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* =====================================================
   Top Bar
   ===================================================== */
.top-bar {
    background-color: var(--dark-navy);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-left span,
.top-bar-right a {
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-right a {
    transition: var(--transition-fast);
}

.top-bar-right a:hover {
    color: var(--accent-green);
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 12px;
}

.top-bar i {
    color: var(--accent-green);
}

.top-bar-cta {
    color: var(--accent-green) !important;
    font-weight: 600;
}

.top-bar-cta:hover {
    color: var(--white) !important;
}

/* Top Bar - ensure it's above sticky navbar */
.top-bar {
    position: relative;
    z-index: 1031; /* Higher than Bootstrap's sticky-top (1020) */
}

/* Top Bar User Menu (Logged In) */
.top-bar-user-menu {
    position: relative;
    display: inline-block;
}

.top-bar-user-toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    padding: 0;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-fast);
}

.top-bar-user-toggle:hover {
    color: var(--accent-green);
}

.top-bar-user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.top-bar-user-menu:hover .top-bar-user-dropdown,
.top-bar-user-menu.active .top-bar-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-bar-user-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: var(--white);
    transform: rotate(45deg);
    border-radius: 2px;
}

.top-bar-user-dropdown .dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.top-bar-user-dropdown .dropdown-header strong {
    display: block;
    color: var(--dark-navy);
    font-size: 0.9rem;
}

.top-bar-user-dropdown .dropdown-header small {
    color: #666;
    font-size: 0.8rem;
}

.top-bar-user-dropdown .dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 0;
}

.top-bar-user-dropdown a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: var(--dark-navy);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.top-bar-user-dropdown a:hover {
    background: #f5f5f5;
    color: var(--primary-blue);
}

.top-bar-user-dropdown a.text-danger {
    color: #dc3545;
}

.top-bar-user-dropdown a.text-danger:hover {
    background: #fff5f5;
    color: #dc3545;
}

/* =====================================================
   Navigation
   ===================================================== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
}

.brand-fallback,
.footer-brand-fallback {
    display: none; /* Hidden by default, shown via JS if logo fails */
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-navy);
}

.brand-icon {
    color: var(--accent-green);
    font-size: 1.75rem;
}

.brand-text {
    color: var(--dark-navy);
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 10px 16px;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--accent-green);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 12px 0;
    margin-top: 10px;
}

.dropdown-item {
    font-family: var(--font-body);
    font-weight: 500;
    padding: 10px 20px;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-blue);
}

/* Features Mega Menu */
.mega-menu {
    padding: 0;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.mega-menu-header {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-gray);
}

.mega-menu-header .mega-menu-all {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-blue);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.mega-menu-header .mega-menu-all:hover {
    color: var(--secondary-teal);
}

.mega-menu-body {
    padding: 20px;
}

.mega-menu-group {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-teal);
    margin-bottom: 6px;
    padding: 0;
    display: flex;
    align-items: center;
}

.mega-menu-group i {
    font-size: 0.8rem;
}

.mega-menu-col a {
    display: block;
    padding: 5px 0 5px 22px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
    border-radius: var(--radius-sm);
}

.mega-menu-col a:hover {
    color: var(--primary-blue);
    background: var(--light-gray);
    padding-left: 26px;
}

/* Desktop: 3-column layout */
@media (min-width: 992px) {
    .mega-menu {
        width: 620px;
    }

    .mega-menu-body {
        display: flex;
        gap: 24px;
    }

    .mega-menu-col {
        flex: 1;
        min-width: 0;
    }
}

/* Mobile: single column, collapsible */
@media (max-width: 991.98px) {
    .mega-menu {
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .mega-menu-header {
        background: transparent;
        border-bottom: none;
        padding: 8px 0;
    }

    .mega-menu-body {
        padding: 0;
    }

    .mega-menu-col {
        margin-bottom: 8px;
    }

    .mega-menu-col a {
        padding: 6px 0 6px 28px;
    }

    .mega-menu-col a:hover {
        padding-left: 32px;
    }
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-cta {
    padding: 12px 24px !important;
    font-size: 0.9rem !important;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(13, 33, 55, 0.92) 0%, rgba(26, 75, 140, 0.88) 100%), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: block;
    width: fit-content;
    margin: 0 auto 20px auto;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-sm);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--accent-green);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* 2x2 Grid layout for 4 hero features */
.hero-features.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-feature i {
    color: var(--accent-green);
    font-size: 1.25rem;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-mockup {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: var(--shadow-xl);
}

.mockup-placeholder {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--border-gray) 100%);
    border-radius: var(--radius-md);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    flex-direction: column;
    gap: 10px;
}

.mockup-placeholder i {
    font-size: 3rem;
    color: var(--border-gray);
}

/* =====================================================
   Page Header
   ===================================================== */
.page-header {
    background: linear-gradient(135deg, rgba(26, 75, 140, 0.92) 0%, rgba(13, 33, 55, 0.95) 100%), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb — default (inside dark hero) */
.breadcrumb-nav {
    margin-top: 25px;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    justify-content: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--accent-green);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Breadcrumb Bar — light bar above hero */
.breadcrumb-bar {
    background: var(--light-gray, #f1f5f9);
    border-bottom: 1px solid var(--border-gray, #b8c0cc);
    padding: 0.6rem 0;
}

.breadcrumb-bar .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    font-size: 0.85rem;
    justify-content: flex-start;
}

.breadcrumb-bar .breadcrumb-item a {
    color: var(--primary-blue, #1a4b8c);
    text-decoration: none;
}

.breadcrumb-bar .breadcrumb-item a:hover {
    color: var(--primary-blue-dark, #143a6d);
    text-decoration: underline;
}

.breadcrumb-bar .breadcrumb-item.active {
    color: var(--text-muted, #64748b);
}

.breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted, #64748b);
}

/* =====================================================
   Feature Cards
   ===================================================== */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--border-gray);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

a.feature-card {
    display: block;
}

.feature-card-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    display: inline-block;
    padding-top: 10px;
}

.feature-card-link i {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-card-link {
    color: var(--accent-green);
}

.feature-card:hover .feature-card-link i {
    transform: translateX(5px);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    width: 100%;
}

.feature-card-header .feature-icon {
    margin-bottom: 0;
}

.feature-card-header h4 {
    margin-bottom: 0;
    flex: 1;
}

/* Feature card with icon + body side by side (icon-centered & icon-inline on feature pages) */
.feature-card.icon-centered,
.feature-card.icon-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;
}

.feature-card.icon-centered > .feature-icon,
.feature-card.icon-inline > .feature-icon {
    align-self: flex-start;
    margin-top: 4px;
}

.feature-card.icon-centered > .feature-module-card-body {
    flex: 1;
}

/* Force h4, p, ul to wrap below icon+title row */
.feature-card.icon-centered > h4 {
    flex: 1;
    align-self: center;
    margin-bottom: 0;
}

.feature-card.icon-centered > p,
.feature-card.icon-centered > ul,
.feature-card.icon-inline > p,
.feature-card.icon-inline > ul {
    width: 100%;
}

.feature-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.feature-card.icon-centered .feature-icon,
.feature-card.icon-inline .feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-bottom: 0;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    transform: scale(1.05);
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.feature-card.icon-centered .feature-icon i,
.feature-card.icon-inline .feature-icon i {
    font-size: 1.4rem;
}

.feature-card h4 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.feature-card ul li {
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    list-style: none;
}

.feature-card ul li i {
    color: var(--accent-green);
    margin-top: 4px;
    flex-shrink: 0;
}

/* =====================================================
   Pricing Section
   ===================================================== */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.pricing-tab:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.pricing-tab.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
}

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 8px 6px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-gray);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: #f59e0b;
    position: relative;
    background: linear-gradient(180deg, #fffbeb 0%, #fff 40%);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
}

/* Ribbon handled in pricing.php inline styles */

.pricing-card-header {
    text-align: center;
    padding-bottom: 4px;
    margin-bottom: 4px;
}

.pricing-card-header h4 {
    margin-bottom: 2px;
}

.pricing-card-header .description {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-bottom: 0;
    min-height: 3em;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-navy);
}

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

.pricing-card-body {
    flex: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 6px;
}

.pricing-features li {
    padding: 2px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: var(--text-dark);
    font-size: 0.82rem;
    list-style: none;
}

.pricing-features li i {
    color: var(--accent-green);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.machines-total {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

.pricing-card-footer {
    margin-top: auto;
}

.pricing-card-footer .btn {
    width: 100%;
}

.pricing-card-footer .learn-more-link {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.pricing-card-footer .learn-more-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Add-ons Section */
.addons-box {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 35px;
    margin-top: 50px;
}

.addon-item {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

.addon-item:last-child {
    margin-bottom: 0;
}

.addon-name {
    font-weight: 600;
    color: var(--dark-navy);
}

.addon-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-green);
    margin-top: 5px;
}

.addon-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.4;
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-gray);
}

.accordion-item {
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md) !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-navy);
    padding: 20px 25px;
    background: var(--white);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-blue);
    background: var(--light-gray);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px 25px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* FAQ Tabs */
.faq-tabs-wrapper {
    margin-bottom: 40px;
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    border: none;
}

.faq-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    background: var(--light-gray);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.faq-tabs .nav-link i {
    font-size: 1.1rem;
}

.faq-tabs .nav-link:hover {
    background: var(--white);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.faq-tabs .nav-link.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.faq-tab-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .faq-tabs {
        flex-direction: column;
    }
    
    .faq-tabs .nav-link {
        justify-content: center;
        width: 100%;
    }
    
    .faq-tab-content {
        padding: 20px 15px;
    }
}

/* =====================================================
   Contact Section
   ===================================================== */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px;
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    margin-bottom: 10px;
}

.contact-form-card > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control,
.form-select {
    padding: 14px 18px;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 75, 140, 0.1);
}

textarea.form-control {
    min-height: 150px;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
}

/* reCAPTCHA Button */
.recaptcha-wrapper {
    margin: 20px 0;
}

.recaptcha-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--light-gray);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 500;
    color: var(--text-dark);
}

.recaptcha-btn:hover {
    border-color: var(--primary-blue);
    background: var(--white);
}

.recaptcha-btn.verified {
    background: var(--accent-green-light);
    border-color: var(--accent-green);
    color: var(--accent-green-dark);
}

.recaptcha-btn i {
    font-size: 1.25rem;
}

.submit-wrapper {
    display: none;
}

.submit-wrapper.visible {
    display: block;
    margin-top: 20px;
}

/* Protected Contact Info */
.protected-contact {
    margin-top: 20px;
}

.reveal-contact-btn {
    transition: var(--transition-fast);
}

.reveal-contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hidden contact info - support both class names */
.contact-hidden,
.contact-info-hidden {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
}

.contact-hidden.visible,
.contact-info-hidden.visible {
    display: block;
}

.contact-hidden a,
.contact-info-hidden a {
    color: var(--white);
}

.contact-sidebar h4 {
    margin-bottom: 25px;
    color: var(--dark-navy);
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    border: 1px solid var(--border-gray);
}

.contact-info-card h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--dark-navy);
    font-size: 1rem;
}

.contact-info-card h5 i {
    color: var(--accent-green);
}

/* Alerts */
.alert {
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 25px;
    border: none;
}

.alert-success {
    background-color: var(--accent-green-light);
    color: #065f46;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: #991b1b;
}

.alert-info {
    background-color: rgba(59, 130, 246, 0.1);
    color: #1e40af;
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: #92400e;
}

/* =====================================================
   How It Works Section
   ===================================================== */
.how-it-works {
    background: var(--white);
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    padding: 40px 25px 35px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
}

.step-card::before {
    content: attr(data-step);
    position: absolute;
    top: -10px;
    right: -5px;
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-blue);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-green);
}

.step-card:hover::before {
    opacity: 0.12;
    color: var(--accent-green);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.step-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark-navy);
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* =====================================================
   Why AccuArk Section
   ===================================================== */
.why-accuark {
    background: var(--light-gray);
}

.comparison-box {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px;
    height: 100%;
    border: 2px solid var(--border-gray);
}

.comparison-box.others {
    border-color: #e5e5e5;
}

.comparison-box.accuark {
    border-color: var(--accent-green);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.comparison-box h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.software-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.software-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.software-item i {
    color: #999;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* AccuArk side - green styling */
.software-item.accuark-item {
    background: rgba(16, 185, 129, 0.1);
    color: var(--dark-navy);
}

.software-item.accuark-item i {
    color: var(--accent-green);
    font-weight: bold;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(13, 148, 136, 0.1) 100%);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--dark-navy);
}

.highlight-text i {
    color: var(--accent-green);
}

.multilocation-highlight {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    color: var(--white);
}

.multilocation-highlight h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.multilocation-highlight h3 i {
    color: var(--accent-green);
}

.multilocation-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}

.multilocation-highlight strong {
    color: var(--accent-green);
}

.sync-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.sync-icon-main {
    width: 70px;
    height: 70px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sync-icon-main i {
    font-size: 2rem;
    color: var(--white);
}

.sync-arrows {
    display: flex;
    gap: 30px;
    color: var(--accent-green);
    font-size: 1.5rem;
}

.sync-locations {
    display: flex;
    gap: 20px;
}

.sync-locations span {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sync-locations i {
    font-size: 1.25rem;
    color: var(--white);
}

/* =====================================================
   Cookie Consent Banner
   ===================================================== */
.cookie-consent {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--dark-navy) !important;
    color: var(--white);
    padding: 20px;
    z-index: 9999 !important;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}

.cookie-consent.show {
    display: block !important;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-consent-text a {
    color: var(--accent-green);
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent .btn-accept {
    background: var(--accent-green);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cookie-consent .btn-accept:hover {
    background: #0ea572;
}

.cookie-consent .btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cookie-consent .btn-decline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

@media (max-width: 767px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .software-list {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   404 Error Page
   ===================================================== */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: var(--light-gray);
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.error-icon i {
    font-size: 3rem;
    color: var(--accent-green);
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 10px;
}

.error-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-navy);
}

.error-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.error-links {
    padding-top: 30px;
    border-top: 1px solid var(--border-gray);
}

.error-links p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.error-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-links a {
    color: var(--primary-blue);
    font-weight: 500;
}

.error-links a:hover {
    color: var(--accent-green);
}

/* =====================================================
   Trust Badges Section
   ===================================================== */
.trust-badges {
    background: var(--white);
    padding: 50px 0;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.trust-badge-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-badge-icon i {
    font-size: 1.5rem;
    color: var(--accent-green);
}

.trust-badge-text {
    text-align: left;
    white-space: nowrap;
}

.trust-badge-text strong {
    display: block;
    color: var(--dark-navy);
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-badge-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .trust-badges-row {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .trust-badges-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 280px;
    }
}

/* =====================================================
   Sticky Mobile CTA
   ===================================================== */
.sticky-mobile-cta {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--white) !important;
    padding: 12px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000 !important;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-mobile-cta .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
}

@media (max-width: 991px) {
    /* Add padding to body to account for sticky CTA */
    body.has-sticky-cta {
        padding-bottom: 70px;
    }
}

/* =====================================================
   Industry Pages
   ===================================================== */
.industry-hero {
    background: linear-gradient(135deg, rgba(13, 33, 55, 0.92) 0%, rgba(26, 75, 140, 0.88) 100%), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    padding: 100px 0 80px;
    position: relative;
}

.industry-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
}

.industry-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.industry-hero-content.text-center p {
    max-width: 700px;
}

.industry-hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.industry-hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    max-width: 600px;
}

.use-case-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
    height: 100%;
    transition: var(--transition-normal);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.use-case-card h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.use-case-card h4 i {
    color: var(--accent-green);
    font-size: 1.5rem;
}

.use-case-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* =====================================================
   Industries Landing Page
   ===================================================== */
.challenge-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
    height: 100%;
    transition: var(--transition-normal);
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-green);
}

.challenge-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: var(--radius-md);
}

.challenge-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.challenge-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--dark-navy);
}

.challenge-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Industry Cards */
.industry-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

a.industry-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.industry-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-gray);
    height: 100%;
    transition: var(--transition-normal);
    position: relative;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.industry-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
    border-radius: var(--radius-md);
}

.industry-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.industry-card h4 {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark-navy);
}

.industry-challenges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
}

.industry-challenges span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--accent-green-dark);
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.industry-challenges span i {
    font-size: 0.75rem;
}

.industry-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 15px;
}

.industry-link {
    display: block;
    text-align: center;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.industry-card:hover .industry-link {
    color: var(--accent-green);
}

.industry-link i {
    transition: var(--transition-fast);
}

.industry-card:hover .industry-link i {
    transform: translateX(5px);
}

/* Custom List */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.custom-list li i {
    color: var(--accent-green);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Contact CTA Box */
.contact-cta-box {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8f4f8 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-gray);
}

.contact-cta-box h3 {
    margin-bottom: 15px;
    color: var(--dark-navy);
}

.contact-cta-box p {
    color: var(--text-muted);
}

/* =====================================================
   Screenshot Gallery & Video Section
   ===================================================== */
.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-placeholder {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.video-placeholder:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
}

.video-placeholder-content {
    text-align: center;
    color: var(--white);
}

.video-placeholder-content i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.video-placeholder-content h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.video-placeholder-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* YouTube Embed (when video is ready) */
.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

/* Screenshot Gallery */
.screenshot-gallery {
    margin-top: 20px;
}

.screenshot-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
    cursor: pointer;
    transition: var(--transition-normal);
}

.screenshot-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.screenshot-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
}

.screenshot-placeholder i {
    font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.5;
}

.screenshot-placeholder span {
    font-size: 0.875rem;
    font-weight: 600;
}

.screenshot-caption {
    padding: 20px;
}

.screenshot-caption h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark-navy);
}

.screenshot-caption p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Screenshot Modal */
.screenshot-modal-placeholder {
    background: var(--light-gray);
    padding: 100px 50px;
    border-radius: var(--radius-md);
    color: var(--text-muted);
}

.screenshot-modal-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* =====================================================
   Affiliates Page
   ===================================================== */
.program-status-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-gray);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.status-badge i {
    font-size: 1.1rem;
}

.program-status-box h2 {
    margin-bottom: 20px;
}

.program-status-box .lead {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.affiliate-cta-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
}

.affiliate-cta-box h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.affiliate-cta-box p {
    color: rgba(255, 255, 255, 0.9);
}

.affiliate-cta-box .small {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* =====================================================
   Compare Section (Features Page)
   ===================================================== */
.compare-section {
    background: var(--light-gray);
}

.compare-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-gray);
    transition: var(--transition-normal);
}

.compare-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.compare-card.typical {
    border-color: #e5e7eb;
}

.compare-card.accuark {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.compare-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-gray);
}

.compare-header i {
    font-size: 1.75rem;
}

.compare-card.typical .compare-header i {
    color: #9ca3af;
}

.compare-card.accuark .compare-header i {
    color: var(--accent-green);
}

.compare-header h4 {
    margin: 0;
    font-size: 1.25rem;
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.compare-list li i {
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.compare-card.typical .compare-list li i {
    color: #d1d5db;
}

.compare-card.accuark .compare-list li i {
    color: var(--accent-green);
}

/* =====================================================
   Pricing FAQ Accordion
   ===================================================== */
.pricing-faq .accordion-item {
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md) !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.pricing-faq .accordion-button {
    font-weight: 600;
    color: var(--dark-navy);
    background: var(--white);
    padding: 18px 25px;
}

.pricing-faq .accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: none;
}

.pricing-faq .accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-gray);
}

.pricing-faq .accordion-button::after {
    background-size: 1rem;
}

.pricing-faq .accordion-body {
    padding: 0 25px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =====================================================
   Testimonials Section
   ===================================================== */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    border: 1px solid var(--border-gray);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 1rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    font-size: 1.75rem;
    color: var(--white);
}

.testimonial-info strong {
    display: block;
    color: var(--dark-navy);
    font-size: 1rem;
}

.testimonial-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.testimonial-info .testimonial-location {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.testimonial-result {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    padding: 10px 15px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.testimonial-result i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.testimonial-result span {
    color: var(--accent-green-dark);
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* =====================================================
   About Page
   ===================================================== */
.about-stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
    height: 100%;
}

.about-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
}

.about-card.accuark {
    border-color: var(--accent-green);
    border-width: 2px;
}

.about-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.about-card-icon i {
    font-size: 1.75rem;
    color: var(--primary-blue);
}

.about-card.accuark .about-card-icon {
    background: rgba(16, 185, 129, 0.1);
}

.about-card.accuark .about-card-icon i {
    color: var(--accent-green);
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-muted);
}

.about-list li i {
    color: #dc3545;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.about-list.success li i {
    color: var(--accent-green);
}

.values-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
}

.values-box h4 {
    color: var(--white);
    margin-bottom: 25px;
}

.values-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-box ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.values-box ul li:last-child {
    border-bottom: none;
}

.values-box ul li strong {
    color: var(--accent-green);
}

/* =====================================================
   Support Page
   ===================================================== */
.support-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
    transition: var(--transition-normal);
    height: 100%;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.support-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: var(--radius-md);
}

.support-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.support-card h4 {
    margin-bottom: 12px;
}

.support-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* =====================================================
   Legal Pages
   ===================================================== */
.legal-content {
    padding: var(--section-padding) 0;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-gray);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background-color: var(--dark-navy);
}

.footer-main {
    padding: 70px 0 50px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 10px;
}

.footer-brand-fallback {
    font-size: 1.5rem;
    color: var(--white);
}

.footer-brand-fallback i {
    color: var(--accent-green);
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-title {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-green);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-green);
}

/* =====================================================
   Tour Preview Box (Features Page)
   ===================================================== */
.tour-preview-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    color: var(--white);
    text-align: center;
}

.tour-preview-box i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.tour-preview-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* =====================================================
   Case Studies Page
   ===================================================== */
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.case-study-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-gray);
    text-decoration: none;
    transition: var(--transition-normal);
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
    text-decoration: none;
}

.case-study-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.case-study-icon i {
    font-size: 1.75rem;
    color: var(--primary-blue);
}

.case-study-card h4 {
    color: var(--dark-navy);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.case-study-challenge {
    margin-bottom: 15px;
}

.challenge-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.case-study-challenge p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.case-study-result {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.1);
    padding: 10px 15px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.case-study-result i {
    color: var(--accent-green);
    font-size: 1.1rem;
}

.case-study-result span {
    color: var(--accent-green-dark);
    font-weight: 600;
    font-size: 0.875rem;
}

.case-study-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.case-study-link i {
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-link i {
    transform: translateX(5px);
}

/* =====================================================
   Module Icon Cards (Homepage 17-Module Grid)
   ===================================================== */
.module-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gray);
    background: var(--white);
    text-decoration: none;
    color: var(--dark-navy);
    transition: var(--transition-normal);
    height: 100%;
    gap: 10px;
}

.module-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-green);
    color: var(--dark-navy);
}

.module-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.module-icon-card:hover .module-icon-circle {
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-teal));
    transform: scale(1.05);
}

.module-icon-card span {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

/* =====================================================
   Feature Module Cards (Features Index Page)
   ===================================================== */
.feature-module-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-gray);
    text-decoration: none;
    transition: var(--transition-normal);
}

.feature-module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
    text-decoration: none;
}

.feature-module-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.feature-module-card:hover .feature-module-icon {
    background: linear-gradient(135deg, var(--secondary-teal), var(--accent-green));
}

.feature-module-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.feature-module-card-body {
    flex: 1;
    min-width: 0;
}

.feature-module-card h4 {
    color: var(--dark-navy);
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.feature-module-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.feature-module-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-module-link i {
    transition: transform 0.3s ease;
}

.feature-module-card:hover .feature-module-link {
    color: var(--accent-green);
}

.feature-module-card:hover .feature-module-link i {
    transform: translateX(5px);
}

/* =====================================================
   Feature Highlight Cards (Feature Page Content Sections)
   ===================================================== */
.feature-highlight-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: left;
    border: 1px solid var(--border-gray);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 14px;
}

.feature-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-highlight-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.feature-highlight-card:hover .feature-highlight-icon {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dark));
    transform: scale(1.05);
}

.feature-highlight-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.feature-highlight-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-dark);
    flex: 1;
}

.feature-highlight-card.has-description h5 {
    margin-bottom: 0;
}

.feature-highlight-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
    width: 100%;
    padding-left: 56px;
}

/* When using wrapper div (feature-highlight-header), let it handle inline layout */
.feature-highlight-header {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.feature-highlight-header h5 {
    flex: 1;
}

.feature-highlight-header + p {
    padding-left: 56px;
}

.bg-light-gray .feature-highlight-card {
    box-shadow: var(--shadow-sm);
    border-color: transparent;
}

.bg-light-gray .feature-highlight-card:hover {
    box-shadow: var(--shadow-lg);
}

.divider-text {
    text-align: center;
    margin: 15px 0;
    position: relative;
}

.divider-text span {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* =====================================================
   Product Tour Page
   ===================================================== */
.video-tour-wrapper {
    text-align: center;
}

.video-tour-header {
    margin-bottom: 30px;
}

.video-tour-header h2 {
    margin-bottom: 10px;
}

.video-tour-header p {
    color: var(--text-muted);
}

.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--dark-navy);
}

.video-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
}

.video-placeholder-content {
    text-align: center;
    color: var(--white);
}

.video-placeholder-content i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.video-placeholder-content h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.video-placeholder-content p {
    color: rgba(255, 255, 255, 0.7);
}

.video-cta {
    margin-top: 30px;
}

.video-cta p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Screenshot Gallery Tabs */
.screenshot-tabs-wrapper {
    margin-bottom: 30px;
    text-align: center;
}

.screenshot-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.screenshot-tabs .nav-link {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--border-gray);
    transition: var(--transition-normal);
}

.screenshot-tabs .nav-link:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.screenshot-tabs .nav-link.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* Screenshot Cards */
.screenshot-card {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--white);
    transition: var(--transition-normal);
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.screenshot-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.screenshot-card:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay i {
    font-size: 3rem;
    color: var(--white);
}

p.screenshot-caption {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 15px;
    text-align: center;
}

/* Video Cards */
.video-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
    transition: var(--transition-normal);
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.video-card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
}

.video-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.6);
}

.video-card-content {
    padding: 20px;
}

.video-card-content h5 {
    margin-bottom: 8px;
    color: var(--dark-navy);
}

.video-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.video-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* Footer Newsletter - Above Footer */
.footer-newsletter {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-teal) 100%);
    padding: 50px 0;
}

.footer-newsletter h5 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.newsletter-form .input-group {
    max-width: 500px;
}

.newsletter-form .form-control {
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: 0.95rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .btn {
    padding: 14px 30px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-weight: 600;
    background: var(--accent-green);
    border-color: var(--accent-green);
}

.newsletter-form .btn:hover {
    background: var(--accent-green-dark);
    border-color: var(--accent-green-dark);
}

.newsletter-form small {
    color: rgba(255, 255, 255, 0.6) !important;
}

@media (max-width: 991px) {
    .newsletter-form .input-group {
        max-width: 100%;
    }
    
    .footer-newsletter {
        text-align: center;
    }
    
    .newsletter-form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* =====================================================
   Back to Top Button
   ===================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-green);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-blue);
    transform: translateY(-5px);
}

/* =====================================================
   Stats Section
   ===================================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-navy) 100%);
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 1199px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: var(--section-padding-mobile) 0;
    }
    
    .top-bar-left {
        display: none;
    }
    
    .top-bar-content {
        justify-content: center;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .navbar-nav {
        padding: 20px 0;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0;
    }
    
    .navbar-nav .nav-link::after {
        left: 0;
        right: auto;
        width: 0;
    }
    
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 30px;
    }
    
    .nav-right {
        padding-top: 15px;
        border-top: 1px solid var(--border-gray);
        margin-top: 15px;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2.25rem;
    }
    
    .hero-image {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .hero-features.hero-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-price {
        font-size: 2.25rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .industry-hero-content h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 575px) {
    .pricing-tabs {
        flex-direction: column;
    }
    
    .pricing-tab {
        width: 100%;
        text-align: center;
    }
    
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
