:root {
    --primary-color: #0046ad;
    --primary-dark: #003380;
    --accent-color: #00b894;
    --accent-blue: #0096d6;
    --accent-purple: #6c5ce7;
    --accent-orange: #f39c12;
    --accent-red: #e74c3c;
    --accent-pink: #e84393;
    --accent-cyan: #00cec9;
    --accent-green: #27ae60;
    --text-main: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --bg-light: #f8faff;
    --bg-dark: #1a1a2e;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ================================
   PRELOADER
================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
    z-index: 9999;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-elegant {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Subtle Background */
.elegant-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 184, 148, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 123, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

/* Elegant Loader */
.elegant-loader {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.elegant-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.elegant-ring::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(0, 184, 148, 0.8);
    animation: elegantSpin 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.elegant-ring-inner {
    position: absolute;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.elegant-ring-inner::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-bottom-color: rgba(0, 123, 255, 0.5);
    animation: elegantSpin 3s cubic-bezier(0.4, 0, 0.2, 1) infinite reverse;
}

@keyframes elegantSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.elegant-logo {
    width: 50px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    animation: elegantPulse 3s ease-in-out infinite;
}

@keyframes elegantPulse {
    0%, 100% { 
        opacity: 0.7;
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 184, 148, 0.3));
    }
    50% { 
        opacity: 1;
        filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(0, 184, 148, 0.6));
    }
}

/* Brand */
.elegant-brand {
    margin-top: 3rem;
    text-align: center;
}

.elegant-name {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    animation: elegantFadeIn 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.elegant-tagline {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    animation: elegantFadeIn 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

@keyframes elegantFadeIn {
    to { opacity: 1; }
}

/* Progress */
.elegant-progress {
    position: absolute;
    bottom: 80px;
    width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.elegant-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 184, 148, 0.8), transparent);
    animation: elegantProgress 2.5s ease-in-out forwards;
}

@keyframes elegantProgress {
    0% { width: 0%; transform: translateX(0); }
    50% { width: 60%; }
    100% { width: 100%; }
}

/* ================================
   SEARCH MODAL
================================ */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    width: 90%;
    max-width: 600px;
    text-align: center;
    transform: translateY(-30px);
    transition: var(--transition);
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.close-search {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-search:hover {
    transform: rotate(90deg);
}

.search-modal h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.search-form {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.search-form input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-family: inherit;
}

.search-form button {
    padding: 1.2rem 2rem;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--primary-dark);
}

.search-suggestions {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.search-suggestions span {
    margin-right: 1rem;
}

.search-suggestions a {
    color: var(--white);
    text-decoration: none;
    margin: 0 0.5rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.search-suggestions a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ================================
   MOBILE MENU
================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--primary-color);
}

.mobile-menu-header .logo-img {
    height: 40px;
}

.mobile-menu-header .logo-img {
    height: 40px;
}

.mobile-menu-header .logo-icon {
    width: 30px;
    height: 30px;
}

.mobile-menu-header .logo-text {
    color: var(--white);
}

.close-menu {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    padding: 1rem 0;
    flex: 1;
}

.mobile-nav-links li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav-links li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-nav-links li a i {
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

/* Mobile Products Dropdown */
.mobile-products-menu {
    position: relative;
}

.mobile-products-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-products-toggle .toggle-icon {
    margin-left: auto;
    transition: var(--transition);
}

.mobile-products-menu.active .toggle-icon {
    transform: rotate(180deg);
}

.mobile-products-dropdown {
    display: none;
    padding: 0.5rem 0 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 0.5rem 0;
}

.mobile-products-menu.active .mobile-products-dropdown {
    display: block;
}

.mobile-product-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

.mobile-product-item:hover {
    background: var(--white);
}

.mp-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mp-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.mp-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mp-content p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.badge-small {
    font-size: 0.55rem;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-small.android {
    background: #34a853;
    color: white;
}

.badge-small.ios {
    background: #1a1a1a;
    color: white;
}

/* Mobile Login Dropdown */
.mobile-login-menu {
    position: relative;
}

.mobile-login-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-login-toggle .toggle-icon {
    margin-left: auto;
    transition: var(--transition);
}

.mobile-login-menu.active .toggle-icon {
    transform: rotate(180deg);
}

.mobile-login-dropdown {
    display: none;
    padding: 0.5rem 0 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 0.5rem 0;
}

.mobile-login-menu.active .mobile-login-dropdown {
    display: block;
}

.mobile-login-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

.mobile-login-item:hover {
    background: var(--white);
}

.ml-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ml-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.ml-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.ml-content p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Mobile Industry Menu */
.mobile-industry-menu {
    position: relative;
}

.mobile-industry-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-industry-toggle .toggle-icon {
    margin-left: auto;
    transition: var(--transition);
}

.mobile-industry-menu.active .toggle-icon {
    transform: rotate(180deg);
}

.mobile-industry-dropdown {
    display: none;
    padding: 0.5rem 0 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 0.5rem 0;
}

.mobile-industry-menu.active .mobile-industry-dropdown {
    display: block;
}

.mobile-section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.8rem;
    margin-bottom: 0.3rem;
}

.mobile-industry-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

.mobile-industry-item:hover {
    background: var(--white);
}

.mi-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mi-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.mi-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.mi-content p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Desktop Industry Megamenu */
.industry-megamenu {
    min-width: 600px;
}

.industry-megamenu .megamenu-inner {
    gap: 1rem;
}

.megamenu-item.utility-item {
    padding: 1rem;
    border-radius: 10px;
    background: var(--bg-light);
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.megamenu-item.utility-item:hover {
    background: var(--white);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.megamenu-item.utility-item .megamenu-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.megamenu-item.utility-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.megamenu-item.utility-item p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.coming-soon-placeholder {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
    color: var(--text-muted);
}

.coming-soon-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.coming-soon-placeholder p {
    font-size: 0.85rem;
    margin: 0;
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.mobile-menu-footer .cta-button {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mobile-social a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================================
   HEADER & NAV
================================ */
.header {
    background: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.logo-text span {
    font-weight: 300;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--white);
}

/* ================================
   MEGA MENU
================================ */
.has-megamenu {
    position: static;
}

.megamenu-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.megamenu-trigger i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.has-megamenu:hover .megamenu-trigger i {
    transform: rotate(180deg);
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid var(--accent-color);
}

.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    padding: 2.5rem 4%;
    max-width: 1500px;
    margin: 0 auto;
}

.megamenu-column {
    padding: 0 0.5rem;
}

.megamenu-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 184, 148, 0.2);
}

.megamenu-column:nth-child(2) .megamenu-label {
    color: var(--accent-blue);
    border-bottom-color: rgba(0, 150, 214, 0.2);
}

.megamenu a,
.megamenu a:hover {
    color: var(--text-main);
}

.megamenu-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    margin-bottom: 1rem;
}

.megamenu-item:hover {
    background: var(--bg-light);
}

/* Product Card Styles (CorruPack & DigiInvoice) */
.megamenu-item.product-card {
    flex-direction: column;
    padding: 1.8rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.megamenu-item.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #00d9a5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.megamenu-item.product-card.blue-card::before {
    background: linear-gradient(90deg, var(--accent-blue), #00a8e8);
}

.megamenu-item.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.megamenu-item.product-card:hover::before {
    opacity: 1;
}

.product-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.product-card-header .megamenu-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.3);
}

.product-card-header .megamenu-icon i {
    font-size: 1.6rem;
}

.product-card.blue-card .megamenu-icon {
    box-shadow: 0 6px 20px rgba(0, 150, 214, 0.3);
}

.product-card-title {
    flex: 1;
}

.product-card-title h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.product-card-title h4 span {
    font-size: 0.8rem;
    vertical-align: super;
    color: var(--accent-color);
}

.product-card.blue-card .product-card-title h4 span {
    color: var(--accent-blue);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.15), rgba(0, 184, 148, 0.05));
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.blue {
    background: linear-gradient(135deg, rgba(0, 150, 214, 0.15), rgba(0, 150, 214, 0.05));
    color: var(--accent-blue);
}

.product-badge i {
    font-size: 0.65rem;
}

.product-card-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    background: rgba(0, 184, 148, 0.08);
    color: #2d6b5e;
    border-radius: 8px;
    border: 1px solid rgba(0, 184, 148, 0.15);
    transition: all 0.2s ease;
}

.feature-pill.blue {
    background: rgba(0, 150, 214, 0.08);
    color: #1a6b8a;
    border-color: rgba(0, 150, 214, 0.15);
}

.megamenu-item.product-card:hover .feature-pill {
    background: rgba(0, 184, 148, 0.12);
    border-color: rgba(0, 184, 148, 0.25);
}

.megamenu-item.product-card.blue-card:hover .feature-pill.blue {
    background: rgba(0, 150, 214, 0.12);
    border-color: rgba(0, 150, 214, 0.25);
}

.feature-pill i {
    font-size: 0.75rem;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
}

.product-tagline.blue {
    color: var(--accent-blue);
}

.product-tagline i {
    color: #f1c40f;
}

.product-tagline.blue i {
    color: var(--accent-blue);
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.product-cta.blue {
    color: var(--accent-blue);
}

.megamenu-item.product-card:hover .product-cta {
    opacity: 1;
    transform: translateX(0);
}

.product-cta i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.megamenu-item.product-card:hover .product-cta i {
    transform: translateX(3px);
}

.megamenu-item.app-item {
    padding: 1.2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.megamenu-item.app-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.15);
}

.megamenu-item.app-item .megamenu-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.megamenu-item.app-item .megamenu-content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.megamenu-item.app-item .megamenu-content p {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.megamenu-item.app-item .megamenu-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.1), rgba(0, 184, 148, 0.05));
    border-radius: 20px;
    color: #00b894;
}

.megamenu-item.app-item .megamenu-tagline i {
    font-size: 0.7rem;
}

/* App Download Button */
.app-download-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    align-self: center;
}

.app-download-btn.android {
    background: linear-gradient(135deg, #34a853, #2d9649);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 168, 83, 0.3);
}

.app-download-btn.ios {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.megamenu-item.app-item:hover .app-download-btn {
    transform: scale(1.1);
}

.megamenu-item.app-item:hover .app-download-btn.android {
    box-shadow: 0 6px 20px rgba(52, 168, 83, 0.4);
}

.megamenu-item.app-item:hover .app-download-btn.ios {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Android Card Specific */
.megamenu-item.app-item.android-card {
    border-left: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(180deg, #34a853, #00b894) border-box;
}

.megamenu-item.app-item.android-card:hover {
    background: linear-gradient(135deg, #f0fff4 0%, #e8f5e9 100%);
}

/* iOS Card Specific */
.megamenu-item.app-item.ios-card {
    border-left: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(180deg, #1a1a1a, #555) border-box;
}

.megamenu-item.app-item.ios-card:hover {
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.megamenu-item.app-item.ios-card .megamenu-tagline {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.08), rgba(26, 26, 26, 0.03));
    color: #1a1a1a;
}

.megamenu-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.megamenu-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.megamenu-content {
    flex: 1;
}

.megamenu-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.megamenu-content h4 span:first-child {
    font-size: 0.6rem;
    vertical-align: super;
}

.app-badge {
    font-size: 0.65rem !important;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.app-badge.android {
    background: #34a853;
    color: white;
}

.app-badge.ios {
    background: #1a1a1a;
    color: white;
}

.megamenu-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.megamenu-links {
    list-style: none;
    margin-bottom: 0.8rem;
}

.megamenu-links li {
    margin-bottom: 0.3rem;
}

.megamenu-links li a {
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: underline;
    transition: var(--transition);
}

.megamenu-links li a:hover {
    color: var(--accent-color);
}

.megamenu-tagline {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 500;
}

.megamenu-tagline i {
    color: #f1c40f;
}

.megamenu-footer {
    background: var(--bg-light);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    border-top: 1px solid #eee;
}

.megamenu-cta {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    background: var(--accent-color);
    color: var(--white);
}

.megamenu-cta:hover {
    background: #00a383;
    transform: translateY(-2px);
}

.megamenu-cta.outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-light);
}

.megamenu-cta.outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.search-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}

.search-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Login Dropdown */
.login-dropdown {
    position: relative;
}

.login-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.login-btn i:last-child {
    font-size: 0.7rem;
    transition: var(--transition);
}

.login-dropdown:hover .login-btn i:last-child {
    transform: rotate(180deg);
}

.login-dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    min-width: 240px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    padding: 0.5rem;
    z-index: 1000;
}

.login-dropdown:hover .login-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.login-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.login-item:hover {
    background: #f3f4f6;
}

.login-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
}

.login-icon.teal {
    background: linear-gradient(135deg, var(--accent-color), #14b8a6);
}

.login-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.login-text {
    display: flex;
    flex-direction: column;
}

.login-app-name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.login-app-desc {
    font-size: 0.75rem;
    color: #6b7280;
}

.cta-button {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-button.primary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ================================
   HERO SECTION
================================ */
.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    align-items: center;
    gap: 4rem;
    min-height: 85vh;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 70, 173, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--accent-color);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content h1 span {
    color: var(--primary-color);
    position: relative;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
}

.cta-button.outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    background: transparent;
}

.cta-button.secondary:hover {
    background: #00a383;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
}

.cta-button.outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-trust {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.hero-trust span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
}

.trust-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-logo {
    padding: 0.6rem 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.trust-logo:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero Code Window Illustration */
.hero-visual {
    position: relative;
}

.hero-illustration {
    position: relative;
    padding: 2rem;
}

.code-window {
    background: #1e1e2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 184, 148, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.window-header {
    background: #2d2d3d;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.window-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-header .dot.red { background: #ff5f57; }
.window-header .dot.yellow { background: #febc2e; }
.window-header .dot.green { background: #28c840; }

.window-title {
    margin-left: auto;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Consolas', monospace;
}

.window-body {
    padding: 1.5rem;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
}

.code-line {
    display: flex;
    align-items: center;
}

.line-num {
    color: rgba(255, 255, 255, 0.3);
    min-width: 30px;
    user-select: none;
    font-size: 0.75rem;
}

.keyword { color: #c678dd; }
.variable { color: #61afef; }
.property { color: #e5c07b; }
.string { color: #98c379; }
.function { color: #61afef; }

.cursor {
    color: var(--accent-color);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 1.3rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 0;
    right: 20px;
    color: #61afef;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    bottom: 20%;
    left: 0;
    color: var(--accent-color);
    animation-delay: 0.5s;
}

.floating-icon.icon-3 {
    top: 30%;
    right: 0;
    color: #e5c07b;
    animation-delay: 1s;
}

.floating-icon.icon-4 {
    bottom: 0;
    right: 30%;
    color: #c678dd;
    animation-delay: 1.5s;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.main-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(0, 184, 148, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 184, 148, 0.2);
    position: relative;
    animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(0, 184, 148, 0.1);
    }
    50% {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 0 60px rgba(0, 184, 148, 0.25);
    }
}

.card-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-title i {
    color: var(--accent-color);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #28c840;
    background: rgba(40, 200, 64, 0.15);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
}

.live-indicator .pulse {
    width: 8px;
    height: 8px;
    background: #28c840;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.dots {
    display: flex;
    gap: 7px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dots span:nth-child(1) { 
    background: #ff5f57; 
    box-shadow: 0 0 8px rgba(255, 95, 87, 0.5);
}
.dots span:nth-child(2) { 
    background: #febc2e; 
    box-shadow: 0 0 8px rgba(254, 188, 46, 0.5);
}
.dots span:nth-child(3) { 
    background: #28c840; 
    box-shadow: 0 0 8px rgba(40, 200, 64, 0.5);
}

.card-body {
    padding: 1.5rem;
    background: linear-gradient(180deg, #fafbff 0%, #f5f7fa 100%);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dash-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9ff 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dash-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.dash-stat i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dash-number {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dash-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stats-row {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.stat-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item .label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 100px;
}

.bar-container {
    flex: 1;
    height: 10px;
    background: linear-gradient(90deg, #e8ecf2 0%, #f0f3f8 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}

.bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
    box-shadow: 0 2px 8px rgba(0, 184, 148, 0.4);
}

.stat-value {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-color);
    min-width: 40px;
}

.graph-placeholder {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 1.2rem;
    border: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.graph-header span:first-child {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.graph-header span:first-child i {
    color: var(--accent-color);
}

.growth-badge {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.15) 0%, rgba(0, 184, 148, 0.08) 100%);
    color: var(--accent-color);
    padding: 0.35rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(0, 184, 148, 0); }
}

.revenue-graph {
    width: 100%;
    height: 70px;
}

.graph-line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawLine 2s ease forwards 1s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1rem;
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-1 i {
    color: var(--accent-color);
}

.card-2 {
    bottom: 15%;
    left: -20px;
    animation-delay: 1.5s;
}

.card-2 i {
    color: var(--accent-blue);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ================================
   STATS SECTION
================================ */
.stats-section {
    background: var(--primary-color);
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-box {
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.8rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.stat-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* ================================
   SOLUTIONS SECTION
================================ */
.solutions-grid {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 184, 148, 0.1);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

.grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-top {
    padding: 2rem;
    color: var(--white);
    position: relative;
}

.teal-theme { background: linear-gradient(135deg, var(--accent-color), #00a383); }
.blue-theme { background: linear-gradient(135deg, var(--accent-blue), #0077b6); }
.purple-theme { background: linear-gradient(135deg, var(--accent-purple), #5a4fcf); }
.orange-theme { background: linear-gradient(135deg, var(--accent-orange), #e67e22); }
.green-theme { background: linear-gradient(135deg, #34a853, #2d8a47); }
.dark-theme { background: linear-gradient(135deg, #1a1a1a, #333333); }

.category {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.card-logo {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-logo i {
    font-size: 2.2rem;
}

.card-logo h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

.card-logo span {
    font-size: 0.7rem;
    vertical-align: super;
    margin-left: 2px;
}

.price-tag {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.card-content {
    padding: 2rem;
}

.card-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.feature-links {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-links li {
    margin-bottom: 0.7rem;
}

.feature-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.feature-links a i.fa-check {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.feature-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.card-footer-text {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: var(--text-muted);
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.learn-more-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.learn-more-btn.teal { background: var(--accent-color); }
.learn-more-btn.blue { background: var(--accent-blue); }
.learn-more-btn.purple { background: var(--accent-purple); }
.learn-more-btn.orange { background: var(--accent-orange); }
.learn-more-btn.green { background: #34a853; }
.learn-more-btn.dark { background: #1a1a1a; }

.learn-more-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.text-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--primary-color);
}

/* ================================
   FEATURES SECTION
================================ */
.features-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.teal-bg { background: linear-gradient(135deg, var(--accent-color), #00a383); }
.blue-bg { background: linear-gradient(135deg, var(--accent-blue), #0077b6); }
.purple-bg { background: linear-gradient(135deg, var(--accent-purple), #5a4fcf); }
.orange-bg { background: linear-gradient(135deg, var(--accent-orange), #e67e22); }
.green-bg { background: linear-gradient(135deg, var(--accent-green), #219a52); }
.red-bg { background: linear-gradient(135deg, var(--accent-red), #c0392b); }
.cyan-bg { background: linear-gradient(135deg, var(--accent-cyan), #00b5ad); }
.pink-bg { background: linear-gradient(135deg, var(--accent-pink), #d63384); }

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ================================
   INDUSTRIES SECTION
================================ */
.industries-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.industries-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.industry-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.industry-card h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

.industry-card > p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.industry-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.industry-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.industry-features i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.industry-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.industry-link:hover {
    gap: 0.8rem;
}

/* ================================
   ABOUT SECTION
================================ */
.about-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content .section-badge {
    margin-bottom: 1rem;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-content > p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.highlight-item h4 {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.highlight-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-visual {
    position: relative;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-img {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    min-height: 150px;
}

.about-img i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-img span {
    font-weight: 600;
}

.about-img.img-2 { background: linear-gradient(135deg, var(--accent-color), #00a383); }
.about-img.img-3 { background: linear-gradient(135deg, var(--accent-purple), #5a4fcf); }
.about-img.img-4 { background: linear-gradient(135deg, var(--accent-orange), #e67e22); }

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.exp-number {
    font-size: 2rem;
    font-weight: 700;
}

.exp-text {
    font-size: 0.8rem;
    text-align: center;
}

/* ================================
   TESTIMONIALS SECTION
================================ */
.testimonials-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--white);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--text-main);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* ================================
   DEMO SECTION
================================ */
.demo-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.demo-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-content {
    color: var(--white);
}

.demo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.demo-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.demo-benefits {
    list-style: none;
}

.demo-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.demo-benefits i {
    color: var(--accent-color);
}

.demo-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.demo-form h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    text-align: center;
}

.demo-form .form-group {
    margin-bottom: 1rem;
}

.demo-form input,
.demo-form select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.demo-form input:focus,
.demo-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.demo-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.demo-submit-btn:hover {
    background: #00a383;
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.form-note i {
    margin-right: 0.3rem;
}

/* ================================
   CONTACT SECTION
================================ */
.contact-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-social {
    padding: 1.5rem;
    background: var(--primary-color);
    border-radius: 12px;
    color: var(--white);
}

.contact-social h3 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-color);
}

.contact-form-container {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.contact-submit-btn {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-map {
    max-width: 1200px;
    margin: 4rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    display: block;
}

/* ================================
   NEWSLETTER SECTION
================================ */
.newsletter-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--white);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.newsletter-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.newsletter-content h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.newsletter-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    padding: 0.9rem 1.2rem;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    width: 280px;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 0.9rem 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* ================================
   FOOTER
================================ */
.footer {
    background: var(--bg-dark);
    color: var(--white);
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo-img {
    height: 50px;
}

.footer-brand .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ================================
   BACK TO TOP BUTTON
================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ================================
   TOAST NOTIFICATION
================================ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-main);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 2000;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.toast-content i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* ================================
   ANIMATIONS
================================ */
.fade-in { animation: fadeIn 1s ease-out; }
.fade-in-delay { animation: fadeIn 1s ease-out 0.5s both; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================
   MOBILE RESPONSIVE
================================ */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-container,
    .demo-container {
        gap: 3rem;
    }
    
    .nav-links {
        gap: 1.2rem;
        margin-left: 1rem;
    }
    
    .nav-actions {
        gap: 1rem;
    }
    
    .login-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .cta-button.primary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 2rem;
        min-height: auto;
    }
    
    .hero-content p { 
        margin: 0 auto 2.5rem; 
    }
    
    .hero-btns { 
        justify-content: center; 
    }
    
    .hero-trust {
        text-align: center;
    }
    
    .trust-logos {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .floating-icon {
        display: none;
    }
    
    .code-window {
        font-size: 0.75rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .nav-links, .nav-actions { 
        display: none; 
    }
    
    .mobile-menu-btn { 
        display: block; 
    }
    
    .hero-content h1 { 
        font-size: 2.5rem; 
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        right: 10px;
        bottom: -20px;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
    }
    
    .demo-content {
        text-align: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-content {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: 50px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* ================================
   FEATURED PRODUCTS CARD MENU
================================ */
.featured-products-menu {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8faff 0%, #e8f4ff 100%);
}

.featured-products-menu .section-header {
    margin-bottom: 2.5rem;
}

.product-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-menu-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.product-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-card-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.teal-gradient {
    background: linear-gradient(135deg, var(--accent-color), #00a383);
}

.blue-gradient {
    background: linear-gradient(135deg, var(--accent-blue), #0077b6);
}

.orange-gradient {
    background: linear-gradient(135deg, var(--accent-orange), #e67e22);
}

.purple-gradient {
    background: linear-gradient(135deg, var(--accent-purple), #5541d9);
}

.green-gradient {
    background: linear-gradient(135deg, #34a853, #2d8a47);
}

.dark-gradient {
    background: linear-gradient(135deg, #1a1a1a, #333333);
}

.product-card-content {
    flex: 1;
}

.product-card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.product-card-content h3 span {
    font-size: 0.7rem;
    vertical-align: super;
}

.product-card-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: linear-gradient(135deg, var(--accent-color), #00a383);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.fbr {
    background: linear-gradient(135deg, var(--accent-blue), #0077b6);
}

.product-badge.play {
    background: linear-gradient(135deg, #34a853, #2d8a47);
}

.product-badge.apple {
    background: linear-gradient(135deg, #1a1a1a, #333333);
}

.product-arrow {
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.product-menu-card:hover .product-arrow {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* ================================
   PRODUCT SHOWCASE SECTIONS
================================ */
.product-showcase {
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
}

.corrupack-section {
    background: linear-gradient(135deg, #f0fff4 0%, #e8f5e9 100%);
}

.diginvoice-section {
    background: linear-gradient(135deg, #e8f4ff 0%, #e3f2fd 100%);
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-container.reverse {
    direction: rtl;
}

.showcase-container.reverse > * {
    direction: ltr;
}

.showcase-content .section-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.showcase-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    display: block;
}

.showcase-content h2 .trademark {
    font-size: 1.2rem;
    vertical-align: super;
    color: var(--accent-color);
}

.showcase-tagline {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.diginvoice-section .showcase-tagline {
    color: var(--accent-blue);
}

.showcase-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.showcase-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.showcase-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon-wrap {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.15);
    flex-shrink: 0;
}

.feature-icon-wrap i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.diginvoice-section .feature-icon-wrap {
    box-shadow: 0 4px 15px rgba(0, 150, 214, 0.15);
}

.diginvoice-section .feature-icon-wrap i {
    color: var(--accent-blue);
}

.feature-icon-wrap.blue {
    box-shadow: 0 4px 15px rgba(0, 150, 214, 0.15);
}

.feature-icon-wrap.blue i {
    color: var(--accent-blue);
}

.showcase-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.showcase-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.showcase-cta {
    display: flex;
    gap: 1rem;
}

.showcase-cta .blue-btn {
    background: var(--accent-blue);
}

.section-badge.blue-badge {
    background: rgba(0, 150, 214, 0.15);
    color: var(--accent-blue);
}

/* Showcase Visual/Mockup */
.showcase-visual {
    position: relative;
}

.showcase-mockup {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.mockup-header {
    background: linear-gradient(135deg, var(--accent-color), #00a383);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-weight: 600;
}

.mockup-header.blue-header {
    background: linear-gradient(135deg, var(--accent-blue), #0077b6);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.mockup-body {
    padding: 2rem;
}

.mockup-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.m-stat {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.m-stat i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.m-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
}

.m-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 120px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--accent-color), #00a383);
    border-radius: 8px 8px 0 0;
    animation: barGrow 1.5s ease-out forwards;
}

@keyframes barGrow {
    from {
        transform: scaleY(0);
        transform-origin: bottom;
    }
    to {
        transform: scaleY(1);
        transform-origin: bottom;
    }
}

/* App Screenshots Slider */
.app-screenshots-slider {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.screenshot-main {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.screenshot-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.screenshot-thumbnails {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.screenshot-thumbnails .thumb {
    width: 80px;
    height: 55px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.screenshot-thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-thumbnails .thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

.screenshot-thumbnails .thumb.active {
    border-color: var(--accent-color);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.showcase-badge {
    position: absolute;
    bottom: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), #00a383);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.3);
}

.showcase-badge.fbr-badge {
    background: linear-gradient(135deg, var(--accent-blue), #0077b6);
    box-shadow: 0 10px 30px rgba(0, 150, 214, 0.3);
}

/* Invoice Mockup Specific */
.invoice-preview {
    padding: 0;
}

.invoice-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed #eee;
}

.invoice-company strong {
    display: block;
    font-size: 1.1rem;
}

.invoice-company span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.invoice-fbr {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #e8f5e9;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #27ae60;
    font-weight: 600;
    font-size: 0.85rem;
}

.invoice-items {
    margin-bottom: 1.5rem;
}

.inv-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.inv-row.header {
    font-weight: 700;
    background: var(--bg-light);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border-bottom: none;
}

.inv-row.total {
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-blue), #0077b6);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    border-bottom: none;
    margin-top: 0.5rem;
}

.invoice-qr {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.qr-placeholder {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 2px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder i {
    font-size: 2rem;
    color: var(--text-muted);
}

.invoice-qr span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Responsive for Product Cards & Showcase */
@media (max-width: 1200px) {
    .product-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .showcase-container.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .product-cards-container {
        grid-template-columns: 1fr;
    }
    
    .product-menu-card {
        padding: 1.2rem;
    }
    
    .showcase-content h2 {
        font-size: 2.2rem;
    }
    
    .showcase-features {
        grid-template-columns: 1fr;
    }
    
    .showcase-cta {
        flex-direction: column;
    }
    
    .mockup-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ================================
   WhatsApp Floating Button
================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--bg-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: var(--bg-dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* ================================
   Cookie Consent Banner
================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 1.5rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-text i {
    font-size: 2rem;
    color: #f5a623;
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn.accept {
    background: var(--accent-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #00a884;
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
    }
    
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}
