/* ==========================================
   TARQEYAH - MOBILE FIRST REDESIGN
   ========================================== */

:root {
    /* Colors */
    --primary: #4d61f4;
    --secondary: #cb89ff;
    --accent: #d7fe7c;
    --dark: #0a0a0f;
    --light: #ffffff;
    --text: #e0e0e0;
    --text-dim: #a0a0a0;
    --green: #0b3e27;

    /* Spacing - Responsive */
    --gap-xs: 0.5rem;
    --gap-sm: 1rem;
    --gap-md: 1.5rem;
    --gap-lg: 2.5rem;
    --gap-xl: 4rem;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.ar {
    font-family: 'Cairo', 'Inter', sans-serif;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--gap-sm);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--gap-sm);
}

h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--gap-xs);
}

p {
    font-size: clamp(0.9375rem, 2vw, 1rem);
    line-height: 1.7;
    color: var(--text-dim);
}

/* ==========================================
   LAYOUT
   ========================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.section {
    padding: var(--gap-xl) 0;
    position: relative;
}

.section-alt {
    background: rgba(255, 255, 255, 0.02);
}

.section-odoo {
    background: linear-gradient(135deg, rgba(77, 97, 244, 0.06), rgba(11, 62, 39, 0.06));
}

.section-cta {
    background: linear-gradient(135deg, rgba(77, 97, 244, 0.1), rgba(203, 137, 255, 0.06));
}

/* ==========================================
   SECTION HEADERS
   ========================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--gap-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: var(--gap-md);
    backdrop-filter: blur(10px);
}

.section-title {
    background: linear-gradient(135deg, var(--light) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--gap-md);
}

.section-title-sm {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    background: linear-gradient(135deg, var(--light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--gap-sm);
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--accent);
    font-weight: 500;
    margin-bottom: var(--gap-sm);
}

.section-desc {
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    line-height: 1.7;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
}

.section-block {
    margin-bottom: var(--gap-xl);
}

.section-block:last-child {
    margin-bottom: 0;
}

/* ==========================================
   NAVIGATION - FIXED
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .navbar {
        top: 1rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: calc(100% - 2rem);
        max-width: 1100px;
        border-radius: 100px;
        border: 1px solid var(--glass-border);
        padding: 0.75rem 1.5rem;
    }
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.logo-img {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(77, 97, 244, 0.4));
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    list-style: none;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 30px rgba(0, 0, 0, 0.5);
    border-right: 1px solid var(--glass-border);
    z-index: 999;
}

[dir="rtl"] .nav-menu {
    left: auto;
    right: -100%;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: none;
    border-left: 1px solid var(--glass-border);
}

.nav-menu.active {
    left: 0;
}

[dir="rtl"] .nav-menu.active {
    right: 0;
}

@media (min-width: 768px) {
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        gap: 0.5rem;
        background: transparent;
        box-shadow: none;
        border: none;
    }
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid transparent;
}

@media (min-width: 768px) {
    .nav-link {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        border-radius: 100px;
    }
}

.nav-link:hover,
.nav-link.active {
    color: var(--light);
    background: rgba(77, 97, 244, 0.15);
    border-color: rgba(77, 97, 244, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
}

.lang-switch {
    padding: 0.625rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    text-decoration: none;
}

.lang-switch:hover {
    background: rgba(77, 97, 244, 0.2);
    border-color: var(--primary);
    transform: scale(1.05);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    cursor: pointer;
    padding: 0.625rem;
    transition: var(--transition);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle:hover {
    background: rgba(77, 97, 244, 0.15);
    border-color: var(--primary);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--light);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.nav-menu.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 280px;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    z-index: -1;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 3rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 2rem 4rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--secondary), transparent 70%);
    bottom: -80px;
    right: -80px;
    animation-delay: 7s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@media (min-width: 768px) {
    .orb-1 {
        width: 500px;
        height: 500px;
    }

    .orb-2 {
        width: 400px;
        height: 400px;
    }

    .orb-3 {
        width: 350px;
        height: 350px;
    }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    margin-bottom: var(--gap-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--accent);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    margin-bottom: var(--gap-md);
    background: linear-gradient(135deg, var(--light) 0%, var(--primary) 40%, var(--secondary) 80%, var(--accent) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 8s ease infinite;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--text-dim);
    margin-bottom: var(--gap-lg);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--gap-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--gap-lg);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-md);
    flex-wrap: wrap;
    padding: 1.25rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-stats {
        border-radius: 100px;
    }
}

.stat-item {
    text-align: center;
    padding: 0 var(--gap-sm);
}

.stat-number {
    font-size: clamp(1.75rem, 4vw, 2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: clamp(0.8125rem, 2vw, 0.875rem);
    color: var(--text-dim);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}

/* ==========================================
   BUTTONS - MOBILE OPTIMIZED
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .hero-cta .btn {
        width: 100%;
        max-width: 320px;
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

@media (min-width: 768px) {
    .btn:hover::before {
        width: 300px;
        height: 300px;
    }
}

.btn svg {
    transition: var(--transition);
    flex-shrink: 0;
}

.btn:active svg {
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .btn:hover svg {
        transform: translateX(4px);
    }
}

[dir="rtl"] .btn:active svg,
[dir="rtl"] .btn:hover svg {
    transform: translateX(-4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    box-shadow: 0 4px 20px rgba(77, 97, 244, 0.3);
}

.btn-primary:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(77, 97, 244, 0.4);
}

@media (min-width: 768px) {
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(77, 97, 244, 0.5);
    }
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--light);
}

.btn-secondary:active {
    background: rgba(77, 97, 244, 0.15);
    border-color: var(--primary);
    transform: scale(0.98);
}

@media (min-width: 768px) {
    .btn-secondary:hover {
        background: rgba(77, 97, 244, 0.15);
        border-color: var(--primary);
        transform: translateY(-2px);
    }
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

/* ==========================================
   BADGES
   ========================================== */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--gap-sm);
}

.badge-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    box-shadow: 0 4px 15px rgba(77, 97, 244, 0.3);
}

.badge-purple {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--light);
    box-shadow: 0 4px 15px rgba(203, 137, 255, 0.3);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--light);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--light);
}

.content-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(77, 97, 244, 0.15);
    border: 1px solid rgba(77, 97, 244, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--gap-sm);
}

/* ==========================================
   GRIDS - MOBILE FIRST
   ========================================== */

.why-grid,
.solutions-grid,
.process-grid,
.odoo-features-grid,
.industries-grid,
.dual-content,
.tags-grid,
.mindset-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-md);
}

@media (min-width: 640px) {
    .industries-grid,
    .tags-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .why-grid,
    .solutions-grid,
    .odoo-features-grid,
    .mindset-grid,
    .dual-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================
   CARDS - MOBILE OPTIMIZED
   ========================================== */

.why-card,
.solution-card,
.process-step,
.odoo-feature,
.industry-tag,
.content-card,
.tag-item,
.mindset-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .why-card,
    .solution-card,
    .content-card {
        padding: 2rem 1.75rem;
    }
}

/* Why Cards */
.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(77, 97, 244, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.why-card:active::before {
    opacity: 1;
}

@media (min-width: 768px) {
    .why-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: 0 15px 40px rgba(77, 97, 244, 0.2);
    }

    .why-card:hover::before {
        opacity: 1;
    }
}

.why-number {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--gap-sm);
    opacity: 0.8;
}

.why-card-title {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: var(--light);
    margin-bottom: var(--gap-sm);
    font-weight: 700;
}

.why-text {
    font-size: clamp(0.9375rem, 2vw, 1rem);
    color: var(--text-dim);
    line-height: 1.7;
    margin: 0;
}

/* Solution Cards */
.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

@media (min-width: 768px) {
    .solution-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: 0 15px 40px rgba(77, 97, 244, 0.2);
    }

    .solution-card:hover::before {
        transform: scaleX(1);
    }
}

.solution-header {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    margin-bottom: var(--gap-md);
}

.solution-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 97, 244, 0.12);
    border-radius: 14px;
    flex-shrink: 0;
}

.solution-icon-wrapper svg {
    stroke: var(--primary);
}

.solution-title {
    font-size: clamp(1.0625rem, 2.5vw, 1.1875rem);
    color: var(--light);
    font-weight: 700;
    flex: 1;
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    color: var(--text-dim);
    line-height: 1.6;
}

.solution-list li svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    stroke: var(--primary);
    margin-top: 0.25rem;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 1.75rem 1.25rem;
}

@media (min-width: 768px) {
    .process-step:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: 0 12px 35px rgba(77, 97, 244, 0.2);
    }
}

.process-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--gap-sm);
}

.process-step h3 {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--light);
    margin-bottom: var(--gap-xs);
}

.process-step p {
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    color: var(--text-dim);
    line-height: 1.6;
    margin: 0;
}

/* Odoo Features */
.odoo-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.odoo-header {
    text-align: center;
    margin-bottom: var(--gap-lg);
}

.odoo-feature {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    padding: 1.25rem 1rem;
}

@media (min-width: 768px) {
    .odoo-feature:hover {
        background: rgba(77, 97, 244, 0.12);
        border-color: var(--primary);
        transform: translateX(8px);
        box-shadow: 0 8px 25px rgba(77, 97, 244, 0.2);
    }

    [dir="rtl"] .odoo-feature:hover {
        transform: translateX(-8px);
    }
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 97, 244, 0.15);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-icon-box svg {
    stroke: var(--primary);
}

.odoo-feature p {
    font-size: clamp(0.9375rem, 2vw, 1rem);
    color: var(--text);
    margin: 0;
    font-weight: 500;
    flex: 1;
}

/* Industries */
.industry-tag {
    padding: 1rem;
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

@media (min-width: 768px) {
    .industry-tag:hover {
        background: rgba(77, 97, 244, 0.12);
        border-color: var(--primary);
        transform: translateY(-5px);
        color: var(--light);
        box-shadow: 0 8px 20px rgba(77, 97, 244, 0.15);
    }
}

/* Content Cards */
.content-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(77, 97, 244, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

@media (min-width: 768px) {
    .content-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: 0 15px 40px rgba(77, 97, 244, 0.2);
    }

    .content-card:hover::before {
        opacity: 1;
    }
}

.card-highlight {
    border-color: var(--secondary);
}

.card-highlight::before {
    background: radial-gradient(circle, rgba(203, 137, 255, 0.1), transparent 70%);
}

.content-desc {
    font-size: clamp(0.9375rem, 2vw, 1rem);
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: var(--gap-md);
    position: relative;
    z-index: 1;
}

.content-features {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
    position: relative;
    z-index: 1;
}

.feature-item-inline {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    color: var(--text-dim);
}

.feature-item-inline svg {
    flex-shrink: 0;
    stroke: var(--primary);
}

/* Tags Grid */
.tag-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 1rem;
}

@media (min-width: 768px) {
    .tag-item:hover {
        background: rgba(77, 97, 244, 0.12);
        border-color: var(--primary);
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(77, 97, 244, 0.15);
    }
}

.tag-text {
    font-size: clamp(0.9375rem, 2vw, 1rem);
    color: var(--text);
    font-weight: 600;
    text-align: center;
}

/* Mindset Cards */
.mindset-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.5rem;
    gap: var(--gap-sm);
}

@media (min-width: 768px) {
    .mindset-card {
        flex-direction: row;
        text-align: left;
        gap: var(--gap-md);
    }

    .mindset-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary);
        box-shadow: 0 12px 35px rgba(77, 97, 244, 0.2);
    }
}

.mindset-number {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
}

.mindset-text {
    font-size: clamp(0.9375rem, 2vw, 1rem);
    color: var(--text-dim);
    margin: 0;
    line-height: 1.7;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
    .cta-content {
        padding: 3rem 2.5rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    justify-content: center;
    align-items: center;
    margin: var(--gap-lg) 0;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.cta-info {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
    justify-content: center;
    align-items: center;
    padding-top: var(--gap-md);
    border-top: 1px solid var(--glass-border);
    margin-top: var(--gap-md);
}

@media (min-width: 640px) {
    .cta-info {
        flex-direction: row;
        gap: var(--gap-lg);
    }
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-dim);
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
}

.info-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    flex-shrink: 0;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-xl);
    margin-bottom: var(--gap-lg);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--gap-xs);
}

.footer-logo {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(77, 97, 244, 0.4));
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: var(--gap-sm);
}

.social-links {
    display: flex;
    gap: var(--gap-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(0.95);
}

@media (min-width: 768px) {
    .social-link:hover {
        background: var(--primary);
        border-color: var(--primary);
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(77, 97, 244, 0.3);
    }
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--text);
    transition: var(--transition);
}

.social-link:active svg,
.social-link:hover svg {
    fill: var(--light);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-lg);
}

.footer-col h4 {
    font-size: clamp(1rem, 2.5vw, 1.0625rem);
    color: var(--light);
    margin-bottom: var(--gap-sm);
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul li a {
    color: var(--text-dim);
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.footer-col ul li a:active {
    color: var(--primary);
    transform: translateX(5px);
}

@media (min-width: 768px) {
    .footer-col ul li a:hover {
        color: var(--primary);
        transform: translateX(5px);
    }

    [dir="rtl"] .footer-col ul li a:hover {
        transform: translateX(-5px);
    }
}

.footer-bottom {
    text-align: center;
    padding-top: var(--gap-md);
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    font-size: clamp(0.8125rem, 2vw, 0.875rem);
    color: var(--text-dim);
    margin: 0;
}

/* ==========================================
   UTILITIES
   ========================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 10000;
    transition: width 0.1s linear;
}

.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--light);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

[dir="rtl"] .back-to-top {
    right: auto;
    left: 1.5rem;
}

.back-to-top:active {
    background: var(--primary);
    transform: scale(0.95);
}

@media (min-width: 768px) {
    .back-to-top:hover {
        background: var(--primary);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(77, 97, 244, 0.4);
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

@media (prefers-contrast: high) {
    :root {
        --glass-bg: rgba(255, 255, 255, 0.12);
        --glass-border: rgba(255, 255, 255, 0.25);
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .navbar,
    .hero-bg,
    .back-to-top,
    .scroll-progress {
        display: none !important;
    }
}