/* ============================================
   E-SHOPS ISRAEL - Complete Stylesheet
   ============================================ */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --accent: #f59e0b;
    --purple: #8b5cf6;
    --orange: #f97316;
    --pink: #ec4899;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Heebo', 'Poppins', sans-serif;
    line-height: 1.6;
    /* color: white - removed for visibility */
    background: var(--white);
    overflow-x: hidden;
}

[dir="ltr"] body {
    font-family: 'Poppins', 'Heebo', sans-serif;
}

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

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.loader-ring:nth-child(2) { width: 80%; height: 80%; animation-delay: -0.2s; }
.loader-ring:nth-child(3) { width: 60%; height: 60%; animation-delay: -0.4s; }

.loader-logo {
    width: 60px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
    filter: brightness(0) invert(1);
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* ============================================
   HEADER
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 45px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.lang-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    padding: 8px 14px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.lang-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.5); }
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #a5b4fc, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-plus, .stat-percent, .stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.3);
}

/* Phone Showcase */
.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-showcase {
    position: relative;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.phone-frame {
    position: relative;
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.4);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #000;
    border-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
}

.app-demo {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: var(--gradient-primary);
    padding: 40px 15px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.app-logo-small {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-header span {
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem;
}

.app-menu-dots {
    display: flex;
    gap: 3px;
}

.app-menu-dots span {
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
}

.app-promo-banner {
    background: linear-gradient(135deg, var(--accent), var(--orange));
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.app-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px;
}

.app-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.app-card-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.app-card span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-700);
}

.app-order-confirmed {
    margin: 15px;
    background: var(--secondary);
    color: white;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Floating Notifications */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-notif {
    position: absolute;
    background: white;
    padding: 10px 16px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    font-size: 0.8rem;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

.floating-notif i {
    color: var(--primary);
}

.floating-1 { top: 60px; right: -30px; }
.floating-2 { top: 180px; left: -50px; animation-delay: 1s; }
.floating-2 i { color: var(--pink); }
.floating-3 { bottom: 120px; right: -20px; animation-delay: 2s; }
.floating-3 i { color: var(--secondary); }

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    opacity: 0.7;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid currentColor;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(5px); }
}

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

.scroll-indicator span {
    font-size: 0.75rem;
}

/* ============================================
   FEATURE SECTIONS
   ============================================ */
.feature-section {
    padding: 100px 0;
}

.feature-section.feature-alt {
    background: var(--gray-50);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-grid.reverse {
    direction: ltr;
}

[dir="rtl"] .feature-grid.reverse {
    direction: rtl;
}

[dir="rtl"] .feature-grid.reverse > * {
    direction: rtl;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-badge.orange { background: rgba(249, 115, 22, 0.1); color: var(--orange); }
.feature-badge.green { background: rgba(16, 185, 129, 0.1); color: var(--secondary); }
.feature-badge.purple { background: rgba(139, 92, 246, 0.1); color: var(--purple); }

.feature-title {
    color: var(--dark) !important;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.feature-title .highlight { color: var(--primary); }
.feature-title .highlight.orange { color: var(--orange); }
.feature-title .highlight.green { color: var(--secondary); }
.feature-title .highlight.purple { color: var(--purple); }

.feature-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-list-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.feature-list-icon.orange { background: linear-gradient(135deg, var(--orange), #fb923c); }
.feature-list-icon.green { background: linear-gradient(135deg, var(--secondary), #34d399); }
.feature-list-icon.purple { background: linear-gradient(135deg, var(--purple), #a78bfa); }

.feature-list li strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.feature-list li p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin: 0;
}

/* ============================================
   VISIBILITY MOCKUP (iPhone Home Screen)
   ============================================ */
.iphone-mockup-container {
    position: relative;
}

.iphone-mockup {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 45px;
    padding: 10px;
    margin: 0 auto;
    box-shadow: 0 50px 100px rgba(0,0,0,0.2);
}

.iphone-notch {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 25px;
    background: #000;
    border-radius: 15px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1e3a5f 0%, #2d5a87 100%);
    border-radius: 38px;
    overflow: hidden;
    padding: 50px 15px 20px;
}

.ios-status-bar {
    text-align: center;
    margin-bottom: 10px;
}

.ios-time {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.ios-date {
    color: white;
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
}

.ios-apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.ios-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
}

.ios-app-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.ios-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.ios-app span {
    font-size: 0.6rem;
    color: white;
    text-align: center;
}

.ios-app.your-app {
    animation: pulse-app 2s ease-in-out infinite;
}

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

.your-app-icon {
    background: var(--gradient-primary) !important;
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.5);
}

.app-notification-badge {
    position: absolute;
    top: -5px;
    right: 5px;
    width: 18px;
    height: 18px;
    background: #ff3b30;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ios-dock {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 10px 20px;
    margin-top: auto;
}

.dock-app {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.visibility-stats {
    position: absolute;
    bottom: -20px;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.visibility-stat {
    background: white;
    padding: 15px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.visibility-stat .stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.visibility-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.visibility-stat .stat-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ============================================
   NOTIFICATIONS MOCKUP
   ============================================ */
.notif-mockup-container {
    position: relative;
}

.notif-phone {
    width: 280px;
    height: 500px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 10px;
    margin: 0 auto;
    box-shadow: 0 50px 100px rgba(0,0,0,0.2);
}

.notif-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e, #16213e);
    border-radius: 32px;
    padding: 40px 15px 20px;
}

.notif-status-bar {
    text-align: center;
    margin-bottom: 5px;
}

.notif-time {
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
}

.notif-date {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 30px;
}

.notif-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notif-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 12px;
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slide-in 0.5s ease forwards;
}

.notif-anim-1 { animation-delay: 0.2s; }
.notif-anim-2 { animation-delay: 0.4s; }
.notif-anim-3 { animation-delay: 0.6s; }

@keyframes slide-in {
    to { opacity: 1; transform: translateX(0); }
}

.notif-app-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.notif-app-icon.loyalty { background: linear-gradient(135deg, var(--secondary), #34d399); }
.notif-app-icon.reminder { background: linear-gradient(135deg, var(--purple), #a78bfa); }

.notif-content {
    flex: 1;
}

.notif-content strong {
    display: block;
    color: white;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.notif-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    margin: 0;
}

.notif-highlights {
    position: absolute;
    bottom: 0;
    right: -80px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notif-highlight {
    background: white;
    padding: 12px 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.highlight-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--secondary); }
.highlight-icon.orange { background: rgba(249, 115, 22, 0.1); color: var(--orange); }

.notif-highlight strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
}

.notif-highlight p {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin: 0;
}

/* Comparison Bars */
.comparison-bars {
    margin: 25px 0;
}

.comparison-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.bar-label {
    width: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
}

.bar-track {
    flex: 1;
    height: 12px;
    background: var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gray-400);
    border-radius: 6px;
    transition: width 1s ease;
}

.bar-fill.push {
    background: linear-gradient(90deg, var(--orange), #fb923c);
}

.bar-value {
    width: 45px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    text-align: left;
}

.comparison-bar.highlight .bar-value {
    color: var(--orange);
}

/* ============================================
   LOYALTY MOCKUP
   ============================================ */
.loyalty-mockup-container {
    position: relative;
}

.loyalty-phone {
    width: 280px;
    height: 480px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 10px;
    margin: 0 auto;
    box-shadow: 0 50px 100px rgba(0,0,0,0.2);
}

.loyalty-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8f9fa, #ffffff);
    border-radius: 32px;
    overflow: hidden;
}

.loyalty-header {
    background: var(--gradient-primary);
    padding: 30px 20px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.loyalty-app-logo {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(1);
}

.loyalty-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    padding: 20px;
}

.loyalty-card {
    margin: 0 20px;
    background: linear-gradient(145deg, var(--primary), var(--purple));
    border-radius: 20px;
    padding: 25px;
    color: white;
}

.loyalty-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.loyalty-stars i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.loyalty-stars i.far {
    color: rgba(255,255,255,0.3);
}

.loyalty-points {
    text-align: center;
    margin-bottom: 15px;
}

.points-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.points-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.loyalty-progress {
    margin-bottom: 0;
}

.progress-bar {
    height: 8px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: white;
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-text {
    font-size: 0.75rem;
    opacity: 0.9;
    text-align: center;
    display: block;
}

.loyalty-rewards {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.reward-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: var(--gray-100);
    padding: 12px 15px;
    border-radius: 12px;
}

.reward-item i {
    font-size: 1.2rem;
    color: var(--secondary);
}

.reward-discount {
    font-size: 1rem;
    font-weight: 800;
    color: var(--orange);
}

.reward-item span:last-child {
    font-size: 0.65rem;
    color: var(--gray-600);
}

/* ============================================
   E-COMMERCE MOCKUP
   ============================================ */
.ecommerce-mockup-container {
    position: relative;
}

.ecommerce-phone {
    width: 280px;
    height: 480px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 10px;
    margin: 0 auto;
    box-shadow: 0 50px 100px rgba(0,0,0,0.2);
}

.ecommerce-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ecommerce-header {
    background: var(--gradient-primary);
    padding: 35px 15px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.ecommerce-header span {
    font-weight: 600;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: var(--orange);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecommerce-products {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ecom-product {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    padding: 12px;
    border-radius: 12px;
    position: relative;
}

.ecom-product.special {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 146, 60, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.product-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: var(--orange);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
}

.product-image {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.product-info {
    flex: 1;
}

.product-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
}

.product-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.ecommerce-total {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    font-weight: 600;
}

.total-price {
    color: var(--primary);
    font-size: 1.1rem;
}

.ecommerce-checkout {
    margin: 15px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.ecommerce-features {
    position: absolute;
    bottom: 20px;
    right: -100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.ecom-feature {
    background: white;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
    white-space: nowrap;
}

.ecom-feature i {
    color: var(--secondary);
}

/* ============================================
   COMPARATIF SECTION
   ============================================ */
.comparatif-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-50), white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-badge.gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.comparisons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.comparison-number {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.comparison-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    text-align: center;
}

.comparison-content {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    gap: 20px;
    align-items: start;
}

.comparison-side {
    padding: 15px;
    border-radius: var(--radius);
}

.comparison-side.bad {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.comparison-side.good {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.comparison-side h4 {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.comparison-side.bad h4 { color: #dc2626; }
.comparison-side.good h4 { color: var(--secondary); }

.comparison-side ul {
    list-style: none;
    margin-bottom: 10px;
}

.comparison-side ul li {
    font-size: 0.75rem;
    color: var(--gray-600);
    padding: 4px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    line-height: 1.3;
}

.comparison-side ul li:last-child {
    border-bottom: none;
}

.comparison-cost {
    text-align: center;
    padding-top: 10px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.comparison-cost span {
    display: block;
    font-size: 0.65rem;
    color: var(--gray-500);
    margin-bottom: 3px;
}

.comparison-cost strong {
    font-size: 0.85rem;
}

.comparison-cost.bad strong { color: #dc2626; }
.comparison-cost.good strong { color: var(--secondary); }

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: white;
    background: var(--gradient-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    align-self: center;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Savings Summary */
.savings-summary {
    background: linear-gradient(135deg, var(--primary), var(--purple));
    border-radius: var(--radius-xl);
    padding: 40px;
    color: white;
    text-align: center;
}

.savings-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.savings-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.saving-item {
    background: rgba(255,255,255,0.15);
    padding: 15px 25px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.saving-item span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.saving-item strong {
    font-size: 1.2rem;
}

.savings-total {
    background: white;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    border-radius: var(--radius-lg);
}

.savings-total span {
    font-size: 1rem;
}

.savings-total strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
}

/* ============================================
   TECH STATS SECTION
   ============================================ */
.tech-stats-section {
    padding: 80px 0;
    background: var(--dark);
}

.tech-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tech-stat {
    text-align: center;
    color: white;
}

.tech-stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--primary-light);
}

.tech-stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.tech-stat-unit {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.8;
}

.tech-stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 5px;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc, white);
}

.portfolio-item {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.portfolio-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

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

.portfolio-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}

.portfolio-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.portfolio-desc {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.portfolio-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.gallery-item {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 10px;
}

.gallery-item span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.portfolio-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: var(--radius-lg);
    border: 2px dashed var(--primary);
}

.portfolio-cta p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.contact-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.contact-cta {
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
}

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

/* ============================================
   SCROLL REVEAL
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.delay-1 { transition-delay: 0.1s; }
.scroll-reveal.delay-2 { transition-delay: 0.2s; }

/* Animation classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeLeft 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    to { opacity: 1; transform: translateX(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .feature-visual {
        order: -1;
    }
    
    .comparisons-grid {
        max-width: 100%;
    }
    
    .tech-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .visibility-stats,
    .notif-highlights,
    .ecommerce-features {
        position: static;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .feature-title,
    .section-title {
        font-size: 1.8rem;
    }
    
    .comparisons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 10px;
    }

    .comparison-card {
        padding: 15px;
    }

    .comparison-content {
        grid-template-columns: 1fr 35px 1fr;
        gap: 10px;
        align-items: start;
    }

    .comparison-side {
        padding: 10px;
    }

    .comparison-side h4 {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }

    .comparison-side ul li {
        font-size: 0.65rem;
        padding: 3px 0;
        line-height: 1.25;
    }

    .comparison-cost {
        padding-top: 8px;
    }

    .comparison-cost span {
        font-size: 0.6rem;
    }

    .comparison-cost strong {
        font-size: 0.75rem;
    }

    .comparison-vs {
        width: 30px;
        height: 30px;
        font-size: 0.6rem;
    }

    .comparison-title {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .comparison-number {
        font-size: 0.55rem;
        padding: 2px 6px;
    }

    .tech-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .savings-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .savings-total {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .portfolio-gallery {
        flex-wrap: nowrap;
    }
    
    .gallery-item {
        width: 160px;
    }
    
    .gallery-item img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .lang-switcher {
        gap: 5px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-section {
        padding: 60px 0;
    }
    
    .iphone-mockup,
    .notif-phone,
    .loyalty-phone,
    .ecommerce-phone {
        width: 240px;
        height: auto;
    }
    
    .tech-stat-number {
        font-size: 2rem;
    }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.pricing-section.pricing-bottom {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    border: 2px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 25px;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--primary);
}

.pricing-card.popular .pricing-icon {
    background: var(--gradient-primary);
    color: white;
}

.pricing-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.pricing-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-500);
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.pricing-card.popular .pricing-amount {
    color: var(--primary-dark);
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.pricing-price-eur {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 25px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-50);
    font-size: 0.9rem;
    color: var(--gray-600);
}

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

.pricing-features li i {
    color: var(--secondary);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-features li.highlight {
    color: var(--dark);
    font-weight: 600;
}

.pricing-features li.highlight i {
    color: var(--primary);
}

.pricing-features li.disabled {
    color: var(--gray-400);
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: var(--gray-300);
}

.pricing-cta {
    margin-top: auto;
}

.pricing-cta .btn {
    width: 100%;
    justify-content: center;
}

.pricing-card.popular .pricing-cta .btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.pricing-card.popular .pricing-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.pricing-guarantee {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.pricing-guarantee i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.pricing-guarantee h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.pricing-guarantee p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Pricing Responsive */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card {
        padding: 30px 25px;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }
}

/* RTL Adjustments */
[dir="rtl"] .hero-cta .btn i {
    transform: rotate(180deg);
}

[dir="rtl"] .feature-list li {
    flex-direction: row;
}

[dir="rtl"] .btn-secondary i {
    transform: rotate(180deg);
}

[dir="rtl"] .pricing-features li {
    flex-direction: row;
}
