:root {
    --primary-color: #667eea;
    --primary-dark: #5a67d8;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --success-color: #16a34a;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f8fafc;
    --bg-lighter: #eef2ff;
    --border-color: #e5e7eb;
    --radius-base: 0.75rem;
    --radius-lg: 1.25rem;
    --transition-base: all 0.3s ease;
}

body.frontend-body {
    font-family: 'Inter', 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.frontend-main {
    flex: 1;
    padding: 3rem 0;
}

.frontend-main.register-page-main {
    padding-top: 0;
    padding-bottom: 0;
}

.register-page {
    padding-top: 4.5rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .register-page {
        padding-top: 5.5rem;
        padding-bottom: 3.5rem;
    }
}

@media (min-width: 1200px) {
    .register-page {
        padding-top: 6.5rem;
    }
}

.register-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.register-hero-stats .stat-value {
    font-size: 2rem;
    font-weight: 700;
}

.register-hero-stats .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.register-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.register-card {
    padding: 2.5rem;
}

.register-progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
    margin-bottom: 2.5rem;
}

.register-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.25rem;
    background: #f8fafc;
    transition: var(--transition-base);
}

.register-step.is-active {
    border-color: rgba(102, 126, 234, 0.6);
    background: rgba(102, 126, 234, 0.08);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

.register-step-icon {
    width: 42px;
    height: 42px;
    border-radius: 1rem;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.08);
}

.register-step-title {
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.register-step-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.register-form {
    width: 100%;
}

.register-section-card {
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 1.5rem;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.05);
}

.register-section-header {
    margin-bottom: 1.5rem;
}

.register-section-kicker {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.register-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.register-section-text {
    color: var(--text-muted);
    margin-bottom: 0;
}

.register-fields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.register-field-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.register-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 0.85rem 1.25rem;
    background: #f8fafc;
    transition: var(--transition-base);
}

.register-field:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
    background: #fff;
}

.register-field i {
    color: var(--text-muted);
}

.register-field input,
.register-field select {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
}

.register-field.has-action button {
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
}

.register-field.has-action button:focus-visible {
    outline: none;
    color: var(--primary-color);
}

body.register-page-body .field-error {
    border-color: var(--danger-color) !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
    background: #fff;
}

body.register-page-body .field-valid {
    border-color: #22c55e !important;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
    background: #fff;
}

.register-field-error {
    margin-top: 0.5rem;
    font-size: 0.87rem;
    color: var(--danger-color);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.register-field-error i {
    color: inherit;
}

.register-upload {
    border: 2px dashed rgba(148, 163, 184, 0.8);
    border-radius: 1.25rem;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-base);
}

.register-upload:hover {
    border-color: var(--primary-color);
    background: rgba(102, 126, 234, 0.08);
}

.register-upload i {
    font-size: 1.75rem;
}

.register-logo-preview {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
}

.register-logo-preview img {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.register-logo-preview button {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 999px;
    background: var(--danger-color);
    color: #fff;
    cursor: pointer;
}

.register-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.register-package-card {
    border: 1.5px solid #e5e7eb;
    border-radius: 1.25rem;
    padding: 1.5rem;
    position: relative;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.register-package-card:hover,
.register-package-card.is-selected {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.register-package-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.register-package-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.register-package-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.register-package-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.register-package-price small {
    font-weight: 500;
    color: var(--text-muted);
}

.register-package-features {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.register-package-features i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.register-package-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
}

.register-package-check.show {
    display: inline-flex;
}

.register-form-actions {
    padding-top: 1rem;
}

.register-submit-btn {
    position: relative;
    border: none;
    border-radius: 1.5rem;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.1rem 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 45px rgba(99, 102, 241, 0.35);
}

/* ═══════════════════════════════════════════════
   FEATURES PAGE — Professional Enterprise Design
   ═══════════════════════════════════════════════ */
body.features-page-body {
    font-family: 'Inter', 'Tajawal', system-ui, sans-serif;
    background: #ffffff;
    color: #1e293b;
}

/* ── Hero ──────────────────────────────────── */
.fp-hero {
    position: relative;
    padding: 6rem 0 5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #312e81 100%);
    color: #ffffff;
    overflow: hidden;
}

.fp-hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.fp-hero__inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.fp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    font-size: 0.85rem;
    font-weight: 600;
    color: #c7d2fe;
    margin-bottom: 1.5rem;
}

.fp-hero__badge i {
    color: #fbbf24;
}

.fp-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #ffffff 30%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fp-hero__sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.fp-hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.fp-hero__note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.fp-hero__note i {
    color: #34d399;
}

/* Buttons */
.fp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.fp-btn--primary {
    background: #6366f1;
    color: #fff;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.fp-btn--primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
    color: #fff;
}

.fp-btn--white {
    background: #ffffff;
    color: #1e293b;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.fp-btn--white:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    color: #1e293b;
}

.fp-btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

/* Floating cards */
.fp-hero__floats {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.fp-float {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    animation: fpFloat 4s ease-in-out infinite;
}

.fp-float--2 { animation-delay: 1.3s; }
.fp-float--3 { animation-delay: 2.6s; }

@keyframes fpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.fp-float__icon {
    width: 40px;
    height: 40px;
    border-radius: 0.7rem;
    background: linear-gradient(135deg, #6366f1, #818cf8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.fp-float__icon--green { background: linear-gradient(135deg, #059669, #34d399); }
.fp-float__icon--amber { background: linear-gradient(135deg, #d97706, #fbbf24); }

.fp-float__text strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.fp-float__text span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ── Trust Bar ─────────────────────────────── */
.fp-trust {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.75rem 0;
}

.fp-trust__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.fp-trust__item {
    text-align: center;
    min-width: 140px;
}

.fp-trust__num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.02em;
}

.fp-trust__label {
    display: block;
    font-size: 0.82rem;
    color: #64748b;
    margin-top: 0.2rem;
}

.fp-trust__sep {
    width: 1px;
    height: 36px;
    background: #e2e8f0;
}

/* ── Navigation ────────────────────────────── */
.fp-nav {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 60px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.fp-nav__track {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.65rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.fp-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.fp-nav__link i {
    font-size: 0.85rem;
}

.fp-nav__link:hover {
    color: #4f46e5;
    background: rgba(99, 102, 241, 0.06);
}

.fp-nav__link.is-active {
    color: #4f46e5;
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.2);
    font-weight: 600;
}

/* ── Badges ────────────────────────────────── */
.fp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.fp-badge--blue { background: rgba(99, 102, 241, 0.1); color: #4f46e5; }
.fp-badge--emerald { background: rgba(16, 185, 129, 0.1); color: #059669; }
.fp-badge--violet { background: rgba(139, 92, 246, 0.1); color: #7c3aed; }
.fp-badge--rose { background: rgba(244, 63, 94, 0.1); color: #e11d48; }
.fp-badge--amber { background: rgba(245, 158, 11, 0.1); color: #d97706; }

/* ── Feature Sections ──────────────────────── */
.fp-feature {
    padding: 5rem 0;
}

.fp-feature--light {
    background: #f8fafc;
}

.fp-feature--dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
}

.fp-feature--dark .fp-feature__title {
    color: #ffffff;
}

.fp-feature--dark .fp-feature__desc {
    color: rgba(255, 255, 255, 0.7);
}

.fp-feature__header {
    max-width: 640px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fp-feature__header.fp-visible {
    opacity: 1;
    transform: translateY(0);
}

.fp-feature__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.fp-feature__desc {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
}

/* ── Screen Mockup ─────────────────────────── */
.fp-screen {
    border-radius: 1rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(0,0,0,0.04);
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s ease;
}

.fp-screen.fp-visible {
    opacity: 1;
    transform: translateY(0);
}

.fp-screen--sm {
    max-width: 100%;
}

.fp-screen__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1rem;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.fp-screen__dots {
    display: flex;
    gap: 6px;
}

.fp-screen__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.fp-screen__dots span:nth-child(1) { background: #ef4444; }
.fp-screen__dots span:nth-child(2) { background: #f59e0b; }
.fp-screen__dots span:nth-child(3) { background: #22c55e; }

.fp-screen__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
}

.fp-screen__body {
    padding: 1.25rem;
}

/* ── POS Mockup ────────────────────────────── */
.fp-pos-mock {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 1rem;
    min-height: 300px;
}

.fp-pos-mock__search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    border-radius: 0.6rem;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
}

.fp-pos-mock__search i { color: #94a3b8; }

.fp-pos-mock__cats {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.fp-pos-mock__cats span {
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #f1f5f9;
    color: #64748b;
    cursor: default;
}

.fp-pos-mock__cats span.active {
    background: #4f46e5;
    color: #fff;
}

.fp-pos-mock__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.fp-prod-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.6rem;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    cursor: default;
}

.fp-prod-card__img {
    height: 40px;
    border-radius: 0.4rem;
    background: linear-gradient(135deg, #fde68a, #fbbf24);
    margin-bottom: 0.35rem;
}

.fp-prod-card__img--2 { background: linear-gradient(135deg, #bbf7d0, #22c55e); }
.fp-prod-card__img--3 { background: linear-gradient(135deg, #c7d2fe, #6366f1); }
.fp-prod-card__img--4 { background: linear-gradient(135deg, #bfdbfe, #3b82f6); }
.fp-prod-card__img--5 { background: linear-gradient(135deg, #fecaca, #ef4444); }
.fp-prod-card__img--6 { background: linear-gradient(135deg, #e9d5ff, #a855f7); }

.fp-prod-card span { display: block; font-weight: 600; color: #334155; margin-bottom: 0.15rem; }
.fp-prod-card small { color: #64748b; }

.fp-pos-mock__right {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.6rem;
    padding: 0.75rem;
}

.fp-pos-mock__customer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #475569;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.fp-pos-mock__customer i { color: #94a3b8; font-size: 1.1rem; }

.fp-pos-mock__items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.fp-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #334155;
    padding: 0.3rem 0;
    border-bottom: 1px dashed #e2e8f0;
}

.fp-cart-item__name { flex: 1; font-weight: 500; }
.fp-cart-item__qty { color: #64748b; margin: 0 0.5rem; font-weight: 600; }
.fp-cart-item__price { font-weight: 700; color: #0f172a; }

.fp-pos-mock__totals {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.78rem;
}

.fp-pos-mock__totals > div {
    display: flex;
    justify-content: space-between;
    color: #64748b;
}

.fp-pos-mock__grand {
    font-weight: 800 !important;
    color: #0f172a !important;
    font-size: 0.95rem !important;
    padding-top: 0.3rem;
    margin-top: 0.15rem;
    border-top: 2px solid #0f172a;
}

.fp-pos-mock__grand span { color: #0f172a; }

.fp-pos-mock__pay-btn {
    width: 100%;
    padding: 0.6rem;
    border: none;
    border-radius: 0.5rem;
    background: #4f46e5;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ── Benefits row ──────────────────────────── */
.fp-benefits-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.5s ease;
}

.fp-benefits-row.fp-visible {
    opacity: 1;
    transform: translateY(0);
}

.fp-benefits-row + .fp-benefits-row { margin-top: 0.6rem; }

.fp-benefits-row--light .fp-benefit-chip {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

.fp-benefits-row--light .fp-benefit-chip i { color: #34d399; }

.fp-benefit-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #334155;
}

.fp-benefit-chip i {
    color: #4f46e5;
    font-size: 0.7rem;
}

/* ── Split Layout ──────────────────────────── */
.fp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.fp-split--reverse {
    direction: ltr;
}

.fp-split--reverse .fp-split__visual {
    order: -1;
}

[dir="rtl"] .fp-split--reverse {
    direction: rtl;
}

[dir="rtl"] .fp-split--reverse .fp-split__visual {
    order: -1;
}

.fp-split__content {
    opacity: 0;
    transform: translateX(-24px);
    transition: all 0.6s ease;
}

.fp-split__content.fp-visible {
    opacity: 1;
    transform: translateX(0);
}

.fp-split__visual {
    opacity: 0;
    transform: translateX(24px);
    transition: all 0.7s ease;
}

.fp-split__visual.fp-visible {
    opacity: 1;
    transform: translateX(0);
}

.fp-split--reverse .fp-split__content {
    transform: translateX(24px);
}

.fp-split--reverse .fp-split__content.fp-visible {
    transform: translateX(0);
}

.fp-split--reverse .fp-split__visual {
    transform: translateX(-24px);
}

.fp-split--reverse .fp-split__visual.fp-visible {
    transform: translateX(0);
}

.fp-split__title {
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.fp-split__sub {
    font-size: 1.05rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.6rem;
}

.fp-split__desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ── Checklist ─────────────────────────────── */
.fp-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
}

.fp-checklist__item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #334155;
}

.fp-checklist__item i {
    color: #4f46e5;
    margin-top: 0.2rem;
    font-size: 0.85rem;
}

/* ── Inventory Mockup ──────────────────────── */
.fp-inv-mock {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.fp-inv-mock__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.fp-stat-mini {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.6rem;
    text-align: center;
}

.fp-stat-mini__num {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
}

.fp-stat-mini__label {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 0.1rem;
}

.fp-stat-mini--blue { border-left: 3px solid #3b82f6; }
.fp-stat-mini--red { border-left: 3px solid #ef4444; }
.fp-stat-mini--amber { border-left: 3px solid #f59e0b; }

[dir="rtl"] .fp-stat-mini--blue,
[dir="rtl"] .fp-stat-mini--red,
[dir="rtl"] .fp-stat-mini--amber {
    border-left: none;
    border-right: 3px solid;
}

[dir="rtl"] .fp-stat-mini--blue { border-right-color: #3b82f6; }
[dir="rtl"] .fp-stat-mini--red { border-right-color: #ef4444; }
[dir="rtl"] .fp-stat-mini--amber { border-right-color: #f59e0b; }

.fp-inv-mock__table { display: flex; flex-direction: column; gap: 0; }

.fp-inv-row {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.5fr 0.6fr;
    gap: 0.5rem;
    padding: 0.5rem 0.6rem;
    font-size: 0.78rem;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}

.fp-inv-row--head {
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
    border-radius: 0.4rem;
    border-bottom: none;
}

.fp-status {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
}

.fp-status--ok { background: #dcfce7; color: #15803d; }
.fp-status--low { background: #fef3c7; color: #b45309; }
.fp-status--critical { background: #fee2e2; color: #dc2626; }

/* ── Product Mockup ────────────────────────── */
.fp-prod-mock { display: flex; flex-direction: column; gap: 0.75rem; }

.fp-prod-mock__filters {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.fp-prod-mock__filters span {
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #f1f5f9;
    color: #64748b;
}

.fp-prod-mock__filters span.active {
    background: #7c3aed;
    color: #fff;
}

.fp-prod-mock__grid { display: flex; flex-direction: column; gap: 0.6rem; }

.fp-prod-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.6rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    align-items: center;
}

.fp-prod-item__img {
    width: 44px;
    height: 44px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #c7d2fe, #6366f1);
    flex-shrink: 0;
}

.fp-prod-item__img--2 { background: linear-gradient(135deg, #bbf7d0, #22c55e); }
.fp-prod-item__img--3 { background: linear-gradient(135deg, #bfdbfe, #3b82f6); }

.fp-prod-item__info {
    display: flex;
    flex-direction: column;
}

.fp-prod-item__info strong { font-size: 0.82rem; color: #0f172a; }
.fp-prod-item__info span { font-size: 0.72rem; color: #64748b; }
.fp-prod-item__info small { font-size: 0.68rem; color: #94a3b8; }

/* ── Customer Mockup ───────────────────────── */
.fp-cust-mock { display: flex; flex-direction: column; gap: 0.85rem; }

.fp-cust-mock__profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fp-cust-mock__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fda4af, #e11d48);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.fp-cust-mock__meta strong { display: block; font-size: 0.88rem; color: #0f172a; }
.fp-cust-mock__meta span { font-size: 0.72rem; color: #64748b; }

.fp-cust-mock__badge {
    margin-left: auto;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #fef3c7;
    color: #b45309;
    font-size: 0.68rem;
    font-weight: 700;
}

[dir="rtl"] .fp-cust-mock__badge { margin-left: 0; margin-right: auto; }

.fp-cust-mock__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    text-align: center;
}

.fp-cust-mock__stats > div {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.fp-cust-mock__stats span { display: block; font-size: 0.68rem; color: #64748b; }
.fp-cust-mock__stats strong { display: block; font-size: 0.95rem; color: #0f172a; }

.fp-cust-mock__recent small {
    display: block;
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fp-cust-order {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0.5rem;
    background: #f8fafc;
    border-radius: 0.4rem;
    margin-bottom: 0.3rem;
    font-size: 0.78rem;
    color: #475569;
}

/* ── Dashboard Mockup ──────────────────────── */
.fp-dash-mock { display: flex; flex-direction: column; gap: 1rem; }

.fp-dash-mock__kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.fp-kpi {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.6rem;
    padding: 0.75rem;
}

.fp-kpi__label { display: block; font-size: 0.7rem; color: #64748b; margin-bottom: 0.2rem; }
.fp-kpi__value { display: block; font-size: 1.2rem; font-weight: 800; color: #0f172a; }

.fp-kpi__change {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.68rem;
    font-weight: 700;
    margin-top: 0.2rem;
}

.fp-kpi__change--up { color: #16a34a; }
.fp-kpi__change--down { color: #dc2626; }

.fp-dash-mock__chart {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.6rem;
    padding: 1rem;
}

.fp-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 120px;
}

.fp-chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: #cbd5e1;
    transition: height 0.5s ease;
}

.fp-chart-bar--accent {
    background: linear-gradient(180deg, #6366f1, #4f46e5);
}

.fp-chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.65rem;
    color: #94a3b8;
}

/* ── Location Mockup ───────────────────────── */
.fp-loc-mock { display: flex; flex-direction: column; gap: 0.65rem; }

.fp-loc-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.65rem;
    padding: 0.75rem;
}

.fp-loc-card__head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.fp-loc-card__icon {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #059669, #34d399);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.fp-loc-card__icon--blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.fp-loc-card__icon--amber { background: linear-gradient(135deg, #d97706, #fbbf24); }

.fp-loc-card__head strong { font-size: 0.85rem; color: #0f172a; display: block; }
.fp-loc-card__head small { font-size: 0.72rem; color: #94a3b8; }
.fp-loc-card__head .fp-status { margin-left: auto; }
[dir="rtl"] .fp-loc-card__head .fp-status { margin-left: 0; margin-right: auto; }

.fp-loc-card__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.fp-loc-card__stats > div {
    text-align: center;
    padding: 0.35rem;
    background: #fff;
    border-radius: 0.4rem;
}

.fp-loc-card__stats span { display: block; font-size: 0.68rem; color: #94a3b8; }
.fp-loc-card__stats strong { display: block; font-size: 0.88rem; color: #0f172a; }

/* ── Bento Grid (Enterprise) ────────────────── */
.fp-bento {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.fp-bento__header {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.fp-bento__counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.fp-bento__counter-num {
    font-size: 1.1rem;
    font-weight: 800;
}

.fp-bento__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.fp-bento__sub {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 1.5rem;
}

.fp-bento__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.fp-bento__tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.25s ease;
}

.fp-bento__tab:hover {
    background: #f1f5f9;
    color: #334155;
    border-color: #cbd5e1;
}

.fp-bento__tab.is-active {
    background: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.fp-bento__tab i { font-size: 0.75rem; }

.fp-bento__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.fp-bento__card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.15rem;
    padding: 1.75rem;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.fp-bento__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.fp-bento__card.fp-visible {
    opacity: 1;
    transform: translateY(0);
}

.fp-bento__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.1);
    border-color: #c7d2fe;
}

.fp-bento__card:hover::before {
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
}

/* Hero cards = 2 columns with mockup */
.fp-bento__card--hero {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 1.5rem;
    align-items: center;
}

.fp-bento__card--hero .fp-bento__card-body { min-width: 0; }

/* Wide cards = full row */
.fp-bento__card--wide {
    grid-column: span 2;
}

/* Medium card */
.fp-bento__card--md {
    grid-row: span 2;
}

/* Gradient cards */
.fp-bento__card--gradient-blue {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-color: #c7d2fe;
}

.fp-bento__card--gradient-dark {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-color: #3730a3;
    color: #e0e7ff;
}

.fp-bento__card--gradient-dark h3 { color: #fff; }
.fp-bento__card--gradient-dark p { color: rgba(224, 231, 255, 0.85); }
.fp-bento__card--gradient-dark .fp-bento__icon { background: rgba(255, 255, 255, 0.12); color: #c7d2fe; }
.fp-bento__card--gradient-dark:hover { border-color: #6366f1; }
.fp-bento__card--gradient-dark:hover::before { background: linear-gradient(90deg, #6366f1, #818cf8); }

.fp-bento__card--gradient-green {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #a7f3d0;
}

.fp-bento__icon {
    width: 48px;
    height: 48px;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.fp-bento__icon--blue { background: rgba(99, 102, 241, 0.12); color: #4f46e5; }
.fp-bento__icon--emerald { background: rgba(16, 185, 129, 0.12); color: #059669; }
.fp-bento__icon--violet { background: rgba(139, 92, 246, 0.12); color: #7c3aed; }
.fp-bento__icon--rose { background: rgba(244, 63, 94, 0.12); color: #e11d48; }
.fp-bento__icon--amber { background: rgba(245, 158, 11, 0.12); color: #d97706; }

.fp-bento__card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.4rem;
}

.fp-bento__card p {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.fp-bento__list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.fp-bento__list li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 0.78rem;
    font-weight: 500;
    color: #334155;
}

.fp-bento__list li i {
    color: #4f46e5;
    font-size: 0.65rem;
}

.fp-bento__list--light li {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.fp-bento__list--light li i { color: #34d399; }

/* ── Mini Receipt Mock ──────────── */
.fp-mini-receipt {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.1);
    font-size: 0.75rem;
    border: 1px solid #e0e7ff;
}

.fp-mini-receipt__head {
    text-align: center;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 0.6rem;
    font-size: 0.82rem;
}

.fp-mini-receipt__head i { margin-inline-end: 0.3rem; }

.fp-mini-receipt__line {
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 0;
    color: #475569;
}

.fp-mini-receipt__divider {
    border-top: 1px dashed #cbd5e1;
    margin: 0.4rem 0;
}

.fp-mini-receipt__total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: #0f172a;
    font-size: 0.85rem;
}

.fp-mini-receipt__badge {
    text-align: center;
    margin-top: 0.5rem;
    color: #059669;
    font-weight: 600;
    font-size: 0.72rem;
}

/* ── Mini Purchase Flow ──────────── */
.fp-bento__mini-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0 0.75rem;
    padding: 0.75rem;
    background: #f0fdf4;
    border-radius: 0.75rem;
    border: 1px solid #bbf7d0;
}

.fp-mini-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.fp-mini-step i {
    font-size: 1rem;
    color: #059669;
}

.fp-mini-step small {
    font-size: 0.68rem;
    font-weight: 600;
    color: #334155;
}

.fp-mini-arrow i {
    font-size: 0.65rem;
    color: #94a3b8;
}

/* ── Stat Row (suppliers) ──────── */
.fp-bento__stat-row {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.fp-mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.6rem 1rem;
    background: #faf5ff;
    border-radius: 0.6rem;
    flex: 1;
    border: 1px solid #ede9fe;
}

.fp-mini-stat__num { font-size: 1.3rem; font-weight: 800; color: #7c3aed; }
.fp-mini-stat small { font-size: 0.68rem; color: #64748b; font-weight: 500; }

/* ── Role Stack (users) ────────── */
.fp-bento__role-stack {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

.fp-role-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
}

.fp-role-chip i { font-size: 0.7rem; }
.fp-role-chip--admin { background: #fef3c7; color: #92400e; }
.fp-role-chip--manager { background: #dbeafe; color: #1e40af; }
.fp-role-chip--cashier { background: #ecfdf5; color: #065f46; }

/* ── Shield Visual (security) ──── */
.fp-shield-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1rem;
}

.fp-shield-visual__icon {
    font-size: 2.5rem;
    color: #818cf8;
    z-index: 2;
    position: relative;
}

.fp-shield-visual__rings {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.fp-shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(129, 140, 248, 0.2);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.fp-shield-ring--1 { width: 60px; height: 60px; }
.fp-shield-ring--2 { width: 90px; height: 90px; border-color: rgba(129, 140, 248, 0.12); }
.fp-shield-ring--3 { width: 120px; height: 120px; border-color: rgba(129, 140, 248, 0.06); }

.fp-shield-visual__badges {
    display: flex;
    gap: 0.4rem;
    margin-top: 1rem;
    z-index: 2;
    position: relative;
}

.fp-shield-visual__badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    color: #c7d2fe;
}

/* ── Mini Bars (expenses) ──────── */
.fp-bento__mini-bars {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fp-mini-bar__label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.15rem;
    display: block;
}

.fp-mini-bar__track {
    height: 6px;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
}

.fp-mini-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #6366f1);
    border-radius: 999px;
    transition: width 0.6s ease;
}

.fp-mini-bar__fill--green { background: linear-gradient(90deg, #059669, #34d399); }
.fp-mini-bar__fill--amber { background: linear-gradient(90deg, #d97706, #fbbf24); }

/* ── Register Mock (cash register) ── */
.fp-bento__register-mock {
    margin-top: 0.75rem;
    border-radius: 0.6rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.fp-reg-row {
    display: flex;
    justify-content: space-between;
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
    color: #475569;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.fp-reg-row--in { color: #059669; }
.fp-reg-row--out { color: #dc2626; }
.fp-reg-row--total {
    font-weight: 700;
    color: #0f172a;
    background: #fff;
    border-bottom: none;
}

.fp-reg-val { font-weight: 600; }

/* ── Account List ──────────────── */
.fp-bento__account-list {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.fp-account-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.7rem;
    background: #faf5ff;
    border-radius: 0.5rem;
    font-size: 0.82rem;
    border: 1px solid #ede9fe;
}

.fp-account-row i { color: #7c3aed; font-size: 0.85rem; }
.fp-account-row span { flex: 1; color: #475569; font-weight: 500; }
.fp-account-row strong { color: #0f172a; font-weight: 700; }

/* ── Card inner split (receipts/support wide cards) ── */
.fp-bento__card-inner-split {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 1.25rem;
    align-items: center;
}

/* ── Receipt Preview ───────────── */
.fp-bento__receipt-preview {
    display: flex;
    justify-content: center;
}

.fp-receipt-sm {
    width: 100px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.fp-receipt-sm__logo {
    font-size: 1.2rem;
    color: #e11d48;
    margin-bottom: 0.2rem;
}

.fp-receipt-sm__line {
    width: 80%;
    height: 4px;
    background: #f1f5f9;
    border-radius: 2px;
}

.fp-receipt-sm__line--short { width: 50%; }
.fp-receipt-sm__line--med { width: 65%; }

.fp-receipt-sm__sep {
    width: 85%;
    border-top: 1px dashed #e2e8f0;
    margin: 0.15rem 0;
}

.fp-receipt-sm__total {
    width: 70%;
    height: 6px;
    background: #4f46e5;
    border-radius: 3px;
}

.fp-receipt-sm__barcode {
    width: 60%;
    height: 16px;
    background: repeating-linear-gradient(90deg, #0f172a 0px, #0f172a 2px, transparent 2px, transparent 4px);
    border-radius: 2px;
    margin-top: 0.15rem;
}

/* ── Discount Tags ─────────────── */
.fp-bento__discount-tags {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.fp-discount-tag {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    border: 1px solid #fcd34d;
}

.fp-discount-tag--fixed {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #065f46;
    border-color: #6ee7b7;
}

.fp-discount-tag--coupon {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    color: #4338ca;
    border-color: #a5b4fc;
}

.fp-discount-tag i { margin-inline-end: 0.2rem; }

/* ── Tax Rows ──────────────────── */
.fp-bento__tax-rows {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.fp-tax-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0.65rem;
    background: #f8fafc;
    border-radius: 0.4rem;
    font-size: 0.82rem;
    color: #475569;
    border: 1px solid #f1f5f9;
}

.fp-tax-rate {
    font-weight: 700;
    color: #4f46e5;
    background: #eef2ff;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
}

/* ── Notification Stack ────────── */
.fp-bento__notif-stack {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.fp-notif-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.65rem;
    background: #f8fafc;
    border-radius: 0.4rem;
    border: 1px solid #f1f5f9;
    font-size: 0.78rem;
    transition: background 0.2s ease;
}

.fp-notif-item:hover { background: #f1f5f9; }
.fp-notif-item i { font-size: 0.75rem; }

/* ── Device Icons (cloud) ──────── */
.fp-bento__device-icons {
    display: flex;
    gap: 0.85rem;
    margin-top: 0.75rem;
    justify-content: center;
}

.fp-bento__device-icons i {
    font-size: 1.5rem;
    color: #94a3b8;
    transition: color 0.25s ease;
}

.fp-bento__device-icons i:hover { color: #7c3aed; }

/* ── API Badge (integrations) ──── */
.fp-bento__api-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #0f172a;
    border-radius: 0.5rem;
}

.fp-bento__api-badge code {
    color: #34d399;
    font-family: 'Courier New', monospace;
    font-size: 0.78rem;
    font-weight: 700;
}

.fp-api-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    animation: fp-pulse 2s infinite;
}

@keyframes fp-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.fp-bento__api-badge small {
    color: #94a3b8;
    font-size: 0.72rem;
}

/* ── Support Channels ──────────── */
.fp-bento__support-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-support-channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.fp-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.6rem;
    border: 1px solid #a7f3d0;
    transition: transform 0.2s ease;
}

.fp-channel:hover { transform: translateY(-2px); }
.fp-channel i { font-size: 1.1rem; color: #059669; }
.fp-channel small { font-size: 0.68rem; font-weight: 600; color: #334155; }

/* ── CTA Section ───────────────────────────── */
.fp-cta {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
    color: #ffffff;
    overflow: hidden;
}

.fp-cta__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

.fp-cta__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.fp-cta__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.fp-cta__sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.fp-cta__note {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.fp-cta__note i {
    color: #34d399;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 991px) {
    .fp-hero { padding: 4rem 0 3rem; }
    .fp-split { grid-template-columns: 1fr; gap: 2rem; }
    .fp-split--reverse .fp-split__visual { order: 0; }
    .fp-pos-mock { grid-template-columns: 1fr; }
    .fp-pos-mock__right { max-height: 250px; }
    .fp-dash-mock__kpis { grid-template-columns: repeat(2, 1fr); }
    .fp-bento__grid { grid-template-columns: 1fr 1fr; }
    .fp-bento__card--hero { grid-column: span 2; grid-template-columns: 1fr 180px; }
    .fp-bento__card--wide { grid-column: span 2; }
    .fp-bento__card--md { grid-row: span 1; }
    .fp-checklist { grid-template-columns: 1fr; }
    .fp-bento__tabs { gap: 0.35rem; }
}

@media (max-width: 575px) {
    .fp-hero { padding: 3rem 0 2.5rem; }
    .fp-hero__actions { flex-direction: column; }
    .fp-hero__floats { flex-direction: column; align-items: center; }
    .fp-trust__grid { gap: 1rem; }
    .fp-trust__sep { display: none; }
    .fp-nav__track { justify-content: flex-start; }
    .fp-feature { padding: 3rem 0; }
    .fp-bento__grid { grid-template-columns: 1fr; }
    .fp-bento__card--hero { grid-column: span 1; grid-template-columns: 1fr; }
    .fp-bento__card--wide { grid-column: span 1; }
    .fp-bento__card-inner-split { grid-template-columns: 1fr; }
    .fp-bento__card-mockup { display: none; }
    .fp-bento__receipt-preview { display: none; }
    .fp-bento__support-visual { margin-top: 1rem; }
    .fp-bento__tabs { flex-wrap: wrap; }
    .fp-pos-mock__grid { grid-template-columns: repeat(2, 1fr); }
    .fp-inv-mock__stats { grid-template-columns: 1fr; }
    .fp-cust-mock__stats { grid-template-columns: 1fr; }
    .fp-cta__title { font-size: 1.5rem; }
}

.register-submit-btn i {
    font-size: 1rem;
}

.register-submit-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.register-submit-btn:hover .register-submit-glow {
    opacity: 1;
}

.register-submit-btn.is-loading {
    cursor: not-allowed;
    opacity: 0.85;
}

.register-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .register-hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

.register-trust-grid article {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.06);
}

.register-trust-grid h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.register-trust-grid p {
    color: var(--text-muted);
    margin: 0;
}

.register-trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .register-card {
        padding: 1.5rem;
    }

    .register-section-card {
        padding: 1.25rem;
    }

    .register-fields-grid {
        grid-template-columns: 1fr;
    }
}

/* Navigation */
.frontend-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    position: sticky;
    top: 0;
    z-index: 1040;
}


.frontend-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.75rem 0;
}

.frontend-nav-toggle {
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    padding: 0.4rem 0.7rem;
    background: #ffffff;
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    transition: var(--transition-base);
}

.frontend-nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 999px;
}

.frontend-nav-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.frontend-navbar .navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.frontend-navbar .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    transition: var(--transition-base);
}

.frontend-navbar .nav-link.active,
.frontend-navbar .nav-link:hover {
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.12);
}

.frontend-nav-actions .btn-auth {
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
}

.frontend-nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
}

.frontend-menu-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.frontend-menu-links .nav-item {
    list-style: none;
}

.frontend-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 991.98px) {
    .frontend-nav-toggle {
        display: inline-flex;
    }

    .frontend-nav-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 1.25rem;
        margin-top: 1rem;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(226, 232, 240, 0.8);
    }

    .frontend-nav-menu.is-open {
        display: flex;
    }

    .frontend-menu-links {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .frontend-nav-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.75rem;
    }

    .frontend-nav-actions .btn-auth {
        width: 100%;
        text-align: center;
    }

    .language-switcher {
        width: 100%;
    }

    .language-switcher .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    .frontend-nav-menu {
        display: flex !important;
    }
}

/* Sections */
.unified-section {
    padding: 4rem 0;
}

.unified-section.bg-light {
    background: var(--bg-light);
}

.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    padding: 4rem 0 3rem;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 36rem;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(15, 23, 42, 0.15);
}

.section-title {
    font-weight: 700;
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-muted);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.page-header {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.page-header .section-title,
.page-header .section-subtitle {
    color: #ffffff;
}

.page-header.page-header-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-dark);
}

.page-header.page-header-light .section-title,
.page-header.page-header-light .section-subtitle {
    color: var(--text-dark);
}

.feature-detail {
    padding: 2rem;
}

.feature-image img,
.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
}

.unified-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.unified-card.hover-raise:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

.feature-icon,
.card-icon,
.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.12);
    color: var(--primary-color);
}

.feature-card,
.value-card,
.team-card,
.mission-card,
.vision-card,
.step-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    transition: var(--transition-base);
    height: 100%;
}

.feature-card:hover,
.value-card:hover,
.team-card:hover,
.mission-card:hover,
.vision-card:hover,
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.stat-item {
    padding: 1rem;
    border-radius: 1rem;
    background: var(--bg-light);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-video .video-cover::before,
.demo-video .position-relative::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    border-radius: var(--radius-lg);
}

.play-button {
    width: 80px;
    height: 80px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.35);
}

.demo-credentials {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-light);
}

.step-number {
    width: 60px;
    height: 60px;
    font-weight: 700;
}

.contact-form {
    padding: 2.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 0.85rem;
    border: 1px solid var(--border-color);
    padding: 0.85rem 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.2);
}

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.6);
    height: fit-content;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-item {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-button {
    font-weight: 600;
    padding: 1.2rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #ffffff;
}

.accordion-body {
    background: var(--bg-light);
}

/* Footer */
.frontend-footer {
    background: radial-gradient(circle at top, rgba(102, 126, 234, 0.25), rgba(17, 24, 39, 0.95));
    color: #f9fafb;
    padding: 4rem 0 2rem;
}

.frontend-footer h5,
.frontend-footer h6 {
    font-weight: 600;
}

.frontend-footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition-base);
}

.frontend-footer a:hover {
    color: #ffffff;
}

.frontend-footer .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
}

.team-card .social-links a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.team-card .social-links a:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* Language picker */
.language-switcher .dropdown-toggle {
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 0.35rem 1.25rem;
    font-weight: 500;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.language-switcher {
    position: relative;
}

.language-switcher .dropdown-menu {
    border-radius: var(--radius-base);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
    display: none;
    min-width: 12rem;
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    background: #ffffff;
    z-index: 1000;
}

.language-switcher .dropdown-item {
    font-weight: 500;
    padding: 0.4rem 1rem;
}

.language-switcher .dropdown-menu.show {
    display: block;
}

/* Auth */
.auth-hero {
    padding: 5rem 0 2rem;
}

.auth-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
    background: #ffffff;
}

.auth-card .form-control,
.auth-card .form-select {
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
}

.auth-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.demo-grid {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.85);
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.demo-grid .demo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    font-weight: 500;
}

.demo-grid .demo-item:last-child {
    border-bottom: none;
}

/* Pricing */
.pricing-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    min-height: 100vh;
}

.pricing-hero {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.pricing-hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.pricing-toggle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.pricing-toggle {
    display: inline-flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 0.35rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.toggle-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.toggle-option i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.toggle-option:hover {
    color: #ffffff;
}

.toggle-option.active {
    color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.toggle-option.active i {
    opacity: 1;
}

/* Savings Badge on Annual */
.savings-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    animation: badge-bounce 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
}

@keyframes badge-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

.toggle-hint {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
}

.toggle-hint i {
    font-size: 0.8rem;
}

/* Responsive Toggle */
@media (max-width: 576px) {
    .pricing-toggle-wrapper {
        width: 100%;
        padding: 0 1rem;
    }
    
    .pricing-toggle {
        width: 100%;
        flex-direction: column;
        padding: 0.5rem;
        gap: 0.35rem;
    }
    
    .toggle-option {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
    
    .savings-badge {
        position: static;
        margin-left: 0.5rem;
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
    }
    
    .toggle-hint {
        font-size: 0.75rem;
        text-align: center;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .toggle-option {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
    
    .toggle-option .toggle-text {
        display: inline;
    }
    
    .savings-badge {
        font-size: 0.6rem;
        top: -8px;
        right: -8px;
    }
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Enhanced Pricing Card */
.pricing-card {
    border-radius: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    width: 100%;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--tier-color, #667eea), color-mix(in srgb, var(--tier-color, #667eea) 70%, white));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 100px rgba(15, 23, 42, 0.25);
    border-color: var(--tier-color, var(--primary-color));
}

.pricing-card.featured {
    border-width: 3px;
    border-color: var(--primary-color);
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card.featured::before {
    opacity: 1;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-12px);
}

.pricing-card.featured::after {
    content: attr(data-popular-text);
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    padding: 0.35rem 3rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Plan Icon */
.plan-icon-wrapper {
    padding: 1.5rem 1.5rem 0;
    text-align: center;
}

.plan-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--tier-color, #667eea), color-mix(in srgb, var(--tier-color, #667eea) 70%, white));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.pricing-card:hover .plan-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Annual Savings Badge */
.annual-savings-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
    animation: badge-pulse 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Plan Header */
.plan-header {
    text-align: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.plan-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--tier-color, var(--primary-color));
    line-height: 1;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.15rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.35rem;
}

.plan-price .amount {
    font-size: inherit;
}

.plan-price .free-text {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.monthly-equivalent {
    margin-top: 0.5rem;
    padding: 0.35rem 0.75rem;
    background: #f8fafc;
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.monthly-equivalent i {
    color: var(--primary-color);
    font-size: 0.7rem;
}

/* Plan Features */
.plan-features {
    list-style: none;
    padding: 1.25rem 1.5rem;
    margin: 0;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    border-bottom: 1px dashed #f1f5f9;
    transition: all 0.2s ease;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:hover {
    padding-left: 0.5rem;
}

.plan-features li i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.plan-features li i.fa-check {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.plan-features li i.fa-check-circle {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    font-size: 0.85rem;
}

/* Feature-specific icons with semantic colors */
.plan-features li i.feature-icon-locations {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
}

.plan-features li i.feature-icon-users {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #ffffff;
}

.plan-features li i.feature-icon-products {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
}

.plan-features li i.feature-icon-invoices {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
}

.plan-features li i.feature-icon-premium {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
}

.plan-features li i.feature-icon-trial {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #ffffff;
}

.plan-features li.feature-highlight {
    font-weight: 600;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05), transparent);
    margin: 0 -1.5rem;
    padding: 0.75rem 1.5rem;
    border-bottom: none;
}

.plan-features li.feature-highlight:hover {
    padding-left: 1.75rem;
}

.plan-features li.feature-premium i.fa-star {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    font-size: 0.6rem;
}

.plan-features li.feature-bonus i.fa-gift {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #ffffff;
    font-size: 0.6rem;
}

.feature-value {
    font-weight: 700;
    color: var(--primary-color);
}

.feature-value.unlimited {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Plan Action */
.plan-action {
    padding: 1.25rem 1.5rem 1.5rem;
    margin-top: auto;
}

.plan-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    border-radius: 0.85rem;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.plan-button i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.plan-button:hover i {
    transform: translateX(3px);
}

.plan-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}

.plan-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.45);
    color: #ffffff;
}

.plan-button.secondary {
    background: #f8fafc;
    color: var(--tier-color, var(--primary-color));
    border-color: var(--tier-color, var(--primary-color));
}

.plan-button.secondary:hover {
    background: var(--tier-color, var(--primary-color));
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Tier Colors */
.pricing-card.tier-free { --tier-color: #10b981; }
.pricing-card.tier-starter { --tier-color: #3b82f6; }
.pricing-card.tier-growth { --tier-color: #8b5cf6; }
.pricing-card.tier-professional { --tier-color: #f59e0b; }
.pricing-card.tier-enterprise { --tier-color: #ef4444; }

.tw-w-12,
.tw-w-16,
.lg\:tw-w-16,
.tw-flex.tw-items-center.tw-justify-center.tw-mx-auto.tw-overflow-hidden.tw-bg-white.tw-rounded-full,
.tw-mt-20,
.tw-mb-10 {
    display: none !important;
}

/* Utility */
.badge-soft {
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-soft-success {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
    .frontend-main {
        padding: 2rem 0;
    }

    .frontend-navbar .navbar-collapse {
        padding: 1rem 0;
    }

    .frontend-navbar .nav-link {
        padding: 0.45rem 0.75rem;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .unified-section {
        padding: 3rem 0;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .page-header {
        padding: 3.5rem 0 2rem;
    }

    .feature-detail {
        text-align: center;
    }

    .demo-credentials .row {
        text-align: center;
    }

    .demo-credentials .col-md-6 {
        margin-bottom: 1rem;
    }

    .pricing-page {
        padding: 2rem 0;
    }

    .pricing-hero h1 {
        font-size: 1.75rem;
    }

    .pricing-hero p {
        font-size: 0.95rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 380px;
        gap: 1.25rem;
        padding: 0 0.75rem;
    }

    .pricing-card {
        width: 100%;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .pricing-card.featured::after {
        top: 15px;
        right: -40px;
        font-size: 0.6rem;
        padding: 0.3rem 2.5rem;
    }

    .plan-icon-wrapper {
        padding: 1rem 1rem 0;
    }

    .plan-icon {
        width: 56px;
        height: 56px;
        font-size: 1.35rem;
    }

    .plan-header {
        padding: 1rem;
    }

    .plan-name {
        font-size: 1.15rem;
    }

    .plan-price {
        font-size: 2.25rem;
    }

    .plan-price .currency {
        font-size: 1.25rem;
    }

    .plan-features {
        padding: 1rem;
    }

    .plan-features li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .plan-features li.feature-highlight {
        margin: 0 -1rem;
        padding: 0.6rem 1rem;
    }

    .plan-action {
        padding: 1rem;
    }

    .plan-button {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    .annual-savings-badge {
        top: 10px;
        left: 10px;
        font-size: 0.65rem;
        padding: 0.25rem 0.65rem;
    }

    .monthly-equivalent {
        font-size: 0.7rem;
    }

    .pricing-toggle {
        flex-direction: column;
        padding: 0.5rem 1rem;
        gap: 0.35rem;
    }

    .pricing-toggle label {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 750px;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1.02);
    }

    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-10px);
    }

    .plan-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .plan-price {
        font-size: 2.5rem;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .pricing-cards {
        max-width: 1000px;
        gap: 1.25rem;
    }

    .plan-features li {
        font-size: 0.85rem;
    }
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
}

.faq-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.faq-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    border-radius: var(--radius-base);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.faq-item.active {
    border-color: var(--primary-color);
    background: #ffffff;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .faq-section {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .faq-header h2 {
        font-size: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        font-size: 0.9rem;
        padding: 1rem;
    }
}

/* Free Plan CTA Styles */
.pricing-card.free-plan {
    border: 2px solid #10b981;
    position: relative;
    overflow: visible;
}

.pricing-card.free-plan::before {
    content: attr(data-free-text);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.free-plan-cta {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: var(--radius-base);
    padding: 1rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.free-plan-cta .cta-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
    }
}

.free-plan-cta .cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.free-plan-cta .cta-hook {
    font-weight: 700;
    font-size: 0.95rem;
    color: #065f46;
    line-height: 1.3;
}

.free-plan-cta .cta-subtext {
    font-size: 0.8rem;
    color: #047857;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.free-plan-cta .cta-subtext::before {
    content: '✓';
    font-weight: 700;
}

.plan-button.free-cta-button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: none;
    font-size: 1rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.plan-button.free-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.plan-button.free-cta-button:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.plan-button.free-cta-button i {
    animation: bolt-flash 1.5s ease-in-out infinite;
}

@keyframes bolt-flash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.free-guarantee {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.free-guarantee i {
    color: #10b981;
}

@media (max-width: 767px) {
    .free-plan-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .free-plan-cta .cta-text {
        align-items: center;
    }
}

/* Free Urgency Banner */
.free-urgency-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #92400e;
    animation: urgency-pulse 2s ease-in-out infinite;
}

@keyframes urgency-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.free-urgency-banner i {
    color: #dc2626;
    animation: fire-flicker 0.5s ease-in-out infinite alternate;
}

@keyframes fire-flicker {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* ===================================
   ENHANCED FOOTER STYLES
   =================================== */

.frontend-footer {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    padding-top: 4rem;
    margin-top: auto;
}

.footer-top {
    padding-bottom: 2.5rem;
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: var(--transition-base);
}

.footer-logo:hover {
    color: var(--primary-color);
}

.footer-logo i {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    text-decoration: none;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-link.linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #e6683c;
}

/* Footer Titles */
.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

[dir="rtl"] .footer-title::after {
    left: auto;
    right: 0;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.footer-menu a i {
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-base);
}

[dir="rtl"] .footer-menu a i {
    transform: translateX(5px) rotate(180deg);
}

.footer-menu a:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}

[dir="rtl"] .footer-menu a:hover {
    padding-left: 0;
    padding-right: 0.5rem;
}

.footer-menu a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(102, 126, 234, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text a,
.contact-text span {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.contact-text a:hover {
    color: var(--primary-color);
}

/* Newsletter */
.footer-newsletter p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
}

.newsletter-form .form-control::placeholder {
    color: #64748b;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form .btn {
    border-radius: 0 10px 10px 0;
    padding: 0.85rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.newsletter-form .btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    transform: scale(1.02);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.badge-item i {
    color: var(--success-color);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
}

.copyright {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-bottom-links .separator {
    color: #475569;
}

/* RTL Support */
[dir="rtl"] .footer-bottom-links {
    justify-content: flex-start;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .frontend-footer {
        padding-top: 3rem;
    }
    
    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .frontend-footer {
        padding-top: 2.5rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    [dir="rtl"] .footer-title::after {
        right: 50%;
        left: auto;
        transform: translateX(50%);
    }
    
    .footer-menu a {
        justify-content: center;
    }
    
    .footer-menu a:hover {
        padding-left: 0;
        padding-right: 0;
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .copyright {
        text-align: center;
    }
}

/* ===================================
   LANDING PAGE STYLES (Redesigned)
   =================================== */

/* ── LP Hero ───────────────────────────── */
.landing-page-body { overflow-x: hidden; }

.lp-hero {
    position: relative;
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #0f0c29 0%, #1e1b4b 40%, #312e81 100%);
    color: #fff;
    overflow: hidden;
}

.lp-hero__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.lp-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
    align-items: center;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #c7d2fe;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.lp-hero__badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #34d399;
    animation: lp-pulse 2s infinite;
}

@keyframes lp-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
    50% { opacity: .7; box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}

.lp-hero__title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.lp-hero__highlight {
    display: block;
    background: linear-gradient(90deg, #818cf8, #c084fc, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero__sub {
    font-size: 1.1rem;
    color: rgba(224, 231, 255, 0.75);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 520px;
}

.lp-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

.lp-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.lp-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(224, 231, 255, 0.65);
}

.lp-trust-pill i { font-size: 0.7rem; color: #34d399; }

/* ── LP Buttons ─────────────────────── */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.lp-btn--lg { padding: 0.85rem 1.85rem; font-size: 0.95rem; }

.lp-btn--primary {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}
.lp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.5);
    color: #fff;
}

.lp-btn--ghost {
    background: rgba(255,255,255,0.08);
    color: #e0e7ff;
    border: 1px solid rgba(255,255,255,0.15);
}
.lp-btn--ghost:hover { background: rgba(255,255,255,0.15); color: #fff; }

.lp-btn--ghost-light {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.3);
}
.lp-btn--ghost-light:hover { background: rgba(255,255,255,0.1); color: #fff; }

.lp-btn--outline {
    background: transparent;
    color: #4f46e5;
    border: 2px solid #4f46e5;
}
.lp-btn--outline:hover { background: #4f46e5; color: #fff; }

.lp-btn--white {
    background: #fff;
    color: #4f46e5;
    font-weight: 700;
}
.lp-btn--white:hover { background: #f1f5f9; color: #4338ca; transform: translateY(-2px); }

/* ── LP Hero Screen Mockup ──────────── */
.lp-hero__visual { position: relative; }

.lp-screen {
    background: #1e1b4b;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}

.lp-screen__bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lp-screen__dots { display: flex; gap: 5px; }
.lp-screen__dots span { width: 8px; height: 8px; border-radius: 50%; }
.lp-screen__dots span:nth-child(1) { background: #ef4444; }
.lp-screen__dots span:nth-child(2) { background: #f59e0b; }
.lp-screen__dots span:nth-child(3) { background: #22c55e; }
.lp-screen__label { margin-inline-start: auto; font-size: 0.72rem; color: rgba(255,255,255,0.4); font-weight: 500; }

.lp-screen__body { padding: 0.85rem; }

.lp-pos-mock {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 0.75rem;
    min-height: 260px;
}

.lp-pos-mock__search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255,255,255,0.06);
    border-radius: 0.5rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.72rem;
    margin-bottom: 0.5rem;
}

.lp-pos-mock__cats {
    display: flex; gap: 0.35rem; margin-bottom: 0.6rem; flex-wrap: wrap;
}

.lp-pos-mock__cats span {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 600;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.45);
    cursor: default;
}

.lp-pos-mock__cats span.active {
    background: rgba(99, 102, 241, 0.3);
    color: #c7d2fe;
}

.lp-pos-mock__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}

.lp-pos-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 0.5rem;
    padding: 0.5rem;
    text-align: center;
}

.lp-pos-item__img {
    width: 100%;
    height: 28px;
    border-radius: 0.3rem;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.2));
}

.lp-pos-item__img--2 { background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(52,211,153,0.2)); }
.lp-pos-item__img--3 { background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(251,191,36,0.2)); }
.lp-pos-item__img--4 { background: linear-gradient(135deg, rgba(14,165,233,0.2), rgba(56,189,248,0.2)); }
.lp-pos-item__img--5 { background: linear-gradient(135deg, rgba(244,63,94,0.2), rgba(251,113,133,0.2)); }
.lp-pos-item__img--6 { background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(192,132,252,0.2)); }

.lp-pos-item span { display: block; font-size: 0.62rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.lp-pos-item small { font-size: 0.6rem; color: #818cf8; font-weight: 700; }

.lp-pos-mock__right {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 0.5rem;
    padding: 0.6rem;
}

.lp-pos-mock__customer {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.lp-pos-mock__items { flex: 1; }

.lp-cart-row {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.lp-cart-row span:last-child { color: #c7d2fe; font-weight: 600; }

.lp-pos-mock__totals {
    margin-top: auto;
    padding-top: 0.4rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.lp-pos-mock__totals > div {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    padding: 0.15rem 0;
}

.lp-pos-mock__grand {
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    color: #fff !important;
}

.lp-pos-mock__grand span { color: #fff !important; }

.lp-pos-mock__pay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.45rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: default;
}

/* Floating cards on hero */
.lp-hero__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 0.65rem 0.85rem;
    border-radius: 0.75rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    animation: lp-float 3s ease-in-out infinite;
}

.lp-hero__float i { font-size: 1.1rem; }
.lp-hero__float strong { display: block; font-size: 0.95rem; color: #0f172a; font-weight: 800; }
.lp-hero__float small { display: block; font-size: 0.65rem; color: #64748b; }

.lp-hero__float--1 { top: 5%; right: -8%; animation-delay: 0s; }
.lp-hero__float--2 { bottom: 10%; left: -5%; animation-delay: 1.5s; }

@keyframes lp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ── LP Section Utilities ───────────── */
.lp-section__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
}

.lp-section__sub {
    color: #64748b;
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.lp-badge--light {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
}

/* ── Before / After Compare ─────────── */
.lp-compare {
    padding: 5rem 0;
    background: #fff;
}

.lp-compare__header { margin-bottom: 3rem; }

.lp-compare__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.lp-compare__col {
    border-radius: 1rem;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.lp-compare__col.lp-visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-compare__col--before {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fecaca;
}

.lp-compare__col--after {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #a7f3d0;
}

.lp-compare__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid;
}

.lp-compare__col--before .lp-compare__label { color: #dc2626; border-color: #fca5a5; }
.lp-compare__col--after .lp-compare__label { color: #059669; border-color: #6ee7b7; }

.lp-compare__item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.5;
}

.lp-compare__col--before .lp-compare__item i { color: #ef4444; margin-top: 0.15rem; }
.lp-compare__col--after .lp-compare__item i { color: #10b981; margin-top: 0.15rem; }

.lp-compare__vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
}

.lp-compare__vs-circle {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
}

/* ── Solutions Showcase ─────────────── */
.lp-solutions {
    padding: 5rem 0;
    background: #f8fafc;
}

.lp-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.lp-solution.lp-visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-solution--reverse { direction: ltr; }
.lp-solution--reverse .lp-solution__visual { order: -1; }

.lp-solution__icon {
    width: 56px; height: 56px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.lp-solution__icon i { font-size: 1.5rem; }

.lp-solution__content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.lp-solution__content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.lp-solution__chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.lp-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 0.78rem;
    font-weight: 500;
    color: #334155;
}

.lp-chip i { font-size: 0.6rem; color: #10b981; }

/* Mini screen mockups in solutions */
.lp-mini-screen {
    background: #0f172a;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.2);
}

.lp-mini-screen__bar {
    display: flex;
    gap: 5px;
    padding: 0.5rem 0.75rem;
    background: rgba(0,0,0,0.3);
}

.lp-mini-screen__bar span { width: 7px; height: 7px; border-radius: 50%; }
.lp-mini-screen__bar span:nth-child(1) { background: #ef4444; }
.lp-mini-screen__bar span:nth-child(2) { background: #f59e0b; }
.lp-mini-screen__bar span:nth-child(3) { background: #22c55e; }

.lp-mini-screen__body { padding: 1rem; }

.lp-mock-pos-mini { }

.lp-mock-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lp-mock-row--total {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: none;
    font-weight: 700;
    color: #fff;
    margin-top: 0.3rem;
    padding-top: 0.5rem;
}

.lp-mock-btn {
    margin-top: 0.75rem;
    padding: 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    border-radius: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.lp-mock-inv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.lp-mock-stat {
    text-align: center;
    padding: 0.75rem 0.5rem;
    border-radius: 0.5rem;
}

.lp-mock-stat--green { background: rgba(16, 185, 129, 0.15); }
.lp-mock-stat--red { background: rgba(239, 68, 68, 0.15); }
.lp-mock-stat--amber { background: rgba(245, 158, 11, 0.15); }

.lp-mock-stat strong { display: block; font-size: 1.2rem; color: #fff; font-weight: 800; }
.lp-mock-stat small { font-size: 0.68rem; color: rgba(255,255,255,0.5); }

.lp-mock-chart { padding: 0.5rem 0; }

.lp-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    height: 100px;
}

.lp-bar {
    flex: 1;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 3px 3px 0 0;
    transition: height 0.6s ease;
}

.lp-bar--accent { background: linear-gradient(180deg, #818cf8, #4f46e5); }

/* ── Steps Section ──────────────────── */
.lp-steps {
    padding: 5rem 0;
    background: #fff;
}

.lp-steps__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.lp-steps__line {
    position: absolute;
    top: 25px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, #e2e8f0, #4f46e5, #7c3aed, #34d399);
    border-radius: 3px;
    z-index: 0;
}

.lp-step {
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.lp-step.lp-visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-step__num {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: #4f46e5;
    transition: all 0.3s ease;
}

.lp-step:hover .lp-step__num {
    border-color: #4f46e5;
    background: #4f46e5;
    color: #fff;
}

.lp-step--highlight .lp-step__num {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    border-color: #4f46e5;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}

.lp-step__body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.4rem;
}

.lp-step__body p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* ── Social Proof / Testimonials ────── */
.lp-proof {
    padding: 5rem 0;
    background: #f8fafc;
}

.lp-proof__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp-testimonial {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.75rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(16px);
}

.lp-testimonial.lp-visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15,23,42,0.08);
    border-color: #c7d2fe;
}

.lp-testimonial__stars {
    color: #f59e0b;
    margin-bottom: 0.85rem;
    font-size: 0.85rem;
}

.lp-testimonial__stars i { margin-inline-end: 2px; }

.lp-testimonial__text {
    font-size: 0.92rem;
    color: #334155;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    border: none;
    padding: 0; margin-top: 0;
}

.lp-testimonial__result {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.lp-testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lp-testimonial__avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
}

.lp-testimonial__author strong {
    display: block;
    font-size: 0.9rem;
    color: #0f172a;
}

.lp-testimonial__author span {
    font-size: 0.78rem;
    color: #64748b;
}

/* ── Pricing Glimpse ────────────────── */
.lp-pricing-glimpse {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
    color: #fff;
}

.lp-pricing__inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.lp-pricing__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.65rem;
}

.lp-pricing__sub {
    color: rgba(224, 231, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.lp-pricing__perks {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.lp-pricing__perks li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: rgba(224, 231, 255, 0.85);
}

.lp-pricing__perks li i { color: #34d399; font-size: 0.85rem; }

.lp-price-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 24px 48px rgba(0,0,0,0.2);
    position: relative;
}

.lp-price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #78350f;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.lp-price-card__amount {
    margin: 1.5rem 0 0.5rem;
}

.lp-price-card__currency {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4f46e5;
}

.lp-price-card__period {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.lp-price-card__features {
    text-align: start;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-price-card__features div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #334155;
}

.lp-price-card__features div i { color: #10b981; font-size: 0.75rem; }

/* ── FAQ ────────────────────────────── */
.lp-faq {
    padding: 5rem 0;
    background: #fff;
}

.lp-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    max-width: 950px;
    margin: 0 auto;
}

.lp-faq__item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(12px);
}

.lp-faq__item.lp-visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-faq__item:hover,
.lp-faq__item.is-active { border-color: #4f46e5; }

.lp-faq__q {
    width: 100%;
    padding: 1.1rem 1.25rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: start;
    font-weight: 600;
    font-size: 0.92rem;
    color: #0f172a;
}

.lp-faq__q:hover { color: #4f46e5; }
.lp-faq__q i { color: #4f46e5; transition: transform 0.3s ease; font-size: 0.75rem; }
.lp-faq__item.is-active .lp-faq__q i { transform: rotate(180deg); }

.lp-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.lp-faq__item.is-active .lp-faq__a { max-height: 250px; }

.lp-faq__a p {
    padding: 0 1.25rem 1.25rem;
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Final CTA ──────────────────────── */
.lp-final-cta {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
    color: #fff;
    overflow: hidden;
}

.lp-final-cta__glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.25) 0%, transparent 70%);
    top: -200px; right: -150px;
    pointer-events: none;
}

.lp-final-cta__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.lp-final-cta__inner h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.lp-final-cta__inner > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.lp-final-cta__btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.lp-final-cta__note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.lp-final-cta__note i { color: #34d399; }

/* ── LP Responsive ──────────────────── */
@media (max-width: 991px) {
    .lp-hero { padding: 3.5rem 0 3rem; }
    .lp-hero__grid { grid-template-columns: 1fr; gap: 2rem; }
    .lp-hero__float { display: none; }
    .lp-compare__grid { grid-template-columns: 1fr; }
    .lp-compare__vs { padding: 0; }
    .lp-compare__vs-circle { margin: 0 auto; }
    .lp-solution { grid-template-columns: 1fr; gap: 2rem; }
    .lp-solution--reverse .lp-solution__visual { order: 0; }
    .lp-steps__track { grid-template-columns: repeat(2, 1fr); }
    .lp-steps__line { display: none; }
    .lp-proof__grid { grid-template-columns: 1fr 1fr; }
    .lp-pricing__inner { grid-template-columns: 1fr; }
    .lp-pricing__card { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 575px) {
    .lp-hero { padding: 2.5rem 0 2rem; }
    .lp-hero__ctas { flex-direction: column; }
    .lp-hero__trust { flex-direction: column; }
    .lp-pos-mock { grid-template-columns: 1fr; }
    .lp-pos-mock__right { display: none; }
    .lp-steps__track { grid-template-columns: 1fr; }
    .lp-proof__grid { grid-template-columns: 1fr; }
    .lp-faq__grid { grid-template-columns: 1fr; }
    .lp-compare__grid { gap: 1rem; }
}

/* ── LP RTL Support ─────────────────── */
[dir="rtl"] .lp-hero__grid,
[dir="rtl"] .lp-solution,
[dir="rtl"] .lp-pricing__inner { direction: rtl; }

[dir="rtl"] .lp-solution--reverse .lp-solution__visual { order: 0; }

[dir="rtl"] .lp-hero__float--1 { right: auto; left: -8%; }
[dir="rtl"] .lp-hero__float--2 { left: auto; right: -5%; }

[dir="rtl"] .lp-compare__label,
[dir="rtl"] .lp-compare__item,
[dir="rtl"] .lp-pos-mock__customer,
[dir="rtl"] .lp-testimonial__author,
[dir="rtl"] .lp-pricing__perks li,
[dir="rtl"] .lp-price-card__features div,
[dir="rtl"] .lp-chip,
[dir="rtl"] .lp-trust-pill,
[dir="rtl"] .lp-hero__badge,
[dir="rtl"] .lp-faq__q,
[dir="rtl"] .lp-final-cta__note { direction: rtl; }

[dir="rtl"] .lp-faq__q { text-align: right; }
[dir="rtl"] .lp-faq__a p { text-align: right; }

[dir="rtl"] .lp-steps__line { left: 12.5%; right: 12.5%; }

[dir="rtl"] .lp-final-cta__glow { right: auto; left: -150px; }

[dir="rtl"] .lp-screen__label { margin-inline-start: auto; margin-inline-end: 0; }

[dir="rtl"] .lp-btn i { order: 1; }

[dir="rtl"] .lp-testimonial__stars i { margin-inline-end: 2px; margin-inline-start: 0; }

/* ===================================
   FEATURES PAGE STYLES
   =================================== */

.features-page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 0 4rem;
    color: #ffffff;
}

.features-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.features-hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Navigation */
.features-nav-section {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 60px;
    z-index: 100;
}

.features-nav-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 0;
}

.feature-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.feature-nav-item:hover {
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.2);
}

.feature-nav-item i {
    font-size: 1rem;
}

/* Feature Sections */
.feature-section {
    padding: 5rem 0;
}

.feature-section-alt {
    background: #f8fafc;
}

.feature-content {
    position: relative;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
}

.feature-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.benefit-item i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.feature-image-wrapper {
    position: relative;
}

.feature-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

/* All Features Section */
.all-features-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mini-feature-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition-base);
}

.mini-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
    border-color: var(--primary-color);
}

.mini-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mini-feature-icon i {
    font-size: 1.25rem;
}

.mini-feature-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.mini-feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Features CTA */
.features-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.features-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.features-cta-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.features-cta-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.features-cta-buttons {
    margin-bottom: 1.5rem;
}

.features-cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .landing-hero {
        padding: 3rem 0;
    }
    
    .hero-float-card {
        display: none;
    }
    
    .feature-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .features-nav-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .feature-nav-item {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .pain-points-section,
    .solutions-section,
    .how-it-works-section,
    .testimonials-section,
    .landing-faq-section,
    .feature-section,
    .all-features-section {
        padding: 3rem 0;
    }
    
    .hero-trust-signals {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .trust-badges-grid {
        flex-direction: column;
        align-items: center;
    }
}
