/* Solutions Pages Styles for AxiDots */

/* Import shared variables from landing.css */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-gray-50: #f9fafb;
    --bg-gray-100: #f3f4f6;
    --bg-gray-900: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 1000;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.5rem;
    height: 1.125rem;
}

.hamburger-lines span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger-lines span:nth-child(1) {
    transform-origin: 0% 0%;
}

.hamburger-lines span:nth-child(2) {
    transform-origin: 0% 50%;
}

.hamburger-lines span:nth-child(3) {
    transform-origin: 0% 100%;
}

/* Hamburger animation when menu is open */
.mobile-menu-open .hamburger-lines span:nth-child(1) {
    transform: rotate(45deg) translate(0px, 0px);
}

.mobile-menu-open .hamburger-lines span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-open .hamburger-lines span:nth-child(3) {
    transform: rotate(-45deg) translate(0px, 0px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #2d3748;
    z-index: 99999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
    position: relative;
}

/* Profile Section */
.mobile-profile-section {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #4a5568;
    background: rgba(45, 55, 72, 0.95);
}

.profile-avatar {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #6366f1, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.profile-info p {
    font-size: 0.875rem;
    color: #cbd5e0;
    margin: 0;
    opacity: 0.9;
}

/* Navigation List */
.mobile-nav-list {
    flex: 1;
    padding: 2rem 0 1rem 0;
    background: #2d3748;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    text-decoration: none;
    color: #f7fafc;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    min-height: 3.5rem;
}

.mobile-nav-item:hover,
.mobile-nav-item:focus {
    background: #4a5568;
    border-left-color: #6366f1;
    color: #ffffff;
    text-decoration: none;
    transform: translateX(2px);
}

.mobile-nav-item i {
    font-size: 1.1rem;
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    text-align: center;
    color: #cbd5e0;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(203, 213, 224, 0.08);
    line-height: 1;
}

.mobile-nav-item:hover i,
.mobile-nav-item:focus i {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.15);
    transform: scale(1.05);
}

.mobile-nav-item span {
    color: inherit;
    font-weight: inherit;
    flex: 1;
    line-height: 1.4;
    margin-left: 0.25rem;
}

/* Bottom Section */
.mobile-nav-bottom {
    padding: 1.5rem;
    border-top: 1px solid #4a5568;
    background: rgba(45, 55, 72, 0.95);
}

.mobile-language {
    margin-bottom: 1rem;
}

.mobile-language-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #4a5568;
    border: 1px solid #718096;
    border-radius: 0.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.mobile-language-btn:hover,
.mobile-language-btn:focus {
    background: #718096;
    border-color: #6366f1;
    color: #ffffff;
}

.mobile-language-btn span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
}

.mobile-language-btn i {
    color: #cbd5e0;
    width: 1rem;
    min-width: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-trial-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1rem;
    background: #6366f1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid #6366f1;
}

.mobile-trial-btn:hover,
.mobile-trial-btn:focus {
    background: #4f46e5;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.mobile-trial-btn i {
    color: #ffffff;
    width: 1rem;
    min-width: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-trial-btn span {
    color: #ffffff;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile menu open state */
body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu {
    left: 0;
}

body.mobile-menu-open .mobile-overlay {
    opacity: 1;
    visibility: visible;
}

/* Mobile Text Enhancements for Better Visibility */
.mobile-menu * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.mobile-menu a,
.mobile-menu button {
    -webkit-tap-highlight-color: transparent;
}

/* Ensure all text elements have proper contrast */
.mobile-nav-item,
.mobile-nav-item span,
.profile-info h3,
.profile-info p,
.mobile-language-btn,
.mobile-trial-btn {
    font-weight: 500;
    letter-spacing: 0.025em;
    text-shadow: none;
    opacity: 1;
    filter: none;
}

/* Focus states for accessibility */
.mobile-nav-item:focus,
.mobile-language-btn:focus,
.mobile-trial-btn:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-gray-50) 100%);
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-1px);
}

.breadcrumb-item.active {
    color: var(--text-primary);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    margin: 0 0.5rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Solution Hero Section */
.solution-hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 40%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    margin-top: -1px; /* Seamless connection with breadcrumb */
}

.solution-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 30%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.03;
    transform: skewX(-12deg) scale(1.2);
    z-index: 1;
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: skewX(-12deg) scale(1.2) translateY(0); }
    50% { transform: skewX(-12deg) scale(1.2) translateY(-10px); }
}

.solution-hero .container {
    position: relative;
    z-index: 2;
}

.solution-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.solution-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.solution-hero .hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.solution-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, #4f46e5 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.solution-hero .hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 400;
}

.solution-hero .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.solution-hero .stat {
    text-align: center;
}

.solution-hero .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.solution-hero .stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.solution-hero .hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.solution-hero .btn-primary,
.solution-hero .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.solution-hero .btn-primary {
    background: var(--primary-color);
    color: white;
}

.solution-hero .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.solution-hero .btn-secondary {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.solution-hero .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.solution-hero .feature-preview {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.solution-hero .feature-preview img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.solution-hero .preview-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
}

.solution-hero .monitoring-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.solution-hero .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Deep Dive */
.features-deep-dive {
    padding: 5rem 0;
    background: var(--bg-gray-50);
}

.feature-tabs {
    margin-top: 3rem;
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-content {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.tab-pane {
    display: none;
    padding: 3rem;
}

.tab-pane.active {
    display: block;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.feature-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0.75rem;
}

/* Use Cases Section */
.use-cases-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.use-case-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-color);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    position: relative;
}

.use-case-icon i {
    font-size: 1.5rem;
    color: white;
    line-height: 1;
    text-align: center;
    display: block;
    width: 100%;
}

.use-case-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.use-case-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
}

.use-case-card li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.use-case-card li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
    background: var(--bg-gray-50);
}

.comparison-table {
    margin-top: 3rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-gray-50);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table .highlight {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table i.fa-check {
    color: var(--secondary-color);
}

.comparison-table i.fa-times {
    color: #ef4444;
}

/* Solution CTA */
.solution-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.solution-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.solution-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.solution-cta .cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.solution-cta .cta-stat {
    text-align: center;
}

.solution-cta .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.solution-cta .stat-text {
    font-size: 0.875rem;
    opacity: 0.8;
}

.solution-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.solution-cta .btn-primary,
.solution-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.solution-cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.solution-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.solution-cta .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.solution-cta .btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Related Solutions */
.related-solutions {
    padding: 5rem 0;
    background: var(--bg-white);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.related-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    color: inherit;
}

.related-icon {
    width: 3rem;
    height: 3rem;
    background: var(--bg-gray-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.related-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.related-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.related-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background: var(--bg-gray-900);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand i {
    color: var(--primary-color);
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-cta-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.footer-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-guarantee {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solution-hero .hero-content,
    .feature-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .solution-hero h1 {
        font-size: clamp(2.25rem, 4.5vw, 2.75rem);
    }
    
    .solution-hero .hero-content {
        min-height: auto;
    }
    
    .breadcrumb-section {
        padding: 1.25rem 0;
    }
    
    .tab-navigation {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solution-hero {
        padding: 3rem 0 3rem;
    }
    
    .solution-hero::before {
        display: none; /* Hide decorative element on mobile for cleaner look */
    }
    
    .solution-hero h1 {
        font-size: clamp(1.875rem, 6vw, 2.25rem);
        background: var(--text-primary);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: var(--text-primary);
    }
    
    .solution-hero .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
    
    .solution-hero .hero-badge {
        margin-bottom: 1.5rem;
        font-size: 0.8rem;
        padding: 0.6rem 1.25rem;
    }
    
    .solution-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .solution-hero .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .breadcrumb-section {
        padding: 1rem 0;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .benefits-grid,
    .use-cases-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-navigation {
        grid-template-columns: 1fr;
    }
    
    .tab-pane {
        padding: 2rem;
    }
    
    .solution-cta .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .solution-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .solution-hero h1 {
        font-size: 1.75rem;
    }
    
    .solution-hero .hero-description {
        font-size: 1rem;
    }
    
    .benefit-card,
    .use-case-card,
    .related-card {
        padding: 1.5rem;
    }
    
    .tab-pane {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/*
Mobile Menu JavaScript - Add this script to your HTML pages:

<script>
document.addEventListener('DOMContentLoaded', function() {
    const mobileToggle = document.querySelector('.mobile-menu-toggle');
    const mobileMenu = document.querySelector('.mobile-menu');
    const mobileOverlay = document.querySelector('.mobile-overlay');
    const mobileClose = document.querySelector('.mobile-menu-close');
    
    function openMobileMenu() {
        document.body.classList.add('mobile-menu-open');
        mobileMenu.classList.add('active');
        mobileOverlay.classList.add('active');
    }
    
    function closeMobileMenu() {
        document.body.classList.remove('mobile-menu-open');
        mobileMenu.classList.remove('active');
        mobileOverlay.classList.remove('active');
    }
    
    if (mobileToggle) {
        mobileToggle.addEventListener('click', openMobileMenu);
    }
    
    if (mobileClose) {
        mobileClose.addEventListener('click', closeMobileMenu);
    }
    
    if (mobileOverlay) {
        mobileOverlay.addEventListener('click', closeMobileMenu);
    }
    
    // Close menu on escape key
    document.addEventListener('keydown', function(e) {
        if (e.key === 'Escape' && document.body.classList.contains('mobile-menu-open')) {
            closeMobileMenu();
        }
    });
});
</script>
*/
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.125rem;
    }
    
    /* Mobile Menu Responsive Styles */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Hide regular navigation on mobile */
    .nav-menu {
        display: none !important;
    }
    
    .nav-actions {
        display: none !important;
    }
    
    /* Language selector in navbar */
    .language-selector {
        display: none !important;
    }
}

@media (max-width: 992px) {
    /* Show mobile menu on tablets too */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .nav-actions {
        display: none !important;
    }
}
