/* ============================================================
   Injaz Hosting - Glassmorphism Marketing Homepage
   Indigo / Violet Theme with Frosted Glass Effects
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --ij-primary: #4f46e5;
    --ij-primary-dark: #4338ca;
    --ij-primary-light: #818cf8;
    --ij-accent: #7c3aed;
    --ij-accent-light: #a78bfa;
    --ij-dark: #0c0a1d;
    --ij-dark2: #150f2d;
    --ij-gray: #94a3b8;
    --ij-gray-light: #cbd5e1;
    --ij-border: rgba(255,255,255,0.08);
    --ij-border-glass: rgba(255,255,255,0.12);
    --ij-bg: #0c0a1d;
    --ij-bg-alt: #110e24;
    --ij-bg-card: rgba(255,255,255,0.04);
    --ij-bg-card-hover: rgba(255,255,255,0.08);
    --ij-white: #ffffff;
    --ij-success: #10b981;
    --ij-warning: #f59e0b;
    --ij-danger: #ef4444;
    --ij-font: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    --ij-radius: 16px;
    --ij-radius-lg: 24px;
    --ij-radius-xl: 32px;
    --ij-shadow: 0 8px 32px rgba(0,0,0,0.3);
    --ij-shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
    --ij-shadow-glow: 0 0 40px rgba(79,70,229,0.15);
    --ij-shadow-glow-accent: 0 0 40px rgba(124,58,237,0.15);
    --ij-blur: blur(20px);
    --ij-blur-sm: blur(12px);
    --ij-transition: all 0.35s cubic-bezier(.25,.46,.45,.94);
    --ij-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --ij-gradient-text: linear-gradient(135deg, #818cf8, #a78bfa, #c084fc);
}

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

body.injaz-home {
    font-family: var(--ij-font);
    background: var(--ij-bg);
    color: rgba(255,255,255,0.85);
    direction: rtl;
    text-align: right;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--ij-primary-light); text-decoration: none; transition: var(--ij-transition); }
a:hover { color: var(--ij-accent-light); }

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

.ij-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Glass Utility ---------- */
.ij-glass {
    background: var(--ij-bg-card);
    backdrop-filter: var(--ij-blur);
    -webkit-backdrop-filter: var(--ij-blur);
    border: 1px solid var(--ij-border-glass);
    border-radius: var(--ij-radius);
}

/* ---------- Navbar ---------- */
.ij-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(12, 10, 29, 0.6);
    backdrop-filter: var(--ij-blur);
    -webkit-backdrop-filter: var(--ij-blur);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--ij-transition);
}

.ij-nav.scrolled {
    background: rgba(12, 10, 29, 0.92);
    border-bottom-color: rgba(255,255,255,0.1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3), 0 0 60px rgba(79,70,229,0.05);
}

.ij-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.ij-logo {
    display: flex;
    align-items: center;
}

.ij-logo-img {
    height: 40px;
    width: auto;
    transition: var(--ij-transition);
}
.ij-logo:hover .ij-logo-img {
    filter: brightness(1.15);
}

.ij-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.ij-nav-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--ij-transition);
    position: relative;
    padding: 4px 0;
}

.ij-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--ij-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.ij-nav-links a:hover {
    color: var(--ij-white);
}

.ij-nav-links a:hover::after {
    width: 100%;
}

/* ── Products Dropdown ─────────────────────────── */
.ij-dropdown {
    position: relative;
}
.ij-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.ij-dropdown-arrow {
    font-size: 0.6em;
    transition: transform 0.3s ease;
}
.ij-dropdown:hover .ij-dropdown-arrow,
.ij-dropdown.open .ij-dropdown-arrow {
    transform: rotate(180deg);
}
.ij-dropdown-toggle::after {
    display: none !important;
}
.ij-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    right: 50%;
    transform: translateX(50%);
    min-width: 300px;
    background: rgba(15, 13, 35, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50%) translateY(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(79,70,229,0.08);
    z-index: 1001;
}
.ij-dropdown:hover .ij-dropdown-menu,
.ij-dropdown.open .ij-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(0);
}
.ij-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    color: rgba(255,255,255,0.75) !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}
.ij-dropdown-item::after {
    display: none !important;
}
.ij-dropdown-item:hover {
    background: rgba(255,255,255,0.07);
    color: #fff !important;
}
.ij-dropdown-item > i:first-child {
    font-size: 1.25rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.ij-dropdown-title {
    display: block;
    font-weight: 600;
    color: #fff;
    font-size: 0.92rem;
}
.ij-dropdown-desc {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}
.ij-dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 6px 14px;
}
.ij-dropdown-all {
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.82rem;
}
.ij-dropdown-all:hover {
    color: #fff !important;
}
.ij-dd-arrow-icon {
    font-size: 0.7em;
    transition: transform 0.2s;
}
.ij-dropdown-all:hover .ij-dd-arrow-icon {
    transform: translateX(-4px);
}

/* LTR arrow direction */
body.injaz-home-ltr .ij-dd-arrow-icon {
    transform: scaleX(-1);
}
body.injaz-home-ltr .ij-dropdown-all:hover .ij-dd-arrow-icon {
    transform: scaleX(-1) translateX(-4px);
}

/* Light mode dropdown */
body.injaz-home.light-mode .ij-dropdown-menu {
    background: rgba(255,255,255,0.97);
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
}
body.injaz-home.light-mode .ij-dropdown-item {
    color: #475569 !important;
}
body.injaz-home.light-mode .ij-dropdown-item:hover {
    background: rgba(0,0,0,0.04);
    color: #1e293b !important;
}
body.injaz-home.light-mode .ij-dropdown-item > i:first-child {
    background: rgba(0,0,0,0.04);
}
body.injaz-home.light-mode .ij-dropdown-title {
    color: #1e293b;
}
body.injaz-home.light-mode .ij-dropdown-desc {
    color: #94a3b8;
}
body.injaz-home.light-mode .ij-dropdown-divider {
    background: rgba(0,0,0,0.06);
}

.ij-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

#authButtons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ij-user-greeting {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0 4px;
}

/* ---------- Buttons ---------- */
.ij-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 10px;
    font-family: var(--ij-font);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--ij-transition);
    text-decoration: none;
    line-height: 1.4;
}

.ij-btn-primary {
    background: var(--ij-gradient);
    color: var(--ij-white);
    box-shadow: 0 4px 15px rgba(79,70,229,0.3);
}

.ij-btn-primary:hover {
    color: var(--ij-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(79,70,229,0.45), 0 0 20px rgba(124,58,237,0.2);
}

.ij-btn-outline {
    background: rgba(255,255,255,0.05);
    color: var(--ij-white);
    border: 1.5px solid rgba(255,255,255,0.15);
    backdrop-filter: var(--ij-blur-sm);
}

.ij-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: var(--ij-white);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

.ij-btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.7);
    padding: 10px 16px;
}

.ij-btn-ghost:hover {
    color: var(--ij-white);
    background: rgba(255,255,255,0.06);
}

.ij-btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: 12px;
}

.ij-btn-block { width: 100%; }

.ij-btn-white {
    background: var(--ij-white);
    color: var(--ij-primary);
    font-weight: 700;
}

.ij-btn-white:hover {
    background: rgba(255,255,255,0.92);
    color: var(--ij-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Mobile menu toggle */
.ij-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ij-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* ---------- Hero ---------- */
.ij-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background: var(--ij-bg);
    overflow: hidden;
}

/* Gradient mesh orbs */
.ij-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79,70,229,0.25) 0%, transparent 70%);
    pointer-events: none;
    animation: orbFloat1 12s ease-in-out infinite;
}

.ij-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: orbFloat2 15s ease-in-out infinite;
}

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

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.08); }
    66% { transform: translate(20px, -40px) scale(0.92); }
}

/* Grid pattern */
.ij-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.ij-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.ij-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,70,229,0.12);
    border: 1px solid rgba(79,70,229,0.25);
    color: var(--ij-accent-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: var(--ij-blur-sm);
}

.ij-hero-badge i {
    font-size: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.ij-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--ij-white);
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ij-hero h1 span {
    background: var(--ij-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ij-hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.9;
    margin-bottom: 36px;
    max-width: 560px;
}

.ij-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ij-hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.ij-hero-stat {
    text-align: center;
}

.ij-hero-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ij-white);
}

.ij-hero-stat-txt {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}

/* ---------- Trust Bar ---------- */
.ij-trust {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 22px 0;
    position: relative;
}

.ij-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ij-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--ij-transition);
}

.ij-trust-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

.ij-trust-item i {
    font-size: 0.95rem;
    color: var(--ij-primary-light);
}

/* ---------- Section Shared ---------- */
.ij-section {
    padding: 90px 0;
    position: relative;
}

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

.ij-section-head {
    text-align: center;
    margin-bottom: 56px;
}

.ij-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ij-white);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.ij-section-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.45);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---------- Pricing / Packages ---------- */
.ij-pricing-group {
    margin-bottom: 72px;
}
.ij-pricing-group:last-child {
    margin-bottom: 0;
}
.ij-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.ij-group-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ij-white);
}
.ij-group-name i {
    color: var(--ij-primary-light);
    margin-left: 8px;
}
.ij-group-tagline {
    color: rgba(255,255,255,0.4);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

/* ---------- Billing Cycle Toggle ---------- */
.ij-cycle-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.ij-cycle-toggle {
    display: inline-flex;
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 60px;
    padding: 4px;
    backdrop-filter: var(--ij-blur-sm);
    -webkit-backdrop-filter: var(--ij-blur-sm);
}
.ij-cycle-slider {
    position: absolute;
    top: 4px;
    height: calc(100% - 8px);
    background: var(--ij-gradient);
    border-radius: 56px;
    transition: left 0.35s cubic-bezier(.25,.46,.45,.94), width 0.35s cubic-bezier(.25,.46,.45,.94);
    box-shadow: 0 4px 15px rgba(79,70,229,0.35);
    z-index: 0;
}
.ij-cycle-btn {
    position: relative;
    z-index: 1;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-family: var(--ij-font);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 24px;
    cursor: pointer;
    transition: color 0.25s;
    white-space: nowrap;
    border-radius: 56px;
}
.ij-cycle-btn:hover {
    color: rgba(255,255,255,0.8);
}
.ij-cycle-btn.active {
    color: #fff;
}
.ij-cycle-save {
    display: inline-block;
    background: rgba(16,185,129,0.2);
    color: #34d399;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-right: 6px;
    vertical-align: middle;
}
.ij-cycle-btn.active .ij-cycle-save {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* ---------- Plans Grid ---------- */
.ij-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch;
}

/* ---------- Plan Card - Glassmorphism ---------- */
.ij-plan-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--ij-radius-lg);
    padding: 0;
    transition: var(--ij-transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: var(--ij-blur-sm);
    -webkit-backdrop-filter: var(--ij-blur-sm);
}

.ij-plan-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0; left: 0;
    height: 3px;
    background: var(--plan-color, var(--ij-gradient));
    opacity: 0;
    transition: opacity 0.35s;
}

.ij-plan-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), var(--ij-shadow-glow);
}

.ij-plan-card:hover::before {
    opacity: 1;
}

/* Featured card */
.ij-plan-card.featured {
    background: rgba(79,70,229,0.08);
    border-color: rgba(79,70,229,0.25);
    box-shadow: 0 0 50px rgba(79,70,229,0.1), 0 16px 48px rgba(0,0,0,0.2);
    transform: scale(1.03);
    z-index: 2;
}
.ij-plan-card.featured::before {
    opacity: 1;
    height: 3px;
    background: var(--ij-gradient);
}
.ij-plan-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 0 70px rgba(79,70,229,0.18), 0 24px 64px rgba(0,0,0,0.3);
    border-color: rgba(79,70,229,0.35);
}

/* Free plan card */
.ij-plan-card.free-plan {
    border-color: rgba(16,185,129,0.15);
}
.ij-plan-card.free-plan::before {
    background: linear-gradient(135deg, #10b981, #34d399);
    opacity: 1;
}

/* ---------- Badges ---------- */
.ij-plan-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    letter-spacing: 0.02em;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.ij-plan-badge.popular {
    background: var(--ij-gradient);
    box-shadow: 0 4px 15px rgba(79,70,229,0.4);
}
.ij-plan-badge.free-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16,185,129,0.4);
}

/* ---------- Card Header ---------- */
.ij-plan-head {
    padding: 32px 28px 0;
    text-align: center;
}
.ij-plan-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    position: relative;
}
.ij-plan-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: inherit;
    opacity: 0.25;
    filter: blur(10px);
}
.ij-plan-icon i {
    font-size: 1.3rem;
    color: #fff;
    position: relative;
    z-index: 1;
}
.ij-plan-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ij-white);
    margin-bottom: 4px;
}
.ij-plan-tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    margin-bottom: 0;
}

/* ---------- Price Block ---------- */
.ij-plan-price {
    text-align: center;
    padding: 20px 28px 16px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ij-plan-price-amount {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--ij-white);
    line-height: 1.1;
    transition: all 0.3s;
}
.ij-plan-price-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    vertical-align: super;
    margin-left: 2px;
}
.ij-plan-price-suffix {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    margin-right: 4px;
}
.ij-plan-price-period {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    display: block;
    margin-top: 4px;
}
.ij-plan-price-equiv {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    margin-top: 6px;
}
.ij-plan-save-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(16,185,129,0.15);
    color: #34d399;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    margin-top: 8px;
}
.ij-plan-save-badge i {
    font-size: 0.6rem;
}
.ij-plan-price-free {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Divider ---------- */
.ij-plan-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0 28px;
}

/* ---------- Features List ---------- */
.ij-plan-body {
    padding: 20px 28px;
    flex-grow: 1;
}
.ij-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ij-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}
.ij-plan-features li i {
    color: var(--ij-success);
    font-size: 0.7rem;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(16,185,129,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.ij-plan-features li span {
    flex: 1;
}
.ij-plan-features li strong {
    color: var(--ij-white);
    font-weight: 700;
}

/* ---------- CTA ---------- */
.ij-plan-footer {
    padding: 0 28px 28px;
    margin-top: auto;
}
.ij-plan-cta {
    background: rgba(255,255,255,0.06);
    color: var(--ij-white);
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-family: var(--ij-font);
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: var(--ij-transition);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}
.ij-plan-cta i {
    font-size: 0.8rem;
    transition: transform 0.25s;
}
.ij-plan-cta:hover {
    background: var(--ij-gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79,70,229,0.35);
}
.ij-plan-cta:hover i {
    transform: translateX(-4px);
}
.ij-plan-cta:active {
    transform: translateY(0);
}
.ij-plan-cta.featured {
    background: var(--ij-gradient);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(79,70,229,0.3);
}
.ij-plan-cta.featured:hover {
    box-shadow: 0 8px 30px rgba(79,70,229,0.5);
}

/* Group link */
.ij-group-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ij-primary-light);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 16px;
    transition: var(--ij-transition);
}
.ij-group-link:hover {
    color: var(--ij-accent-light);
    gap: 10px;
}

/* Loading state */
.ij-plans-loading {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255,255,255,0.4);
}
.ij-plans-loading .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.08);
    border-top-color: var(--ij-primary-light);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---------- Domain Search ---------- */
.ij-domain {
    background: rgba(255,255,255,0.02);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ij-domain::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79,70,229,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.ij-domain-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ij-domain h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ij-white);
    margin-bottom: 12px;
}

.ij-domain p {
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
    font-size: 1rem;
}

.ij-domain-form {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: var(--ij-blur);
    -webkit-backdrop-filter: var(--ij-blur);
    transition: var(--ij-transition);
}

.ij-domain-form:focus-within {
    border-color: rgba(79,70,229,0.4);
    box-shadow: 0 0 30px rgba(79,70,229,0.12);
}

.ij-domain-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-family: var(--ij-font);
    font-size: 1rem;
    color: var(--ij-white);
    direction: ltr;
    text-align: left;
    outline: none;
    background: transparent;
}

.ij-domain-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.ij-domain-btn {
    padding: 16px 32px;
    background: var(--ij-gradient);
    color: var(--ij-white);
    border: none;
    font-family: var(--ij-font);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ij-transition);
    white-space: nowrap;
}

.ij-domain-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 20px rgba(79,70,229,0.3);
}

.ij-domain-tlds {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.ij-domain-tld {
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
    font-weight: 600;
}

.ij-domain-tld strong {
    color: rgba(255,255,255,0.55);
}

/* ---------- Features Section ---------- */
.ij-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.ij-feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--ij-radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--ij-transition);
    backdrop-filter: var(--ij-blur-sm);
    -webkit-backdrop-filter: var(--ij-blur-sm);
}

.ij-feature-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(79,70,229,0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2), 0 0 30px rgba(79,70,229,0.08);
}

.ij-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(79,70,229,0.12);
    border: 1px solid rgba(79,70,229,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--ij-transition);
}

.ij-feature-card:hover .ij-feature-icon {
    background: rgba(79,70,229,0.2);
    box-shadow: 0 0 25px rgba(79,70,229,0.2);
}

.ij-feature-icon i {
    font-size: 1.4rem;
    color: var(--ij-primary-light);
}

.ij-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ij-white);
    margin-bottom: 8px;
}

.ij-feature-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}

/* ---------- Stats ---------- */
.ij-stats {
    background: rgba(255,255,255,0.02);
    padding: 64px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ij-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.ij-stat {
    padding: 20px;
    border-radius: var(--ij-radius);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--ij-transition);
}

.ij-stat:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
}

.ij-stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--ij-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1.2;
}

.ij-stat-txt {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

/* ---------- ERPNext Section ---------- */
.ij-erp {
    position: relative;
    overflow: hidden;
}

.ij-erp-card {
    background: rgba(79,70,229,0.06);
    border: 1px solid rgba(79,70,229,0.15);
    border-radius: var(--ij-radius-xl);
    padding: 56px 48px;
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--ij-blur);
    -webkit-backdrop-filter: var(--ij-blur);
}

.ij-erp-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79,70,229,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.ij-erp-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.ij-erp-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ij-white);
    margin-bottom: 16px;
}

.ij-erp-content p {
    color: rgba(255,255,255,0.5);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 500px;
}

.ij-erp-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.ij-erp-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.ij-erp-feat i {
    color: var(--ij-success);
    font-size: 0.7rem;
}

.ij-erp-visual {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.ij-erp-visual-box {
    width: 280px;
    height: 200px;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: var(--ij-blur);
    -webkit-backdrop-filter: var(--ij-blur);
}

.ij-erp-visual-box i {
    font-size: 4rem;
    color: rgba(79,70,229,0.3);
}

/* ---------- Support Links ---------- */
.ij-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.ij-support-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 32px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--ij-radius);
    transition: var(--ij-transition);
    text-align: center;
    backdrop-filter: var(--ij-blur-sm);
    -webkit-backdrop-filter: var(--ij-blur-sm);
}

.ij-support-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(79,70,229,0.25);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2), 0 0 25px rgba(79,70,229,0.08);
    color: var(--ij-white);
}

.ij-support-card i {
    font-size: 1.6rem;
    color: var(--ij-primary-light);
    transition: var(--ij-transition);
}

.ij-support-card:hover i {
    text-shadow: 0 0 20px rgba(79,70,229,0.5);
}

.ij-support-card span {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

/* ---------- CTA ---------- */
.ij-cta {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(79,70,229,0.15) 0%, rgba(124,58,237,0.1) 100%);
    border-top: 1px solid rgba(79,70,229,0.15);
    border-bottom: 1px solid rgba(79,70,229,0.15);
}

.ij-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79,70,229,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.ij-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ij-white);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.ij-cta p {
    color: rgba(255,255,255,0.55);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.ij-cta .ij-btn {
    position: relative;
    z-index: 2;
}

/* ---------- Footer ---------- */
.ij-footer {
    background: rgba(0,0,0,0.3);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.45);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.ij-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.ij-footer-brand h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ij-white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ij-footer-brand h3 i {
    background: var(--ij-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ij-footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
}

.ij-footer-col h4 {
    color: var(--ij-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.ij-footer-col ul {
    list-style: none;
    padding: 0;
}

.ij-footer-col li {
    margin-bottom: 10px;
}

.ij-footer-col a {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    transition: var(--ij-transition);
}

.ij-footer-col a:hover {
    color: var(--ij-primary-light);
}

.ij-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.25);
}

/* ---------- Products Grid ---------- */
.ij-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.ij-product-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--ij-radius-xl);
    padding: 32px 28px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.ij-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px -10px rgba(14,165,233,0.15);
    border-color: rgba(14,165,233,0.25);
}

.ij-product-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.ij-product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ij-white);
    margin-bottom: 12px;
}

.ij-product-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ij-product-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ij-product-feats li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
}

.ij-product-feats li i {
    color: #10b981;
    font-size: 0.8rem;
}

.ij-product-btn {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    color: var(--ij-white);
    padding: 10px 24px;
    border-radius: var(--ij-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.12);
}

.ij-product-btn:hover {
    background: var(--ij-primary);
    border-color: var(--ij-primary);
    color: #fff;
}

/* ---------- PMPTask Section ---------- */
.ij-pmp {
    padding: 80px 0;
}

.ij-pmp-card {
    background: rgba(14,165,233,0.06);
    border: 1px solid rgba(14,165,233,0.15);
    border-radius: var(--ij-radius-xl);
    padding: 56px 48px;
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--ij-blur);
    -webkit-backdrop-filter: var(--ij-blur);
}

.ij-pmp-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.ij-pmp-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.ij-pmp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14,165,233,0.15);
    color: #0ea5e9;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.ij-pmp-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ij-white);
    margin-bottom: 16px;
}

.ij-pmp-content p {
    color: rgba(255,255,255,0.5);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 500px;
}

.ij-pmp-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.ij-pmp-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}

.ij-pmp-feat i {
    color: #0ea5e9;
    font-size: 0.85rem;
}

.ij-btn-pmp {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff !important;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ij-btn-pmp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14,165,233,0.4);
    color: #fff !important;
}

.ij-pmp-visual {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.ij-pmp-visual-box {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(99,102,241,0.15));
    border: 1px solid rgba(14,165,233,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #0ea5e9;
    position: relative;
}

.ij-pmp-pulse {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(14,165,233,0.2);
    border-radius: 50%;
    animation: ij-pmp-pulse 2s ease-in-out infinite;
}

@keyframes ij-pmp-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .ij-hero h1 {
        font-size: 2.4rem;
    }

    .ij-hero-sub {
        font-size: 1.05rem;
    }

    .ij-hero-stats {
        gap: 24px;
    }

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

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

    .ij-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ij-erp-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }

    .ij-erp-content p {
        max-width: 100%;
    }

    .ij-erp-features {
        justify-content: center;
    }

    .ij-pmp-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
    }

    .ij-pmp-content p {
        max-width: 100%;
    }

    .ij-pmp-features {
        justify-content: center;
    }

    .ij-products-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .ij-nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0; right: 0;
        background: rgba(12, 10, 29, 0.97);
        backdrop-filter: var(--ij-blur);
        -webkit-backdrop-filter: var(--ij-blur);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .ij-nav-links.open {
        display: flex;
    }

    /* Mobile dropdown */
    .ij-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        min-width: auto;
        background: rgba(255,255,255,0.04);
        border: none;
        border-radius: 12px;
        box-shadow: none;
        padding: 8px;
        margin-top: 8px;
        display: none;
    }
    .ij-dropdown.open .ij-dropdown-menu {
        display: block;
    }
    .ij-dropdown-item {
        padding: 10px 12px;
    }
    .ij-dropdown-item > i:first-child {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    body.injaz-home.light-mode .ij-dropdown-menu {
        background: rgba(0,0,0,0.04);
    }

    .ij-menu-toggle {
        display: block;
    }

    .ij-hero {
        padding: 120px 0 70px;
        min-height: auto;
    }

    .ij-hero h1 {
        font-size: 2rem;
    }

    .ij-hero-stats {
        gap: 16px;
    }

    .ij-hero-stat-num {
        font-size: 1.4rem;
    }

    .ij-section {
        padding: 60px 0;
    }

    .ij-section-title {
        font-size: 1.7rem;
    }

    .ij-plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ij-plan-card.featured {
        transform: none;
    }
    .ij-plan-card.featured:hover {
        transform: translateY(-6px);
    }

    .ij-cycle-toggle {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .ij-cycle-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
    .ij-cycle-save {
        font-size: 0.58rem;
        padding: 1px 6px;
    }

    .ij-domain-form {
        flex-direction: column;
        border-radius: 16px;
    }

    .ij-domain-input {
        text-align: center;
    }

    .ij-domain-btn {
        border-radius: 0 0 16px 16px;
    }

    .ij-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ij-stat-num {
        font-size: 1.8rem;
    }

    .ij-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ij-footer-brand p {
        max-width: 100%;
    }

    .ij-erp-visual {
        display: none;
    }

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

@media (max-width: 480px) {
    .ij-hero h1 {
        font-size: 1.6rem;
    }

    .ij-hero-sub {
        font-size: 0.95rem;
    }

    .ij-hero-btns {
        flex-direction: column;
    }

    .ij-hero-stats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .ij-trust-inner {
        gap: 12px;
    }

    .ij-trust-item {
        font-size: 0.78rem;
        padding: 5px 12px;
    }

    .ij-domain-tlds {
        gap: 12px;
    }

    .ij-support-grid {
        grid-template-columns: 1fr;
    }

    .ij-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ij-animate {
    opacity: 0;
    transform: translateY(24px);
}

.ij-animate.visible {
    animation: fadeInUp 0.6s ease forwards;
}

.ij-animate.visible:nth-child(1) { animation-delay: 0s; }
.ij-animate.visible:nth-child(2) { animation-delay: 0.1s; }
.ij-animate.visible:nth-child(3) { animation-delay: 0.15s; }
.ij-animate.visible:nth-child(4) { animation-delay: 0.2s; }
.ij-animate.visible:nth-child(5) { animation-delay: 0.25s; }
.ij-animate.visible:nth-child(6) { animation-delay: 0.3s; }

/* ---------- Switcher Buttons (Lang / Currency) ---------- */
.ij-switcher-btn {
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 8px;
    padding: 6px 12px !important;
    font-size: 0.82rem !important;
    gap: 6px;
    min-width: auto;
    backdrop-filter: var(--ij-blur-sm);
}

.ij-switcher-btn:hover {
    border-color: rgba(255,255,255,0.2) !important;
    background: rgba(255,255,255,0.06);
}

.ij-switcher-btn i {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ---------- LTR Overrides (English mode) ---------- */
body.injaz-home-ltr {
    direction: ltr;
    text-align: left;
    font-family: 'Inter', 'Cairo', 'Segoe UI', Tahoma, sans-serif;
}

body.injaz-home-ltr .ij-nav-links a::after {
    right: auto;
    left: 0;
}

body.injaz-home-ltr .ij-group-name i {
    margin-left: 0;
    margin-right: 8px;
}

body.injaz-home-ltr .ij-hero-content {
    text-align: left;
}

body.injaz-home-ltr .ij-hero-badge {
    text-align: left;
}

body.injaz-home-ltr .ij-erp-content {
    text-align: left;
}

body.injaz-home-ltr .ij-erp-content p {
    text-align: left;
}

body.injaz-home-ltr .ij-footer-brand h3 {
    justify-content: flex-start;
}

body.injaz-home-ltr .ij-plan-badge {
    left: auto;
    right: 14px;
}
body.injaz-home-ltr .ij-plan-cta i {
    transform: scaleX(-1);
}
body.injaz-home-ltr .ij-plan-cta:hover i {
    transform: scaleX(-1) translateX(-4px);
}
body.injaz-home-ltr .ij-plan-price-currency {
    margin-left: 0;
    margin-right: 2px;
}
body.injaz-home-ltr .ij-plan-price-suffix {
    margin-right: 0;
    margin-left: 4px;
}
body.injaz-home-ltr .ij-cycle-save {
    margin-right: 0;
    margin-left: 6px;
}

body.injaz-home-ltr .ij-section-head,
body.injaz-home-ltr .ij-trust-inner,
body.injaz-home-ltr .ij-domain-inner,
body.injaz-home-ltr .ij-stats-grid,
body.injaz-home-ltr .ij-cta {
    text-align: center;
}

body.injaz-home-ltr .ij-feature-card {
    text-align: center;
}

body.injaz-home-ltr .ij-support-card {
    text-align: center;
}

body.injaz-home-ltr .ij-domain-input {
    direction: ltr;
    text-align: left;
}

body.injaz-home-ltr .ij-footer-col {
    text-align: left;
}

body.injaz-home-ltr .ij-footer-brand {
    text-align: left;
}

@media (max-width: 768px) {
    body.injaz-home-ltr .ij-footer-col,
    body.injaz-home-ltr .ij-footer-brand {
        text-align: center;
    }

    body.injaz-home-ltr .ij-hero-content {
        text-align: center;
    }

    body.injaz-home-ltr .ij-erp-content {
        text-align: center;
    }

    .ij-nav-actions {
        flex-wrap: wrap;
        gap: 8px;
    }

    .ij-switcher-btn {
        padding: 4px 10px !important;
    }
}

/* ---------- Extra-small screens ---------- */
@media (max-width: 360px) {
    .ij-hero h1 { font-size: 1.35rem; }
    .ij-hero p { font-size: 0.85rem; }
    .ij-section-title { font-size: 1.2rem; }
    .ij-pricing-price { font-size: 1.8rem; }
    .ij-pricing-card { padding: 24px 16px; }
    .ij-erp-card { padding: 28px 16px; }
    .ij-pmp-card { padding: 28px 16px; }
    .ij-hero-btns .ij-btn { padding: 12px 20px; font-size: 0.85rem; }
    .ij-domain-input { font-size: 0.85rem; padding: 12px; }
    .ij-domain-btn { padding: 12px 16px; font-size: 0.85rem; }
    .ij-footer { padding: 40px 16px 20px; }
}

/* ---------- Tablet landscape ---------- */
@media (min-width: 769px) and (max-width: 1024px) {
    .ij-pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .ij-hero h1 { font-size: 2.2rem; }
    .ij-nav-links a { font-size: 0.85rem; margin: 0 10px; }
}

/* ---------- RTL refinements ---------- */
body:not(.injaz-home-ltr) .ij-pricing-feature i {
    margin-left: 8px;
    margin-right: 0;
}
body.injaz-home-ltr .ij-pricing-feature i {
    margin-right: 8px;
    margin-left: 0;
}

body:not(.injaz-home-ltr) .ij-footer-links {
    text-align: right;
}
body.injaz-home-ltr .ij-footer-links {
    text-align: left;
}

body:not(.injaz-home-ltr) .ij-trust-item {
    direction: rtl;
}

body:not(.injaz-home-ltr) .ij-nav-logo {
    margin-left: auto;
    margin-right: 0;
}
body.injaz-home-ltr .ij-nav-logo {
    margin-right: auto;
    margin-left: 0;
}

/* ---------- Reduced Motion ---------- */
/* ============ OpenClaw AI Section ============ */
.ij-openclaw {
    padding: 60px 0;
}

.ij-openclaw-card {
    background: rgba(233,69,96,0.06);
    border: 1px solid rgba(233,69,96,0.15);
    border-radius: var(--ij-radius-xl);
    padding: 56px 48px;
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--ij-blur);
    -webkit-backdrop-filter: var(--ij-blur);
}

.ij-openclaw-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233,69,96,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.ij-openclaw-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.ij-openclaw-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #e94560, #0f3460);
    color: #fff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: ij-openclaw-glow 2s ease-in-out infinite alternate;
}

@keyframes ij-openclaw-glow {
    from { box-shadow: 0 0 10px rgba(233,69,96,0.3); }
    to { box-shadow: 0 0 25px rgba(233,69,96,0.5); }
}

.ij-openclaw-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ij-white);
    margin-bottom: 16px;
}

.ij-openclaw-content p {
    color: rgba(255,255,255,0.5);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 550px;
}

.ij-openclaw-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.ij-openclaw-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
}

.ij-openclaw-feat i {
    color: #e94560;
    font-size: 0.85rem;
}

.ij-openclaw-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ij-btn-openclaw {
    background: linear-gradient(135deg, #e94560, #0f3460);
    color: #fff !important;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ij-btn-openclaw:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,69,96,0.4);
    color: #fff !important;
}

.ij-btn-openclaw-outline {
    background: transparent;
    color: #e94560 !important;
    border: 2px solid rgba(233,69,96,0.4);
    transition: all 0.2s;
}

.ij-btn-openclaw-outline:hover {
    background: rgba(233,69,96,0.1);
    border-color: #e94560;
    color: #e94560 !important;
}

.ij-openclaw-visual {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.ij-openclaw-visual-box {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(233,69,96,0.15), rgba(15,52,96,0.15));
    border: 1px solid rgba(233,69,96,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #e94560;
    position: relative;
}

.ij-openclaw-pulse {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(233,69,96,0.2);
    border-radius: 50%;
    animation: ij-pulse 2s ease-in-out infinite;
}

@keyframes ij-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

@media (max-width: 768px) {
    .ij-openclaw-card {
        flex-direction: column;
        padding: 36px 24px;
        text-align: center;
    }
    .ij-openclaw-content p { max-width: 100%; }
    .ij-openclaw-features { justify-content: center; }
    .ij-openclaw-btns { justify-content: center; }
    .ij-openclaw-visual-box { width: 120px; height: 120px; font-size: 2.5rem; }
    .ij-pmp-card { padding: 36px 24px; }
    .ij-pmp-visual-box { width: 120px; height: 120px; font-size: 2.5rem; }
    .ij-pmp-features { justify-content: center; }
    .ij-products-grid { grid-template-columns: 1fr; }
}

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

/* ============================================================
   Enhanced Sections - Added March 2026
   ============================================================ */

/* ---------- Announcement Bar ---------- */
.ij-announcement-bar {
    background: var(--ij-gradient);
    color: var(--ij-white);
    text-align: center;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.ij-announcement-bar a {
    color: var(--ij-white);
    text-decoration: underline;
    font-weight: 700;
}
.ij-announcement-bar .ij-announce-close {
    position: absolute;
    left: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    transition: var(--ij-transition);
}
body.injaz-home-ltr .ij-announcement-bar .ij-announce-close {
    left: auto;
    right: 16px;
}
.ij-announcement-bar .ij-announce-close:hover {
    color: var(--ij-white);
}
.ij-announcement-bar.hidden {
    display: none;
}
/* Adjust navbar top when announcement visible */
body.injaz-home.has-announcement .ij-nav {
    top: 42px;
}
body.injaz-home.has-announcement .ij-hero {
    padding-top: calc(160px + 42px);
}

/* ---------- How It Works ---------- */
.ij-howto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    padding: 20px 0;
}
.ij-howto-step {
    text-align: center;
    position: relative;
}
.ij-howto-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--ij-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ij-white);
    box-shadow: 0 8px 30px rgba(79,70,229,0.3);
    position: relative;
    z-index: 2;
}
.ij-howto-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ij-white);
    margin-bottom: 8px;
}
.ij-howto-step p {
    color: var(--ij-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}
.ij-howto-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    background: var(--ij-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Arrow connector between steps */
.ij-howto-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    left: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--ij-primary), var(--ij-accent));
    opacity: 0.4;
}
body.injaz-home-ltr .ij-howto-step:not(:last-child)::after {
    left: auto;
    right: -20px;
}

@media (max-width: 768px) {
    .ij-howto-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ij-howto-step:not(:last-child)::after {
        display: none;
    }
}

/* ---------- Hero Visual ---------- */
.ij-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.ij-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ij-server-illustration {
    position: relative;
    width: 280px;
    height: 320px;
}
.ij-server-box {
    width: 200px;
    height: 260px;
    background: linear-gradient(180deg, rgba(79,70,229,0.15) 0%, rgba(124,58,237,0.08) 100%);
    border: 1px solid rgba(79,70,229,0.25);
    border-radius: 20px;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    gap: 16px;
    backdrop-filter: blur(10px);
}
.ij-server-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ij-success);
    box-shadow: 0 0 12px rgba(16,185,129,0.6);
    animation: pulse 2s infinite;
}
.ij-server-line {
    width: 80%;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
}
.ij-server-line.active {
    background: linear-gradient(90deg, var(--ij-primary), var(--ij-accent));
    opacity: 0.6;
}
.ij-cloud-icon {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2.5rem;
    color: var(--ij-primary-light);
    opacity: 0.4;
    animation: orbFloat1 6s ease-in-out infinite;
}
.ij-shield-icon {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 1.8rem;
    color: var(--ij-success);
    opacity: 0.5;
    animation: orbFloat2 8s ease-in-out infinite;
}

@media (max-width: 768px) {
    .ij-hero-layout {
        grid-template-columns: 1fr;
    }
    .ij-hero-visual {
        display: none;
    }
}

/* ---------- Browser Mockup ---------- */
.ij-browser-mockup {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}
.ij-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ij-browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.ij-browser-dot.red { background: #ef4444; }
.ij-browser-dot.yellow { background: #f59e0b; }
.ij-browser-dot.green { background: #10b981; }
.ij-browser-url {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.7rem;
    color: var(--ij-gray);
    margin-right: 8px;
    margin-left: 8px;
    text-align: center;
}
.ij-browser-body {
    padding: 20px;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--ij-gray);
    font-size: 0.85rem;
}
.ij-browser-body i {
    font-size: 2.5rem;
    opacity: 0.3;
    margin-bottom: 8px;
}

/* ---------- Testimonials ---------- */
.ij-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ij-testimonial-card {
    background: var(--ij-bg-card);
    backdrop-filter: var(--ij-blur-sm);
    -webkit-backdrop-filter: var(--ij-blur-sm);
    border: 1px solid var(--ij-border-glass);
    border-radius: var(--ij-radius);
    padding: 32px 24px;
    transition: var(--ij-transition);
    position: relative;
}
.ij-testimonial-card:hover {
    transform: translateY(-4px);
    background: var(--ij-bg-card-hover);
    box-shadow: var(--ij-shadow-glow);
}
.ij-testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
    font-style: italic;
}
.ij-testimonial-quote::before {
    content: '\201C';
    font-size: 2.5rem;
    color: var(--ij-primary-light);
    opacity: 0.5;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.ij-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ij-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ij-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ij-white);
}
.ij-testimonial-name {
    font-weight: 600;
    color: var(--ij-white);
    font-size: 0.95rem;
}
.ij-testimonial-role {
    color: var(--ij-gray);
    font-size: 0.8rem;
}
.ij-testimonial-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
@media (max-width: 768px) {
    .ij-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- FAQ Accordion ---------- */
.ij-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ij-faq-item {
    background: var(--ij-bg-card);
    border: 1px solid var(--ij-border-glass);
    border-radius: var(--ij-radius);
    overflow: hidden;
    transition: var(--ij-transition);
}
.ij-faq-item:hover {
    border-color: rgba(79,70,229,0.3);
}
.ij-faq-item.active {
    border-color: rgba(79,70,229,0.4);
    background: var(--ij-bg-card-hover);
}
.ij-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    transition: var(--ij-transition);
    gap: 16px;
    user-select: none;
}
.ij-faq-q:hover {
    color: var(--ij-white);
}
.ij-faq-q i {
    font-size: 0.85rem;
    color: var(--ij-primary-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.ij-faq-item.active .ij-faq-q i {
    transform: rotate(180deg);
}
.ij-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.ij-faq-item.active .ij-faq-a {
    max-height: 300px;
    padding: 0 24px 18px;
}
.ij-faq-a p {
    color: var(--ij-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ---------- Comparison Table ---------- */
.ij-comparison-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 40px;
}
.ij-comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--ij-bg-card);
    border: 1px solid var(--ij-border-glass);
    border-radius: var(--ij-radius);
    overflow: hidden;
}
.ij-comparison-table th,
.ij-comparison-table td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid var(--ij-border);
    font-size: 0.9rem;
}
.ij-comparison-table th {
    background: rgba(79,70,229,0.1);
    color: var(--ij-white);
    font-weight: 700;
    font-size: 0.95rem;
}
.ij-comparison-table th:first-child,
.ij-comparison-table td:first-child {
    text-align: right;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}
body.injaz-home-ltr .ij-comparison-table th:first-child,
body.injaz-home-ltr .ij-comparison-table td:first-child {
    text-align: left;
}
.ij-comparison-table tr:last-child td {
    border-bottom: none;
}
.ij-comparison-table .check {
    color: var(--ij-success);
    font-size: 1.1rem;
}
.ij-comparison-table .cross {
    color: rgba(255,255,255,0.2);
    font-size: 1.1rem;
}
.ij-comparison-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

/* ---------- WhatsApp Float ---------- */
.ij-whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
}
body.injaz-home-ltr .ij-whatsapp-float {
    left: auto;
    right: 28px;
}
.ij-whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--ij-transition);
    text-decoration: none;
    animation: waFloat 3s ease-in-out infinite;
}
.ij-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
    color: white;
}
.ij-whatsapp-tooltip {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--ij-transition);
    pointer-events: none;
}
body.injaz-home-ltr .ij-whatsapp-tooltip {
    transform: translateX(-10px);
}
.ij-whatsapp-float:hover .ij-whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}
@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ---------- Light Mode ---------- */
body.injaz-home.light-mode {
    --ij-bg: #f8fafc;
    --ij-bg-alt: #f1f5f9;
    --ij-bg-card: rgba(0,0,0,0.03);
    --ij-bg-card-hover: rgba(0,0,0,0.06);
    --ij-white: #1e293b;
    --ij-dark: #f8fafc;
    --ij-dark2: #f1f5f9;
    --ij-border: rgba(0,0,0,0.08);
    --ij-border-glass: rgba(0,0,0,0.1);
    --ij-gray: #64748b;
    --ij-gray-light: #475569;
    --ij-shadow: 0 8px 32px rgba(0,0,0,0.08);
    --ij-shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --ij-shadow-glow: 0 0 40px rgba(79,70,229,0.08);
    --ij-shadow-glow-accent: 0 0 40px rgba(124,58,237,0.08);
    color: #1e293b;
}
/* Body base text in light mode */
body.injaz-home.light-mode {
    color: #334155;
}
/* Navbar */
body.injaz-home.light-mode .ij-nav {
    background: rgba(248,250,252,0.85);
    border-bottom-color: rgba(0,0,0,0.06);
}
body.injaz-home.light-mode .ij-nav.scrolled {
    background: rgba(248,250,252,0.95);
    border-bottom-color: rgba(0,0,0,0.1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
body.injaz-home.light-mode .ij-nav-links a {
    color: #475569;
}
body.injaz-home.light-mode .ij-nav-links a:hover {
    color: #1e293b;
}
/* All headings */
body.injaz-home.light-mode h1,
body.injaz-home.light-mode h2,
body.injaz-home.light-mode h3,
body.injaz-home.light-mode h4,
body.injaz-home.light-mode .ij-hero h1,
body.injaz-home.light-mode .ij-section-title {
    color: #1e293b;
}
/* All paragraphs & descriptions */
body.injaz-home.light-mode p,
body.injaz-home.light-mode .ij-hero-sub,
body.injaz-home.light-mode .ij-section-desc {
    color: #475569;
}
/* Hero stats */
body.injaz-home.light-mode .ij-hero-stat-num,
body.injaz-home.light-mode .ij-stat-num {
    color: #1e293b;
}
body.injaz-home.light-mode .ij-hero-stat-txt,
body.injaz-home.light-mode .ij-stat-txt {
    color: #64748b;
}
/* Hero badge */
body.injaz-home.light-mode .ij-hero-badge {
    background: rgba(79,70,229,0.1);
    border-color: rgba(79,70,229,0.2);
    color: #4f46e5;
}
/* Cards - features, support, testimonial, faq */
body.injaz-home.light-mode .ij-feature-card,
body.injaz-home.light-mode .ij-support-card,
body.injaz-home.light-mode .ij-testimonial-card,
body.injaz-home.light-mode .ij-faq-item,
body.injaz-home.light-mode .ij-product-card {
    background: rgba(255,255,255,0.8);
    border-color: rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}
body.injaz-home.light-mode .ij-feature-card:hover,
body.injaz-home.light-mode .ij-support-card:hover,
body.injaz-home.light-mode .ij-testimonial-card:hover,
body.injaz-home.light-mode .ij-product-card:hover {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
body.injaz-home.light-mode .ij-feature-title,
body.injaz-home.light-mode .ij-product-name,
body.injaz-home.light-mode .ij-plan-name {
    color: #1e293b;
}
body.injaz-home.light-mode .ij-feature-desc,
body.injaz-home.light-mode .ij-product-desc,
body.injaz-home.light-mode .ij-product-feats li {
    color: #475569;
}
/* Support cards text */
body.injaz-home.light-mode .ij-support-card {
    color: #475569;
}
body.injaz-home.light-mode .ij-support-card:hover {
    color: #1e293b;
}
/* Plan cards */
body.injaz-home.light-mode .ij-plan-card {
    background: rgba(255,255,255,0.9);
    border-color: rgba(0,0,0,0.08);
}
body.injaz-home.light-mode .ij-plan-card:hover {
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
body.injaz-home.light-mode .ij-plan-price-amount {
    color: #1e293b;
}
body.injaz-home.light-mode .ij-plan-price-currency,
body.injaz-home.light-mode .ij-plan-price-suffix,
body.injaz-home.light-mode .ij-plan-price-period {
    color: #64748b;
}
body.injaz-home.light-mode .ij-plan-price-equiv {
    color: #64748b;
}
body.injaz-home.light-mode .ij-plan-features li {
    color: #475569;
}
body.injaz-home.light-mode .ij-plan-features li i {
    color: var(--ij-success);
}
body.injaz-home.light-mode .ij-plan-tagline {
    color: #64748b;
}
body.injaz-home.light-mode .ij-plan-divider {
    background: rgba(0,0,0,0.06);
}
body.injaz-home.light-mode .ij-plan-cta {
    color: #475569;
    border-color: rgba(0,0,0,0.12);
}
body.injaz-home.light-mode .ij-plan-cta:hover,
body.injaz-home.light-mode .ij-plan-cta.featured {
    color: #ffffff;
}
/* Group header */
body.injaz-home.light-mode .ij-group-name {
    color: #1e293b;
}
body.injaz-home.light-mode .ij-group-tagline {
    color: #64748b;
}
/* Trust bar */
body.injaz-home.light-mode .ij-trust {
    background: rgba(79,70,229,0.03);
    border-color: rgba(0,0,0,0.06);
}
body.injaz-home.light-mode .ij-trust-item {
    color: #475569;
}
/* Domain search */
body.injaz-home.light-mode .ij-domain-inner {
    background: linear-gradient(135deg, rgba(79,70,229,0.08), rgba(124,58,237,0.05));
    border-color: rgba(79,70,229,0.15);
}
body.injaz-home.light-mode .ij-domain-inner h3 {
    color: #1e293b;
}
body.injaz-home.light-mode .ij-domain-inner p {
    color: #475569;
}
body.injaz-home.light-mode .ij-domain-input {
    background: rgba(255,255,255,0.9);
    color: #1e293b;
    border-color: rgba(0,0,0,0.12);
}
body.injaz-home.light-mode .ij-domain-tld {
    color: #475569;
    border-color: rgba(0,0,0,0.08);
}
/* Cycle toggle */
body.injaz-home.light-mode .ij-cycle-toggle {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.08);
}
body.injaz-home.light-mode .ij-cycle-btn {
    color: #475569;
}
body.injaz-home.light-mode .ij-cycle-btn.active {
    color: #1e293b;
}
body.injaz-home.light-mode .ij-cycle-slider {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* ERP, OpenClaw, PMP sections */
body.injaz-home.light-mode .ij-erp-card,
body.injaz-home.light-mode .ij-openclaw-card,
body.injaz-home.light-mode .ij-pmp-card {
    background: rgba(255,255,255,0.8);
    border-color: rgba(0,0,0,0.08);
}
body.injaz-home.light-mode .ij-erp-content h2,
body.injaz-home.light-mode .ij-openclaw-content h2,
body.injaz-home.light-mode .ij-pmp-content h2 {
    color: #1e293b;
}
body.injaz-home.light-mode .ij-erp-content p,
body.injaz-home.light-mode .ij-openclaw-content p,
body.injaz-home.light-mode .ij-pmp-content p {
    color: #475569;
}
body.injaz-home.light-mode .ij-erp-feat,
body.injaz-home.light-mode .ij-openclaw-feat,
body.injaz-home.light-mode .ij-pmp-feat {
    color: #475569;
}
body.injaz-home.light-mode .ij-openclaw-badge,
body.injaz-home.light-mode .ij-pmp-badge {
    color: #475569;
}
/* Buttons */
body.injaz-home.light-mode .ij-btn-ghost {
    color: #475569;
    border-color: rgba(0,0,0,0.12);
}
body.injaz-home.light-mode .ij-btn-ghost:hover {
    background: rgba(0,0,0,0.05);
    color: #1e293b;
}
body.injaz-home.light-mode .ij-btn-outline {
    border-color: #4f46e5;
    color: #4f46e5;
}
body.injaz-home.light-mode .ij-btn-outline:hover {
    background: rgba(79,70,229,0.08);
}
body.injaz-home.light-mode .ij-btn-white {
    background: #ffffff;
    color: #4f46e5;
}
/* Product buttons */
body.injaz-home.light-mode .ij-product-btn {
    color: #4f46e5;
    border-color: rgba(79,70,229,0.2);
}
body.injaz-home.light-mode .ij-product-btn:hover {
    background: #4f46e5;
    color: #ffffff;
}
/* Testimonials */
body.injaz-home.light-mode .ij-testimonial-quote {
    color: #475569;
}
body.injaz-home.light-mode .ij-testimonial-name {
    color: #1e293b;
}
body.injaz-home.light-mode .ij-testimonial-role {
    color: #64748b;
}
/* FAQ */
body.injaz-home.light-mode .ij-faq-q {
    color: #1e293b;
}
body.injaz-home.light-mode .ij-faq-a p {
    color: #475569;
}
body.injaz-home.light-mode .ij-faq-item.active {
    background: rgba(255,255,255,0.9);
}
/* Comparison table */
body.injaz-home.light-mode .ij-comparison-table {
    background: rgba(255,255,255,0.9);
}
body.injaz-home.light-mode .ij-comparison-table th {
    background: rgba(79,70,229,0.08);
    color: #1e293b;
}
body.injaz-home.light-mode .ij-comparison-table td {
    color: #475569;
    border-bottom-color: rgba(0,0,0,0.06);
}
body.injaz-home.light-mode .ij-comparison-table td:first-child {
    color: #1e293b;
}
body.injaz-home.light-mode .ij-comparison-table .cross {
    color: rgba(0,0,0,0.15);
}
/* How it works */
body.injaz-home.light-mode .ij-howto-step h4 {
    color: #1e293b;
}
body.injaz-home.light-mode .ij-howto-step p {
    color: #475569;
}
/* Browser mockup */
body.injaz-home.light-mode .ij-browser-mockup {
    background: rgba(255,255,255,0.8);
    border-color: rgba(0,0,0,0.1);
}
body.injaz-home.light-mode .ij-browser-bar {
    background: rgba(0,0,0,0.04);
    border-bottom-color: rgba(0,0,0,0.08);
}
body.injaz-home.light-mode .ij-browser-body {
    color: #64748b;
}
body.injaz-home.light-mode .ij-browser-url {
    background: rgba(0,0,0,0.04);
    color: #475569;
}
/* Server illustration */
body.injaz-home.light-mode .ij-server-box {
    background: linear-gradient(180deg, rgba(79,70,229,0.08), rgba(124,58,237,0.04));
    border-color: rgba(79,70,229,0.15);
}
body.injaz-home.light-mode .ij-server-line {
    background: rgba(0,0,0,0.06);
}
/* CTA section - keep gradient */
body.injaz-home.light-mode .ij-cta {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}
body.injaz-home.light-mode .ij-cta h2,
body.injaz-home.light-mode .ij-cta p {
    color: #ffffff;
}
body.injaz-home.light-mode .ij-cta .ij-btn-white {
    color: #4f46e5;
}
body.injaz-home.light-mode .ij-cta .ij-btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: #ffffff;
}
/* Footer - keep dark in light mode */
body.injaz-home.light-mode .ij-footer {
    background: #1e293b;
    color: rgba(255,255,255,0.85);
}
body.injaz-home.light-mode .ij-footer h3,
body.injaz-home.light-mode .ij-footer h4 {
    color: #ffffff;
}
body.injaz-home.light-mode .ij-footer p {
    color: rgba(255,255,255,0.6);
}
body.injaz-home.light-mode .ij-footer a {
    color: rgba(255,255,255,0.6);
}
body.injaz-home.light-mode .ij-footer a:hover {
    color: #ffffff;
}
body.injaz-home.light-mode .ij-footer-bottom p {
    color: rgba(255,255,255,0.4);
}
/* Announcement bar - keep gradient, always white text */
body.injaz-home.light-mode .ij-announcement-bar {
    color: #ffffff;
}
body.injaz-home.light-mode .ij-announcement-bar a {
    color: #ffffff;
}
/* Plan badge */
body.injaz-home.light-mode .ij-plan-badge {
    color: #ffffff;
}
/* Hero grid / orbs */
body.injaz-home.light-mode .ij-hero-grid {
    opacity: 0.15;
}
body.injaz-home.light-mode .ij-hero::before,
body.injaz-home.light-mode .ij-hero::after {
    opacity: 0.08;
}
/* Menu toggle */
body.injaz-home.light-mode .ij-menu-toggle {
    color: #475569;
}
/* Section alt background */
body.injaz-home.light-mode .ij-section-alt {
    background: #f1f5f9;
}
/* Logo brightness in light mode */
body.injaz-home.light-mode .ij-logo-img {
    filter: brightness(0.3);
}

/* Theme toggle button */
.ij-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ij-theme-toggle i {
    transition: transform 0.3s ease;
}
body.injaz-home.light-mode .ij-theme-toggle .fa-moon {
    display: inline;
}
body.injaz-home.light-mode .ij-theme-toggle .fa-sun {
    display: none;
}
body.injaz-home:not(.light-mode) .ij-theme-toggle .fa-sun {
    display: inline;
}
body.injaz-home:not(.light-mode) .ij-theme-toggle .fa-moon {
    display: none;
}

/* ---------- Footer Social ---------- */
.ij-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.ij-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    transition: var(--ij-transition);
}
.ij-footer-social a:hover {
    background: var(--ij-gradient);
    color: var(--ij-white);
    transform: translateY(-2px);
}
