/* ===== ROOT VARIABLES ===== */
:root {
    --color-primary: #EBB61F;
    --color-primary-dark: #d4a01a;
    --color-primary-light: #f2c847;
    --color-secondary: #2d2d2d;
    --color-accent: #2d2d2d;
    --color-background: #ffffff;
    --color-background-alt: #f8f9fa;
    --color-text-dark: #2d2d2d;
    --color-text-light: #ffffff;
    --color-border: #e5e7eb;
    --color-shadow: rgba(0, 0, 0, 0.1);
    --color-hover: rgba(235, 182, 31, 0.1);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-background);
    overflow-x: hidden;
    transition: all 0.3s ease;
}

/* ===== DARK THEME SUPPORT ===== */
[data-theme="dark"] {
    --color-background: #1a1a1a;
    --color-background-alt: #2d2d2d;
    --color-text-dark: #ffffff;
    --color-text-light: #ffffff;
    --color-secondary: #404040;
    --color-border: #444444;
    --color-shadow: rgba(255, 255, 255, 0.1);
    --color-hover: rgba(235, 182, 31, 0.2);
}

/* Legacy support for dark-mode class */
body.dark-mode {
    --color-background: #1a1a1a;
    --color-background-alt: #2d2d2d;
    --color-text-dark: #ffffff;
    --color-text-light: #ffffff;
    --color-secondary: #404040;
    --color-border: #444444;
    --color-shadow: rgba(255, 255, 255, 0.1);
    --color-hover: rgba(235, 182, 31, 0.2);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== PAGE SPACING (Prevent header overlap on all pages except home) ===== */
body:not(.home-page) main {
    margin-top: 120px !important;
    padding-top: 2rem;
}

/* Special handling for pages with different content structure */
body:not(.home-page) .content-section:first-child,
body:not(.home-page) .contact-hero:first-child,
body:not(.home-page) .about-hero:first-child,
body:not(.home-page) .pricing-hero:first-child,
body:not(.home-page) .resources-hero:first-child,
body:not(.home-page) .legal-page:first-child {
    padding-top: 3rem;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    body:not(.home-page) main {
        margin-top: 100px !important;
        padding-top: 1.5rem;
    }
    
    body:not(.home-page) .content-section:first-child,
    body:not(.home-page) .contact-hero:first-child,
    body:not(.home-page) .about-hero:first-child,
    body:not(.home-page) .pricing-hero:first-child,
    body:not(.home-page) .resources-hero:first-child,
    body:not(.home-page) .legal-page:first-child {
        padding-top: 2rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1;
    min-height: 44px;
}

.btn:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: 0 2px 8px rgba(235, 182, 31, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(235, 182, 31, 0.4);
}

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

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-text-light);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: var(--color-primary);
    background: linear-gradient(120deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-safe {
    color: #ffffff !important;
    font-weight: 700 !important;
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    -webkit-text-fill-color: #ffffff !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-shadow: none !important;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--color-primary-light);
    border-top: 4px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== HEADER STYLES ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Dark mode header */
body.dark-mode .header {
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

/* Dark mode navigation links */
body.dark-mode .nav-link {
    color: var(--color-text-light);
}

/* Dark mode dropdown menus */
body.dark-mode .dropdown-menu {
    background: var(--color-background);
    border: 1px solid var(--color-border);
}

body.dark-mode .dropdown-menu a {
    color: var(--color-text-light);
}

body.dark-mode .dropdown-menu a:hover {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
}

/* Dark mode mobile menu toggle */
body.dark-mode .mobile-menu-toggle span {
    background: var(--color-text-light);
}

/* Dark mode footer styles */
body.dark-mode .footer {
    background: var(--color-background-alt);
    color: var(--color-text-light);
}

body.dark-mode .footer-section h3 {
    color: var(--color-text-light);
}

body.dark-mode .footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .footer-section a:hover {
    color: var(--color-primary);
}

body.dark-mode .footer-description {
    color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .footer-links a:hover {
    color: var(--color-primary);
}

body.dark-mode .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .footer-bottom-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Dark mode social links */
body.dark-mode .social-link {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
}

body.dark-mode .social-link:hover {
    background: var(--color-primary);
    color: var(--color-text-light);
}

/* Dark mode logo text */
body.dark-mode .logo {
    color: var(--color-text-light);
}

body.dark-mode .logo-text {
    color: var(--color-text-light);
}

/* Dark mode contact form elements */
body.dark-mode .contact-form {
    background: var(--color-background-alt);
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: var(--color-background);
    color: var(--color-text-light);
    border-color: var(--color-border);
}

body.dark-mode .form-group label {
    color: var(--color-text-light);
}

/* Dark mode contact items */
body.dark-mode .contact-item {
    background: var(--color-background-alt);
}

body.dark-mode .contact-details h3 {
    color: var(--color-text-light);
}

body.dark-mode .contact-details p {
    color: var(--color-text-light);
    opacity: 0.8;
}

/* Dark mode for all text elements */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: var(--color-text-light);
}

body.dark-mode p {
    color: var(--color-text-light);
}

body.dark-mode .section-title {
    color: var(--color-text-light);
}

body.dark-mode .section-description {
    color: var(--color-text-light);
}

/* Dark mode hero content */
body.dark-mode .hero-content {
    color: var(--color-text-light);
}

body.dark-mode .hero-subtitle {
    color: var(--color-text-light);
}

body.dark-mode .hero-description {
    color: var(--color-text-light);
}

/* Dark mode buttons in header */
body.dark-mode .cta-button {
    background: var(--color-primary);
    color: var(--color-text-light);
}

body.dark-mode .cta-button:hover {
    background: var(--color-primary-dark);
}

/* Dark mode navigation active state */
body.dark-mode .nav-link.active {
    color: var(--color-primary);
}

/* Dark mode general text elements */
body.dark-mode .hero-title,
body.dark-mode .hero-subtitle,
body.dark-mode .hero-description,
body.dark-mode .section-header h2,
body.dark-mode .section-header p {
    color: var(--color-text-light) !important;
}

/* Dark mode for content sections */
body.dark-mode .content-section,
body.dark-mode .contact-hero,
body.dark-mode .contact-section {
    background: var(--color-background);
    color: var(--color-text-light);
}

/* Dark mode for all content text */
body.dark-mode .policy-content h2,
body.dark-mode .policy-content p,
body.dark-mode .policy-content li,
body.dark-mode .policy-update {
    color: var(--color-text-light) !important;
}

/* Dark mode for main content areas */
body.dark-mode main {
    background: var(--color-background);
    color: var(--color-text-light);
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, var(--color-primary-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    margin-left: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover .logo-text::after {
    opacity: 1;
}

.logo:hover .logo-text {
    transform: translateY(-1px);
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-primary);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    background: var(--color-background);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.login-link {
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.login-link:hover {
    color: var(--color-primary);
    background: rgba(235, 182, 31, 0.1);
}

.signup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    background: var(--color-primary);
    color: var(--color-text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(235, 182, 31, 0.3);
    border: none;
    cursor: pointer;
}

.signup-button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(235, 182, 31, 0.4);
    color: var(--color-text-light);
    text-decoration: none;
}

/* Dark mode auth buttons */
body.dark-mode .login-link {
    color: var(--color-text-light);
}

body.dark-mode .login-link:hover {
    color: var(--color-primary);
    background: rgba(235, 182, 31, 0.2);
}

.theme-toggle {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.6rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 0.5rem;
}

.theme-toggle:hover {
    background: var(--color-hover);
    transform: scale(1.1);
}

.theme-toggle:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.theme-toggle .sun,
.theme-toggle .moon {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Default state (light theme) - moon visible */
.theme-toggle .sun {
    opacity: 0;
    transform: rotate(180deg);
}

.theme-toggle .moon {
    opacity: 1;
    transform: rotate(0deg);
}

/* Dark theme - sun visible */
[data-theme="dark"] .theme-toggle .sun {
    opacity: 1;
    transform: rotate(0deg);
}

[data-theme="dark"] .theme-toggle .moon {
    opacity: 0;
    transform: rotate(-180deg);
}

/* Dark mode styles for theme toggle */
[data-theme="dark"] .theme-toggle:hover {
    background: var(--color-hover);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    /* Multiple fallback backgrounds with vendor prefixes */
    background: #EBB61F !important; /* Emergency fallback */
    background: -webkit-linear-gradient(135deg, #EBB61F 0%, #2d2d2d 100%) !important;
    background: -moz-linear-gradient(135deg, #EBB61F 0%, #2d2d2d 100%) !important;
    background: -o-linear-gradient(135deg, #EBB61F 0%, #2d2d2d 100%) !important;
    background: linear-gradient(135deg, #EBB61F 0%, #2d2d2d 100%) !important;
    background: linear-gradient(135deg, var(--color-primary, #EBB61F) 0%, var(--color-accent, #2d2d2d) 100%) !important;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%) !important;
    color: var(--color-text-light) !important;
    padding: 8rem 0 6rem;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(2px 2px at 20px 30px, #fff, transparent),
                      radial-gradient(2px 2px at 40px 70px, #fff, transparent),
                      radial-gradient(1px 1px at 90px 40px, #fff, transparent),
                      radial-gradient(1px 1px at 130px 80px, #fff, transparent),
                      radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-200px) translateY(-100px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-visual {
    position: relative;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-animation {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== DASHBOARD MOCKUP ===== */
.dashboard-mockup {
    background: var(--color-background);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(235, 182, 31, 0.2);
    animation: dashboardPulse 3s ease-in-out infinite;
    transform: perspective(1000px) rotateY(-5deg);
    position: relative;
    z-index: 2;
}

@keyframes dashboardPulse {
    0%, 100% { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); }
    50% { box-shadow: 0 25px 80px rgba(235, 182, 31, 0.3); }
}

.dashboard-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.dashboard-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-item {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-dark);
    background: var(--color-background-alt);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-item.active {
    background: var(--color-primary);
    color: var(--color-text-light);
}

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    background: var(--color-background-alt);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(235, 182, 31, 0.1);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    display: block;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--color-text-dark);
    margin-bottom: 0.25rem;
}

.metric-trend {
    font-size: 0.75rem;
    color: #28a745;
    font-weight: 600;
}

.message-preview {
    background: var(--color-background-alt);
    border-radius: 12px;
    padding: 1rem;
    max-height: 120px;
    overflow-y: auto;
}

.message-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.message-item:last-child {
    border-bottom: none;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.message-content {
    flex: 1;
}

.sender {
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.preview {
    font-size: 0.8rem;
    color: var(--color-text-dark);
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.timestamp {
    font-size: 0.7rem;
    color: var(--color-text-dark);
    opacity: 0.6;
}

/* ===== FLOATING NOTIFICATIONS ===== */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: var(--color-background);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
    border: 1px solid rgba(235, 182, 31, 0.3);
    animation: floatNotification 6s ease-in-out infinite;
    opacity: 0.9;
}

.floating-element.notification {
    top: 10%;
    right: -20%;
    animation-delay: 0s;
    color: #0066cc;
}

.floating-element.review {
    top: 50%;
    left: -25%;
    animation-delay: 2s;
    color: #ff6b35;
}

.floating-element.payment {
    bottom: 20%;
    right: -15%;
    animation-delay: 4s;
    color: #28a745;
}

@keyframes floatNotification {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(0.8);
        opacity: 0;
    }
    20%, 80% {
        transform: translateY(-10px) translateX(-10px) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-5px) translateX(-5px) scale(1.05);
        opacity: 1;
    }
}

/* ===== ANIMATED COUNTERS ===== */
.animated-counter {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-5deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SOLUTIONS SECTION ===== */
.solutions {
    padding: 6rem 0;
    background: var(--color-background-alt);
    position: relative;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Force 3 columns on larger screens */
@media (min-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.solution-card {
    background: var(--color-background);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(235, 182, 31, 0.1);
    height: fit-content;
    background: linear-gradient(135deg, var(--color-background) 0%, rgba(235, 182, 31, 0.02) 100%);
}

/* Animated gradient border */
.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(235, 182, 31, 0.15), 
        transparent
    );
    transition: left 0.6s ease;
}

/* Glow effect on hover */
.solution-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--color-primary), 
        var(--color-primary-light), 
        var(--color-primary),
        var(--color-primary-light)
    );
    background-size: 400% 400%;
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover::after {
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(235, 182, 31, 0.25),
        0 8px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(235, 182, 31, 0.3);
}

/* Icon glow effect */
.solution-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, 
        var(--color-primary), 
        var(--color-primary-light), 
        var(--color-primary)
    );
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 32px rgba(235, 182, 31, 0.5);
}

.solution-card:hover .solution-icon::before {
    opacity: 1;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
    font-weight: 600;
}

.solution-card > p {
    color: var(--color-text-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.solution-features li {
    padding: 0.5rem 0;
    color: var(--color-text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-features li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

.solution-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, transparent 0%, rgba(235, 182, 31, 0.1) 100%);
    border-radius: 25px;
    border: 1px solid rgba(235, 182, 31, 0.3);
    margin-top: 1rem;
}

.solution-link:hover {
    color: var(--color-text-light);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-color: var(--color-primary);
    transform: translateY(-2px) translateX(5px);
    box-shadow: 0 8px 20px rgba(235, 182, 31, 0.3);
    text-decoration: none;
}

.solution-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.solution-link:hover::after {
    transform: translateX(3px);
}

/* ===== KEY FEATURES SECTION ===== */
.key-features {
    padding: 6rem 0;
    background: var(--color-background);
}

.features-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.feature-content h3 {
    font-size: 2.2rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-background-alt);
    border-radius: 12px;
    border: 1px solid rgba(235, 182, 31, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    opacity: 0.8;
    font-weight: 500;
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.automation-demo {
    width: 100%;
    max-width: 450px;
}

.demo-screen {
    background: var(--color-background);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(235, 182, 31, 0.2);
    position: relative;
    overflow: hidden;
}

.demo-header {
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.demo-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.demo-message {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 80%;
    font-size: 0.9rem;
    line-height: 1.4;
    animation: messageAppear 0.5s ease-out;
}

.demo-message.customer {
    background: var(--color-primary-light);
    color: var(--color-text-dark);
    align-self: flex-end;
    margin-left: auto;
}

.demo-message.bot {
    background: var(--color-background-alt);
    color: var(--color-text-dark);
    align-self: flex-start;
    border: 1px solid rgba(235, 182, 31, 0.2);
}

@keyframes messageAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== INDUSTRIES SECTION ===== */
.industries {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

body.dark-mode .industries {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(235, 182, 31, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(235, 182, 31, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(235, 182, 31, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.industries .container {
    position: relative;
    z-index: 2;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.industry-card {
    background: var(--color-background);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transform-style: preserve-3d;
}

body.dark-mode .industry-card {
    background: rgba(45, 45, 45, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.industry-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--color-primary), transparent, var(--color-primary-light), transparent);
    opacity: 0;
    transition: all 0.8s ease;
    z-index: 0;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.industry-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg) scale(1.02);
    box-shadow: 0 25px 80px rgba(235, 182, 31, 0.25), 0 0 0 1px rgba(235, 182, 31, 0.3);
    border-color: var(--color-primary);
}

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

.industry-card:hover::after {
    opacity: 0.3;
}

.industry-card:hover .industry-icon {
    transform: scale(1.2) rotateY(360deg);
    text-shadow: 0 0 20px rgba(235, 182, 31, 0.6);
}

.industry-card:hover .industry-link {
    transform: translateY(0) scale(1.05);
    opacity: 1;
    box-shadow: 0 8px 25px rgba(235, 182, 31, 0.4);
}

.industry-card > * {
    position: relative;
    z-index: 3;
}

.industry-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
    75% { transform: translateY(-5px) rotate(1deg); }
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
    font-weight: 700;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, var(--color-text-dark), var(--color-primary));
    background-clip: text;
    -webkit-background-clip: text;
}

.industry-card:hover h3 {
    -webkit-text-fill-color: transparent;
    transform: translateY(-3px);
}

.industry-card p {
    color: var(--color-text-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    font-size: 1rem;
}

.industry-card:hover p {
    opacity: 1;
    transform: translateY(-2px);
}

/* ===== INDUSTRY LINK BUTTON ===== */
.industry-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    transform: translateY(10px);
    opacity: 0.8;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(235, 182, 31, 0.2);
}

.industry-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.industry-link:hover::before {
    left: 100%;
}

.industry-link::after {
    content: '✨';
    position: absolute;
    right: 1rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s ease;
    font-size: 1rem;
}

.industry-link:hover {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    transform: translateY(0) scale(1.05);
    box-shadow: 0 12px 35px rgba(235, 182, 31, 0.4);
    border-color: var(--color-primary-light);
    padding-right: 2.5rem;
}

.industry-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.industry-link:active {
    transform: translateY(2px) scale(0.98);
}

/* Add stagger animation to cards */
.industry-card:nth-child(1) { animation-delay: 0.1s; }
.industry-card:nth-child(2) { animation-delay: 0.2s; }
.industry-card:nth-child(3) { animation-delay: 0.3s; }
.industry-card:nth-child(4) { animation-delay: 0.4s; }
.industry-card:nth-child(5) { animation-delay: 0.5s; }
.industry-card:nth-child(6) { animation-delay: 0.6s; }
.industry-card:nth-child(7) { animation-delay: 0.7s; }
.industry-card:nth-child(8) { animation-delay: 0.8s; }
.industry-card:nth-child(9) { animation-delay: 0.9s; }
.industry-card:nth-child(10) { animation-delay: 1.0s; }
.industry-card:nth-child(11) { animation-delay: 1.1s; }
.industry-card:nth-child(12) { animation-delay: 1.2s; }
.industry-card:nth-child(13) { animation-delay: 1.3s; }
.industry-card:nth-child(14) { animation-delay: 1.4s; }
.industry-card:nth-child(15) { animation-delay: 1.5s; }

/* ===== RESPONSIVE INDUSTRY CARDS ===== */
@media (max-width: 768px) {
    .industries {
        padding: 4rem 0;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .industry-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .industry-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 15px 40px rgba(235, 182, 31, 0.2);
    }
    
    .industry-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .industry-card h3 {
        font-size: 1.3rem;
    }
    
    .industry-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .industry-link {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .industry-link:hover {
        padding-right: 2.3rem;
    }
}

@media (max-width: 480px) {
    .industries {
        padding: 3rem 0;
    }
    
    .industry-card {
        padding: 1.5rem 1rem;
    }
    
    .industry-icon {
        font-size: 2.5rem;
    }
    
    .industry-card h3 {
        font-size: 1.2rem;
    }
    
    .industry-card p {
        font-size: 0.9rem;
    }
    
    .industry-link {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 6rem 0;
    background: var(--color-background-alt);
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
}

.testimonial-card {
    display: none;
    background: var(--color-background);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffc107;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-info h4 {
    color: var(--color-text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--color-text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--color-primary);
    color: var(--color-text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--color-primary-dark);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(235, 182, 31, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 0;
    background: var(--color-background);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    max-width: 500px;
}

.about-description {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-feature {
    text-align: center;
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    opacity: 0.8;
    margin-top: 0.25rem;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(var(--color-primary) 0deg, var(--color-primary) 342deg, #e0e0e0 342deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--color-background);
    border-radius: 50%;
}

.progress-text {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.progress-text span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-dark);
    opacity: 0.8;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 0;
    background: var(--color-background-alt);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-background);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    color: var(--color-text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--color-text-dark);
    opacity: 0.8;
}

.contact-form {
    background: var(--color-background);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--color-background);
    color: var(--color-text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(235, 182, 31, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-secondary);
    color: var(--color-text-light);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: var(--color-text-light);
    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: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* ===== BACKUP EMAIL MODAL STYLES ===== */
.backup-email-modal .modal-content {
    max-width: 500px;
    text-align: center;
    padding: 2rem;
}

.backup-email-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.backup-email-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}



.backup-email-link:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.backup-email-link:active {
    transform: translateY(0);
}

/* Enhanced notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10000;
    font-size: 14px;
    line-height: 1.4;
}

.notification.notification-show {
    transform: translateX(0);
}

.notification-info {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-left: 4px solid #1e40af;
}

.notification-success {
    background: linear-gradient(135deg, #10b981, #047857);
    color: white;
    border-left: 4px solid #065f46;
}

.notification-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border-left: 4px solid #b45309;
}

.notification-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-left: 4px solid #b91c1c;
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.notification-message {
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

.notification-fade-out {
    transform: translateX(100%);
    opacity: 0;
}



/* Backup Email Modal Styles */
.backup-email-modal {
    z-index: 20000;
}

.backup-email-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.backup-email-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(235, 182, 31, 0.3);
}

.backup-email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(235, 182, 31, 0.4);
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: white;
    text-decoration: none;
}

.backup-email-link:nth-child(1) {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.backup-email-link:nth-child(1):hover {
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.backup-email-link:nth-child(2) {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.backup-email-link:nth-child(2):hover {
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.backup-email-link:nth-child(3) {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.backup-email-link:nth-child(3):hover {
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.backup-email-link:nth-child(4) {
    background: linear-gradient(135deg, #6610f2 0%, #520dc2 100%);
    box-shadow: 0 4px 12px rgba(102, 16, 242, 0.3);
}

.backup-email-link:nth-child(4):hover {
    box-shadow: 0 6px 20px rgba(102, 16, 242, 0.4);
}

.backup-email-link:nth-child(5) {
    background: linear-gradient(135deg, #25d366 0%, #1aab4b 100%);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.backup-email-link:nth-child(5):hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive backup email modal */
@media (max-width: 768px) {
    .backup-email-links {
        gap: 10px;
    }
    
    .backup-email-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* ===== NOTIFICATION STYLES ===== */
.notification-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification {
    background: var(--color-background);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    min-width: 300px;
    border-left: 4px solid var(--color-primary);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-warning {
    border-left-color: #ffc107;
}

.notification-content {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-message {
    color: var(--color-text-dark);
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--color-text-dark);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

/* ===== MODAL STYLES ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-background);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: var(--color-background-alt);
}

.demo-video {
    margin: 2rem 0;
}

.video-placeholder {
    background: var(--color-background-alt);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    border: 2px dashed #ccc;
}

.play-button {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-text-light);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

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

/* ===== ANIMATIONS ===== */
.fade-in-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-background);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .dropdown-menu {
        position: static;
        background: var(--color-background-alt);
        box-shadow: none;
        margin-top: 1rem;
        border-radius: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .hero {
        padding: 6rem 0 4rem;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    
    .back-to-top {
        bottom: 5rem;
        left: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .notification-container {
        left: 1rem;
        right: 1rem;
    }
    
    .notification {
        min-width: auto;
    }
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

.using-keyboard *:focus {
    outline: 2px solid var(--color-primary) !important;
    outline-offset: 2px !important;
}

/* ===== DARK MODE TOGGLE ===== */
.dark-mode-toggle {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--color-background);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.dark-mode-toggle:hover {
    background: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-50%) scale(1.1);
}

/* ===== INSTALL BANNER ===== */
.install-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: var(--color-text-light);
    z-index: 10000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.install-banner.show {
    transform: translateY(0);
}

.install-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.install-btn {
    background: var(--color-text-light);
    color: var(--color-primary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.install-btn:hover {
    background: var(--color-background-alt);
}

.install-close {
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: 1rem;
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
* {
    will-change: auto;
}

.hero-particles,
.floating-element,
.loading-spinner {
    will-change: transform;
}

.btn,
.feature-card,
.industry-card,
.testimonial-card {
    will-change: transform;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-particles {
        animation: none;
    }
    
    .floating-element {
        animation: none;
    }
}

/* ===== PRICING STYLES ===== */
.pricing-hero {
    padding: 6rem 0 4rem;
    background: var(--color-background-alt);
}

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

.toggle-label {
    font-weight: 600;
    color: var(--color-text-dark);
}

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

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

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

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

.discount {
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.pricing-plans {
    padding: 4rem 0;
    background: var(--color-background);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.plan-card {
    background: var(--color-background);
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.plan-card.featured {
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(235, 182, 31, 0.2);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}

.plan-description {
    color: var(--color-text-dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.period {
    font-size: 1rem;
    color: var(--color-text-dark);
    opacity: 0.8;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--color-text-dark);
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-btn {
    width: 100%;
    margin-top: auto;
}

.enterprise-plan {
    background: var(--color-background-alt);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.enterprise-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.enterprise-text h3 {
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.enterprise-text p {
    color: var(--color-text-dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.enterprise-text ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.enterprise-action {
    text-align: center;
}

.enterprise-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.pricing-faq {
    padding: 4rem 0;
    background: var(--color-background-alt);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--color-background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--color-text-dark);
    opacity: 0.8;
    line-height: 1.6;
}

/* ===== RESOURCES STYLES ===== */
.resources-hero {
    padding: 6rem 0 4rem;
    background: var(--color-background-alt);
}

.resource-categories {
    padding: 4rem 0;
    background: var(--color-background);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--color-background-alt);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(235, 182, 31, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.3rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-card p {
    color: var(--color-text-dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.blog-section {
    padding: 6rem 0;
    background: var(--color-background-alt);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--color-background);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder {
    font-size: 4rem;
    opacity: 0.7;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date, .blog-category {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    opacity: 0.7;
}

.blog-category {
    background: var(--color-primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    color: var(--color-primary-dark);
    opacity: 1;
}

.blog-card h3 {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card p {
    color: var(--color-text-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.case-studies {
    padding: 6rem 0;
    background: var(--color-background);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background: var(--color-background-alt);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(235, 182, 31, 0.1);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.company-info h3 {
    color: var(--color-text-dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.industry {
    color: var(--color-text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
}

.case-study-content h4 {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.case-study-content p {
    color: var(--color-text-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: var(--color-background);
    border-radius: 8px;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--color-text-dark);
    opacity: 0.8;
}

.case-study-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.case-study-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.documentation {
    padding: 6rem 0;
    background: var(--color-background-alt);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.docs-category {
    background: var(--color-background);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.docs-category h3 {
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.docs-list {
    list-style: none;
    padding: 0;
}

.docs-list li {
    margin-bottom: 0.75rem;
}

.docs-list a {
    color: var(--color-text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid #f0f0f0;
}

.docs-list a:hover {
    color: var(--color-primary);
    padding-left: 10px;
}

.training {
    padding: 6rem 0;
    background: var(--color-background);
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.training-card {
    background: var(--color-background-alt);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.training-image {
    height: 200px;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    font-size: 3rem;
    opacity: 0.8;
}

.training-content {
    padding: 2rem;
}

.training-content h3 {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.training-content p {
    color: var(--color-text-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.training-meta {
    display: flex;
    gap: 1rem;
}

.duration, .level {
    font-size: 0.9rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
}

.support {
    padding: 6rem 0;
    background: var(--color-background-alt);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.support-card {
    background: var(--color-background);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-card h3 {
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.support-card p {
    color: var(--color-text-dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.phone-numbers {
    margin-top: 1rem;
}

.phone-numbers p {
    margin: 0.25rem 0;
    font-weight: 600;
    color: var(--color-primary);
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-page {
    padding: 6rem 0;
    background: var(--color-background);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--color-text-dark);
    opacity: 0.7;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.legal-content p {
    color: var(--color-text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--color-background-alt);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* ===== SPECIAL FOOTER SECTION ===== */
.special-footer {
    background: #1a1a1a;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.special-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(235, 182, 31, 0.1) 0%, transparent 50%, rgba(235, 182, 31, 0.1) 100%);
    z-index: 1;
}

.special-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.copyright-left,
.copyright-right {
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.copyright-left {
    text-align: right;
    padding-right: 2rem;
}

.copyright-right {
    text-align: left;
    padding-left: 2rem;
}

.footer-logo-center {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-logo-center img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    padding: 8px;
    box-shadow: 
        0 0 0 4px rgba(235, 182, 31, 0.3),
        0 8px 32px rgba(235, 182, 31, 0.4);
    transition: all 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        box-shadow: 
            0 0 0 4px rgba(235, 182, 31, 0.3),
            0 8px 32px rgba(235, 182, 31, 0.4);
    }
    50% {
        box-shadow: 
            0 0 0 6px rgba(235, 182, 31, 0.5),
            0 12px 40px rgba(235, 182, 31, 0.6);
    }
}

.footer-logo-center:hover img {
    transform: scale(1.1);
    box-shadow: 
        0 0 0 6px rgba(235, 182, 31, 0.5),
        0 12px 40px rgba(235, 182, 31, 0.6);
}

/* Dark mode adjustments */
body.dark-mode .special-footer {
    background: #0f0f0f;
}

body.dark-mode .copyright-left,
body.dark-mode .copyright-right {
    color: rgba(255, 255, 255, 0.9);
}


/* Responsive Design */
@media (max-width: 768px) {
    .special-footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .copyright-left,
    .copyright-right {
        padding: 0;
        text-align: center;
    }
    
    .footer-logo-center img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .copyright-left span,
    .copyright-right span {
        font-size: 0.8rem;
    }
    
    .footer-logo-center img {
        width: 50px;
        height: 50px;
    }
}

/* ===== TIME WIDGETS (CLOCK & CALENDAR) ===== */
.time-widgets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* Digital Clock Styles */
.digital-clock {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(235, 182, 31, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.digital-clock::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.clock-display {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

#clock-time {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

#clock-period {
    font-size: 1rem;
    margin-left: 0.5rem;
    opacity: 0.9;
}

.clock-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Mini Calendar Styles */
.mini-calendar {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(235, 182, 31, 0.2);
    backdrop-filter: blur(10px);
    min-width: 200px;
    transition: all 0.3s ease;
}

.mini-calendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
}

#calendar-month {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
}

#calendar-year {
    font-weight: 500;
    color: var(--color-text-dark);
    font-size: 0.9rem;
}

.calendar-day-headers {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 0.5rem;
}

.calendar-day-headers span {
    text-align: center;
    font-weight: 600;
    font-size: 0.7rem;
    color: var(--color-primary);
    padding: 0.3rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.calendar-day:hover {
    background: rgba(235, 182, 31, 0.1);
    transform: scale(1.1);
}

.calendar-day.today {
    background: var(--color-primary);
    color: white;
    font-weight: bold;
    animation: today-pulse 2s infinite;
}

@keyframes today-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(235, 182, 31, 0.7);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(235, 182, 31, 0);
    }
}

.calendar-day.other-month {
    color: #ccc;
    opacity: 0.5;
}

.calendar-day.weekend {
    color: var(--color-primary);
    font-weight: 500;
}

/* Dark mode adjustments */
[data-theme="dark"] .mini-calendar,
body.dark-mode .mini-calendar {
    background: rgba(45, 45, 45, 0.95);
    border-color: rgba(235, 182, 31, 0.3);
}

[data-theme="dark"] #calendar-year,
body.dark-mode #calendar-year {
    color: var(--color-text-light);
}

[data-theme="dark"] .calendar-day.other-month,
body.dark-mode .calendar-day.other-month {
    color: #666;
}

[data-theme="dark"] .calendar-day,
body.dark-mode .calendar-day {
    color: var(--color-text-light);
}

[data-theme="dark"] .calendar-day.weekend,
body.dark-mode .calendar-day.weekend {
    color: var(--color-primary-light);
}

[data-theme="dark"] .digital-clock,
body.dark-mode .digital-clock {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

/* Responsive adjustments for time widgets */
@media (max-width: 768px) {
    .time-widgets {
        gap: 1rem;
    }
    
    .digital-clock {
        padding: 1rem;
        min-width: 180px;
    }
    
    .clock-display {
        font-size: 1.5rem;
    }
    
    .mini-calendar {
        min-width: 180px;
        padding: 0.8rem;
    }
    
    .calendar-day-headers span {
        font-size: 0.65rem;
    }
    
    .calendar-day {
        font-size: 0.7rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .back-to-top,
    .dark-mode-toggle,
    .notification-container,
    .install-banner,
    .special-footer,
    .time-widgets {
        display: none !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        padding: 2rem 0 !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        page-break-after: avoid;
    }
}


/* ===== SUCCESS PAGE STYLES ===== */
.success-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .success-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.success-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.success-subtitle {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.success-description {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    opacity: 0.8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.success-info {
    background: rgba(235, 182, 31, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: left;
    border: 1px solid rgba(235, 182, 31, 0.2);
}

body.dark-mode .success-info {
    background: rgba(235, 182, 31, 0.15);
    border-color: rgba(235, 182, 31, 0.3);
}

.success-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--color-text-dark);
}

.success-info ul {
    list-style: none;
    padding: 0;
}

.success-info li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--color-text-dark);
}

.success-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.contact-alternatives {
    background: var(--color-background-alt);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

body.dark-mode .contact-alternatives {
    background: rgba(45, 45, 45, 0.8);
}

.contact-alternatives p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.contact-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-method:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 182, 31, 0.3);
    color: white;
    text-decoration: none;
}

/* Mobile responsive adjustments for success page */
@media (max-width: 768px) {
    .success-hero {
        padding: 4rem 0 3rem;
        min-height: 70vh;
    }
    
    .success-content h1 {
        font-size: 2.2rem;
    }
    
    .success-subtitle {
        font-size: 1.2rem;
    }
    
    .success-description {
        font-size: 1rem;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .success-info {
        padding: 1.5rem;
    }
    
    .contact-alternatives {
        padding: 1.5rem;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* ===== 404 ERROR PAGE STYLES ===== */
.error-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .error-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
}

.error-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

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

.error-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1rem;
}

.error-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.error-description {
    font-size: 1.2rem;
    color: var(--color-text-dark);
    opacity: 0.7;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.quick-links {
    background: rgba(235, 182, 31, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(235, 182, 31, 0.2);
}

body.dark-mode .quick-links {
    background: rgba(235, 182, 31, 0.15);
    border-color: rgba(235, 182, 31, 0.3);
}

.quick-links h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--color-text-dark);
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--color-background);
    color: var(--color-text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

body.dark-mode .quick-link {
    background: rgba(45, 45, 45, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.quick-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 182, 31, 0.3);
    text-decoration: none;
}

.quick-link .icon {
    font-size: 1.5rem;
}

.quick-link .text {
    font-weight: 500;
}

.help-section {
    background: var(--color-background-alt);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

body.dark-mode .help-section {
    background: rgba(45, 45, 45, 0.8);
}

.help-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.help-methods {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.help-method {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.help-method:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 182, 31, 0.3);
    color: white;
    text-decoration: none;
}

/* Mobile responsive adjustments for 404 page */
@media (max-width: 768px) {
    .error-hero {
        padding: 4rem 0 3rem;
        min-height: 70vh;
    }
    
    .error-code {
        font-size: 5rem;
    }
    
    .error-content h1 {
        font-size: 2.2rem;
    }
    
    .error-subtitle {
        font-size: 1.2rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .quick-links {
        padding: 1.5rem;
    }
    
    .link-grid {
        grid-template-columns: 1fr;
    }
    
    .help-section {
        padding: 1.5rem;
    }
    
    .help-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .help-method {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
