/* ===== VARIABLES ===== */
:root {
    --teal: #1F4FE0;
    --teal-light: #EBF0FC;
    --teal-dark: #1A45C5;
    --orange: #5FA0E6;
    --orange-light: #EDF4FC;
    --orange-dark: #2E6BFF;
    --purple: #5B5FC7;
    --purple-light: #EEEEF9;
    --pink: #E91E63;
    --pink-light: #FCE4EC;
    --green: #2E7D32;
    --green-light: #E8F5E9;
    --amber: #F59E0B;
    --amber-light: #FEF3C7;
    --dark: #0B0F1A;
    --dark-2: #1F2937;
    --gray-900: #0B0F1A;
    --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: #F7F9FC;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #1F4FE0 0%, #5FA0E6 100%);
    --gradient-soft: linear-gradient(135deg, #EBF0FC 0%, #EDF4FC 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-teal: 0 8px 30px rgba(31,79,224,0.2);
    --shadow-orange: 0 8px 30px rgba(95,160,230,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-en: 'Plus Jakarta Sans', sans-serif;
    --font-ar: 'Noto Kufi Arabic', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-en);
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
html[dir="rtl"] body { font-family: var(--font-ar); }
html[dir="rtl"] .hero-actions .btn svg,
html[dir="rtl"] .link-arrow svg,
html[dir="rtl"] .step-line { transform: scaleX(-1); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 14px 0; background: transparent; transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06); padding: 10px 0;
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 10px; z-index: 1001; }
.logo-text { font-size: 1.45rem; font-weight: 800; color: var(--dark); }
.hero .logo-text { color: var(--white); }

.nav-links { display: flex; list-style: none; gap: 4px; }
.nav-links a {
    padding: 8px 14px; border-radius: 8px; font-size: 0.88rem; font-weight: 500;
    color: var(--gray-600); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-light); }
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.75); }
.navbar:not(.scrolled) .nav-links a:hover,
.navbar:not(.scrolled) .nav-links a.active { color: #fff; background: rgba(255,255,255,0.12); }

.nav-actions { display: flex; align-items: center; gap: 10px; position: relative; z-index: 1001; }

.nav-search-btn {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    border: 1px solid var(--gray-200); background: var(--white); color: var(--gray-700);
    cursor: pointer; transition: var(--transition);
}
.nav-search-btn:hover { border-color: var(--teal); color: var(--teal); }
.navbar:not(.scrolled) .nav-search-btn { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; }

.lang-switcher {
    display: flex; align-items: center; justify-content: center; gap: 5px;
    padding: 0 12px; height: 36px; border-radius: 8px;
    border: 1px solid var(--gray-200); background: var(--white); color: var(--gray-700);
    cursor: pointer; font-size: 0.82rem; font-weight: 600; font-family: inherit; transition: var(--transition);
}
.lang-switcher:hover { border-color: var(--teal); color: var(--teal); }
.navbar:not(.scrolled) .lang-switcher { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; }

/* SAR Symbol */
.sar-icon { display: inline-flex; align-items: center; justify-content: center; width: 1em; height: 1em; vertical-align: -0.1em; }
.sar-icon svg { width: 100%; height: 100%; fill: currentColor; }

/* Currency Dropdown */
.currency-selector { position: relative; }
.currency-selected {
    padding: 0 26px 0 10px; height: 36px; border-radius: 8px; border: 1px solid var(--gray-200);
    background: var(--white); color: var(--gray-700); font-size: 1rem; font-weight: 600;
    cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: center;
    gap: 0; white-space: nowrap; min-width: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 8px center;
}
html[dir="rtl"] .currency-selected { padding: 7px 12px 7px 28px; background-position: left 10px center; }
.navbar:not(.scrolled) .currency-selected { border-color: rgba(255,255,255,0.2); background-color: rgba(255,255,255,0.08); color: #fff; }
.currency-dropdown {
    display: none; position: absolute; top: calc(100% + 4px); left: 0; z-index: 100;
    background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); min-width: 100%; overflow: hidden;
}
html[dir="rtl"] .currency-dropdown { left: auto; right: 0; }
.currency-selector.open .currency-dropdown { display: block; }
.currency-option {
    padding: 10px 16px; cursor: pointer; font-size: 1rem; font-weight: 600;
    color: var(--gray-700); display: flex; align-items: center; justify-content: center;
    gap: 0; white-space: nowrap;
}
.currency-option:hover { background: var(--gray-50); }
.currency-option.active { background: var(--teal-light); color: var(--teal); }

.btn-login { font-size: 0.88rem; font-weight: 600; color: var(--gray-600); padding: 8px 14px; border-radius: 8px; }
.btn-login:hover { color: var(--teal); }
.navbar:not(.scrolled) .btn-login { color: rgba(255,255,255,0.8); }
.navbar:not(.scrolled) .btn-login:hover { color: #fff; }

.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 10px; font-weight: 600; font-size: 0.9rem; border: none; cursor: pointer; transition: var(--transition); font-family: inherit; white-space: nowrap; }
.btn-primary-sm { padding: 9px 20px; background: var(--teal); color: #fff; border-radius: 10px; font-weight: 600; font-size: 0.88rem; }
.btn-primary-sm:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--shadow-teal); }
.btn-primary { padding: 14px 28px; background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-teal); }
.btn-ghost { padding: 14px 28px; background: transparent; color: var(--gray-700); border: 1px solid var(--gray-200); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 14px; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; position: relative; }
.mob-nav-only, .mob-nav-divider { display: none; }
.menu-toggle span { width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: var(--transition); }
.navbar:not(.scrolled) .menu-toggle span { background: #fff; }
.menu-toggle.active span { background: var(--gray-700) !important; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center; position: relative;
    padding: 120px 0 140px; overflow: hidden;
    background: linear-gradient(160deg, #0B0F1A 0%, #132257 30%, #1F4FE0 55%, #2E6BFF 75%, #5FA0E6 100%);
}
.hero-decoration { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.deco-circle { position: absolute; border-radius: 50%; }
.deco-1 { width: 500px; height: 500px; top: -150px; right: -80px; background: rgba(255,255,255,0.04); animation: drift 20s ease-in-out infinite; }
.deco-2 { width: 350px; height: 350px; bottom: -80px; left: -60px; background: rgba(255,255,255,0.03); animation: drift 16s ease-in-out infinite reverse; }
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-20px); } }

.wave-separator { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.wave-separator svg { width: 100%; height: 80px; }

.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-content { color: #fff; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px; font-size: 0.82rem; font-weight: 600; color: #fff;
    margin-bottom: 28px; backdrop-filter: blur(8px); animation: fadeUp 0.6s ease-out;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; animation: blink 2s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-meta {
    font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,0.85); margin-bottom: 16px;
    animation: fadeUp 0.6s ease-out both; letter-spacing: 0.3px;
}
.hero-meta-highlight { color: #4ADE80; font-weight: 700; }

.hero-content h1 { font-size: 1.8rem; font-weight: 800; line-height: 1.3; margin-bottom: 20px; animation: fadeUp 0.6s ease-out 0.1s both; }

/* Hero Carousel */
.hero-carousel {
    height: 36px; overflow: hidden; margin-bottom: 32px; animation: fadeUp 0.6s ease-out 0.15s both;
}
.hero-carousel-track { transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.hero-carousel-slide {
    display: flex; align-items: center; gap: 10px; height: 36px; opacity: 0.3;
    transition: opacity 0.4s ease;
}
.hero-carousel-slide.active { opacity: 1; }
.hero-carousel-slide span { font-size: 1.05rem; font-weight: 600; color: #fff; }

/* Hero Search Box */
.hero-search-box {
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-radius: 20px; padding: 24px; max-width: 440px;
    animation: fadeUp 0.6s ease-out 0.2s both; position: relative; z-index: 10;
}
.hero-search-field { position: relative; z-index: 100; }
.hero-search-label { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.hero-search-input-wrap {
    display: flex; align-items: center; gap: 10px; padding: 4px 16px;
    background: #fff; border-radius: 14px; height: 50px; position: relative;
    border: 2px solid transparent; transition: border-color 0.2s ease;
}
.hero-search-input-wrap:focus-within { border-color: var(--teal); }
.hero-search-divider { width: 1px; height: 16px; background: var(--gray-200); border-radius: 1px; flex-shrink: 0; }
.hero-search-input-wrap input {
    flex: 1; border: none; outline: none; font-size: 0.95rem; font-family: inherit;
    color: var(--dark); background: transparent;
}
.hero-search-input-wrap input::placeholder { color: var(--gray-400); }
.hero-search-clear {
    background: none; border: none; cursor: pointer; padding: 4px; display: flex;
    align-items: center; justify-content: center; border-radius: 50%;
    transition: background 0.2s;
}
.hero-search-clear:hover { background: var(--gray-100); }
html[dir="rtl"] .hero-search-input-wrap input { text-align: right; }

/* Search Results Dropdown */
.hero-search-results {
    display: none; position: absolute; left: 0; right: 0; top: 100%; margin-top: 4px;
    background: #fff; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    max-height: 280px; overflow-y: auto; z-index: 100; padding: 8px;
}
.hero-search-results.active { display: block; }
.hero-search-result {
    display: flex; align-items: center; gap: 12px; padding: 10px 14px;
    border-radius: 12px; cursor: pointer; text-decoration: none; color: var(--dark);
    transition: background 0.15s;
}
.hero-search-result:hover { background: var(--gray-50); }
.hero-search-result-flag { width: 28px; height: 20px; object-fit: cover; border-radius: 3px; }
.hero-search-result-flag-emoji { font-size: 1.3rem; }
.hero-search-result-info { flex: 1; }
.hero-search-result-name { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.hero-search-result-price { font-size: 0.78rem; color: var(--gray-500); }
.hero-search-result-arrow { color: var(--gray-300); flex-shrink: 0; transition: transform 0.15s; }
.hero-search-result:hover .hero-search-result-arrow { color: var(--teal); }
html[dir="rtl"] .hero-search-result-arrow { transform: scaleX(-1); }
html[dir="rtl"] .hero-search-result { text-align: right; }
html[dir="rtl"] .hero-search-result-price { text-align: right; }
.hero-search-no-results {
    padding: 20px; text-align: center; color: var(--gray-400); font-size: 0.88rem;
}

/* Duration Selector */
.hero-duration { margin-top: 14px; }
.hero-duration-label { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.hero-duration-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-dur-btn {
    padding: 10px 6px; min-width: 52px; border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08); color: #fff; border-radius: 12px;
    cursor: pointer; font-family: inherit; transition: all 0.2s ease;
    display: flex; flex-direction: column; align-items: center; gap: 1px;
}
.dur-num { font-size: 1.05rem; font-weight: 800; line-height: 1.2; }
.dur-unit { font-size: 0.62rem; font-weight: 500; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-dur-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }
.hero-dur-btn.active {
    background: #fff; color: var(--teal); border-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.hero-dur-btn.active .dur-unit { opacity: 1; }

/* Search Button */
.hero-search-btn {
    width: 100%; margin-top: 12px; justify-content: center; gap: 8px;
    background: var(--teal); color: #fff; padding: 14px; border-radius: 14px;
    font-weight: 700; font-size: 0.95rem; display: flex; align-items: center;
    border: none; cursor: pointer; font-family: inherit; transition: var(--transition);
}
.hero-search-btn:hover:not(:disabled) { background: var(--teal-dark); box-shadow: 0 8px 24px rgba(31,79,224,0.3); }
.hero-search-btn:disabled { opacity: 0.5; cursor: default; }

.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 28px; animation: fadeUp 0.6s ease-out 0.4s both; position: relative; z-index: 1; }
.trust-avatars { display: flex; }
.avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.75rem; font-weight: 700; border: 2px solid rgba(255,255,255,0.3); margin-left: -8px; }
.avatar:first-child { margin-left: 0; }
html[dir="rtl"] .avatar { margin-left: 0; margin-right: -8px; }
html[dir="rtl"] .avatar:first-child { margin-right: 0; }
.trust-stars { color: #FBBF24; font-size: 0.85rem; letter-spacing: 1px; }
.trust-text span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Hero Visual — Live Activity */
.hero-visual { position: relative; display: flex; justify-content: center; animation: fadeUp 0.8s ease-out 0.3s both; }

.live-activity { width: 380px; max-width: 100%; }
.live-title {
    font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 16px;
    text-align: center;
}

.live-card {
    background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; padding: 16px;
    color: #fff; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.live-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
a.live-card-link { text-decoration: none; color: #fff; display: block; cursor: pointer; }
a.live-card-link:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); border-color: rgba(255,255,255,0.3); }

.live-card-wide {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 12px; padding: 18px 20px;
}
.live-card-right { display: flex; flex-direction: column; gap: 6px; }
.live-card-left { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
html[dir="rtl"] .live-card-left { align-items: flex-start; }

.live-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.live-card-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.live-flag-img { width: 24px; height: 18px; object-fit: cover; border-radius: 3px; }
.live-country { font-size: 0.95rem; font-weight: 700; }

.live-card-desc { font-size: 0.72rem; color: rgba(255,255,255,0.65); display: block; margin-bottom: 4px; }
.live-num { font-size: 1.8rem; font-weight: 800; display: block; line-height: 1.1; }
.live-num-accent { color: #4ADE80; }
.live-sub { font-size: 0.72rem; color: rgba(255,255,255,0.6); display: block; margin-bottom: 6px; }
.live-time { font-size: 0.7rem; color: rgba(255,255,255,0.5); display: block; margin-bottom: 6px; }

.live-growth {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.75rem; font-weight: 600; color: #4ADE80;
}

.live-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.68rem; font-weight: 600; color: #4ADE80;
    background: rgba(74,222,128,0.15); padding: 3px 10px; border-radius: 100px;
}
.live-badge-purple {
    color: #c4b5fd; background: rgba(196,181,253,0.15);
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.68rem; font-weight: 600; padding: 3px 10px; border-radius: 100px;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; animation: blink 2s infinite; }

.live-bar-row { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.live-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.15); border-radius: 4px; overflow: hidden; }
.live-bar-fill { height: 100%; background: #4ADE80; border-radius: 4px; transition: width 1s ease; }
.live-bar-teal { background: var(--teal); }

/* Animate number change */
@keyframes numPulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }
.live-num-updating { animation: numPulse 0.4s ease; }

/* ===== PARTNERS ===== */
.partners { padding: 36px 0; background: var(--white); border-bottom: 1px solid var(--gray-100); }
.partners-label { text-align: center; font-size: 0.78rem; color: var(--gray-400); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }
.partners-track { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent); }
.partners-logos { display: flex; gap: 48px; animation: scroll 25s linear infinite; white-space: nowrap; }
.partner-item {
    display: flex; align-items: center; gap: 10px; flex-shrink: 0;
    font-size: 0.9rem; font-weight: 700; color: var(--gray-400); letter-spacing: 0.5px;
}
.partner-item img { height: 28px; width: auto; object-fit: contain; filter: grayscale(100%) opacity(0.5); transition: filter 0.3s; }
.partner-item:hover img { filter: grayscale(0%) opacity(1); }
.partner-item span { white-space: nowrap; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-tag {
    display: inline-block; padding: 6px 16px; background: var(--teal-light); border-radius: 100px;
    font-size: 0.78rem; font-weight: 700; color: var(--teal); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px;
}
.section-header h2 { font-size: 2.4rem; font-weight: 800; color: var(--dark); margin-bottom: 14px; line-height: 1.2; }
.section-header p { font-size: 1.02rem; color: var(--gray-500); line-height: 1.7; }

/* ===== FEATURES ===== */
/* ===== PRICE COMPARISON ===== */
.price-compare { padding: 80px 0; background: var(--gray-50); }
.pc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.pc-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    gap: 12px; padding: 28px 24px; background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); text-decoration: none; color: var(--dark);
    transition: var(--transition); animation: fadeUp 0.5s ease-out both;
}
.pc-card:hover { border-color: var(--teal); box-shadow: 0 8px 28px rgba(31,79,224,0.1); transform: translateY(-4px); }

.pc-card-flag { width: 64px; height: 48px; border-radius: 10px; overflow: hidden; border: 1px solid var(--gray-200); }
.pc-card-flag img { width: 100%; height: 100%; object-fit: cover; }

.pc-card-name { font-size: 1.15rem; font-weight: 800; color: var(--dark); }
.pc-card-name-mob { display: none; }

.pc-card-body { display: flex; flex-direction: column; gap: 4px; width: 100%; }
.pc-market { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.pc-market-label { font-size: 0.82rem; color: var(--gray-400); }
.pc-market-price { font-size: 0.88rem; color: var(--gray-400); text-decoration: line-through; direction: ltr; }

.pc-ours { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.pc-ours-label { font-size: 0.88rem; color: var(--dark); font-weight: 600; }
.pc-ours-price { font-size: 1.5rem; font-weight: 800; color: var(--teal); direction: ltr; }

.pc-card-footer { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }

.pc-badge {
    display: inline-block; padding: 5px 14px; border-radius: 100px; font-size: 0.72rem;
    font-weight: 700; color: #fff; background: var(--teal); white-space: nowrap;
}
.pc-save {
    display: inline-block; padding: 5px 12px; border-radius: 100px; font-size: 0.72rem;
    font-weight: 700; color: var(--teal); background: var(--teal-light); white-space: nowrap;
}

.features { padding: 100px 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
    padding: 32px 26px; border-radius: var(--radius-lg); border: 1px solid var(--gray-100);
    background: var(--white); transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.icon-teal { background: var(--teal-light); color: var(--teal); }
.icon-orange { background: var(--orange-light); color: var(--orange); }
.icon-purple { background: var(--purple-light); color: var(--purple); }
.icon-pink { background: var(--pink-light); color: var(--pink); }
.icon-green { background: var(--green-light); color: var(--green); }
.icon-amber { background: var(--amber-light); color: var(--amber); }

.feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 80px 0; background: var(--gray-50); }

/* Two-column split card */
.hiw-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: var(--white); border: 1.5px solid var(--gray-100);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.hiw-col { padding: 36px 32px; }
.hiw-col:first-child {
    border-inline-end: 1.5px solid rgba(31,79,224,0.08);
    background: linear-gradient(160deg, rgba(31,79,224,0.04) 0%, rgba(95,160,230,0.02) 100%);
}
.hiw-col:last-child {
    background: linear-gradient(160deg, rgba(91,95,199,0.03) 0%, rgba(31,79,224,0.02) 100%);
}
.hiw-col-title {
    font-size: 1.1rem; font-weight: 800; color: var(--teal); margin-bottom: 28px; text-align: center;
}

/* Steps */
.hiw-steps { display: flex; flex-direction: column; gap: 0; }
.hiw-step { display: flex; align-items: flex-start; gap: 14px; }
.hiw-step-left {
    display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 32px;
}
.hiw-num {
    width: 32px; height: 32px; border-radius: 50%; background: var(--teal-light);
    color: var(--teal); font-size: 0.72rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.hiw-line { width: 2px; height: 32px; background: var(--gray-200); }
.hiw-step-icon {
    width: 44px; height: 44px; border-radius: 12px; background: var(--gray-50);
    color: var(--gray-400); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hiw-step-text { padding-top: 2px; padding-bottom: 20px; }
.hiw-step-text strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.hiw-step-text span { font-size: 0.78rem; color: var(--gray-400); }
.hiw-step:last-child .hiw-step-text { padding-bottom: 0; }

/* Features */
.hiw-features { display: flex; flex-direction: column; gap: 24px; }
.hiw-feat { display: flex; align-items: flex-start; gap: 14px; }
.hiw-feat-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hiw-feat-blue { background: var(--teal-light); color: var(--teal); }
.hiw-feat-purple { background: #EEEEF9; color: #5B5FC7; }
.hiw-feat-teal { background: #EDF4FC; color: var(--orange); }
.hiw-feat-text { padding-top: 2px; }
.hiw-feat-text strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.hiw-feat-text span { font-size: 0.78rem; color: var(--gray-400); line-height: 1.5; }

/* Keep old classes for country page */
.steps-row { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.step-card { flex: 1; max-width: 320px; text-align: center; padding: 36px 28px; }
.step-badge {
    display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
    background: var(--gradient); border-radius: 50%; font-size: 0.9rem; font-weight: 800; color: #fff; margin-bottom: 20px;
}
.step-visual { color: var(--teal); margin-bottom: 18px; opacity: 0.7; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; }
.step-line { width: 60px; height: 2px; background: var(--gray-200); margin-top: 56px; flex-shrink: 0; }

/* ===== PLANS ===== */
.plans { padding: 100px 0; background: var(--white); }
.plan-tabs { display: flex; justify-content: center; gap: 6px; margin-bottom: 44px; flex-wrap: wrap; }
.plan-tab {
    padding: 9px 22px; border-radius: 100px; border: 1px solid var(--gray-200); background: var(--white);
    color: var(--gray-500); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: inherit;
}
.plan-tab:hover { border-color: var(--teal); color: var(--teal); }
.plan-tab.active { background: var(--teal); border-color: var(--teal); color: #fff; }

.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.plan-card {
    padding: 28px 22px; background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100); text-align: center; transition: var(--transition); position: relative;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.plan-featured { border: 2px solid var(--teal); background: linear-gradient(180deg, var(--teal-light) 0%, var(--white) 40%); }
.plan-popular-tag {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 4px 14px; background: var(--gradient); border-radius: 100px;
    font-size: 0.7rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap;
}

/* Flag Icons */
.flag-icon { width: 1.2em; height: 1.2em; object-fit: contain; vertical-align: -0.15em; border-radius: 2px; }
.flag-icon-sm { width: 20px; height: 15px; object-fit: cover; border-radius: 2px; }
.flag-icon-md { width: 32px; height: 24px; object-fit: cover; border-radius: 3px; }
.flag-icon-lg { width: 48px; height: 36px; object-fit: cover; border-radius: 4px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.flag-icon-xl { width: 72px; height: 54px; object-fit: cover; border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.12); }

.plan-flag { font-size: 2.2rem; margin-bottom: 10px; }
.plan-flag .flag-icon { width: 48px; height: 36px; object-fit: cover; border-radius: 5px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.plan-country { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.plan-specs { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 16px; }
.spec-data { font-size: 1.5rem; font-weight: 800; color: var(--dark); }
.spec-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gray-300); }
.spec-days { font-size: 0.85rem; color: var(--gray-500); font-weight: 500; }
.plan-price { font-size: 1.5rem; font-weight: 800; color: var(--teal); margin-bottom: 20px; direction: ltr; }

.btn-plan {
    width: 100%; justify-content: center; padding: 11px; border: 1px solid var(--gray-200);
    color: var(--gray-700); border-radius: var(--radius); font-weight: 600; font-size: 0.88rem; background: var(--white);
}
.btn-plan:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.btn-plan-featured {
    width: 100%; justify-content: center; padding: 11px; border: none;
    background: var(--teal); color: #fff; border-radius: var(--radius); font-weight: 600; font-size: 0.88rem;
}
.btn-plan-featured:hover { background: var(--teal-dark); }

.plans-footer { text-align: center; margin-top: 36px; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 0.95rem; font-weight: 600; color: var(--teal); }
.link-arrow:hover { gap: 10px; color: var(--teal-dark); }

.plans-countries-strip {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 12px;
}
.plans-country-flag {
    font-size: 1.8rem; line-height: 1; display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 10px; background: var(--gray-50); border: 1px solid var(--gray-100);
    transition: var(--transition); text-decoration: none; overflow: hidden;
}
.plans-country-flag .flag-icon { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.plans-country-flag:hover {
    transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); border-color: var(--teal); background: var(--white);
}
.btn-load-flags {
    display: inline-flex; align-items: center; gap: 6px; margin: 10px 0;
    padding: 6px 16px; border-radius: 100px; border: 1.5px solid var(--gray-200);
    background: var(--white); color: var(--gray-500); font-size: 0.78rem;
    font-weight: 600; cursor: pointer; font-family: inherit; transition: var(--transition);
}
.btn-load-flags:hover { border-color: var(--teal); color: var(--teal); }
.plans-countries-label {
    font-size: 0.85rem; color: var(--gray-400); font-weight: 500; margin: 0;
}

/* ===== COUNTRIES ===== */
/* ===== eSIM STORE SECTION ===== */
.countries-section {
    padding: 80px 0 80px; background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
}

/* Store Header */
.store-header {
    text-align: center; max-width: 600px; margin: 0 auto 40px;
}
.store-header h2 {
    font-size: 2rem; font-weight: 800; color: var(--dark); margin: 0 0 12px; line-height: 1.3;
}
.store-header p {
    font-size: 0.95rem; color: var(--gray-500); margin: 0; line-height: 1.7;
}
.store-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
    background: linear-gradient(135deg, rgba(31,79,224,0.08), rgba(31,79,224,0.04));
    border: 1px solid rgba(31,79,224,0.15); border-radius: 100px;
    font-size: 0.78rem; font-weight: 700; color: var(--teal); margin-bottom: 14px;
}
.store-badge-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
    animation: storePulse 2s ease-in-out infinite;
}
@keyframes storePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

/* Store Stats */
.store-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-bottom: 40px;
}
.store-stat {
    display: flex; align-items: center; gap: 14px;
    background: var(--white); border: 1.5px solid var(--gray-100); border-radius: 16px;
    padding: 20px 22px; transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.store-stat:hover { border-color: var(--teal); box-shadow: 0 6px 20px rgba(31,79,224,0.08); transform: translateY(-2px); }
.store-stat-icon-wrap {
    width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
    background: var(--teal-light); color: var(--teal);
}
.store-stat-icon-accent { background: #EDF4FC; color: var(--orange); }
.store-stat-icon-purple { background: var(--purple-light); color: var(--purple); }
.store-stat-text { display: flex; flex-direction: column; gap: 2px; }
.store-stat-text strong { font-size: 1.3rem; font-weight: 800; color: var(--dark); line-height: 1; }
.store-stat-text span { font-size: 0.78rem; font-weight: 500; color: var(--gray-500); }
.store-stat-divider { display: none; }

/* Controls: Search + Tabs */
.store-controls {
    background: var(--white); border: 1.5px solid var(--gray-100); border-radius: 16px;
    padding: 16px 20px; margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    display: flex; flex-direction: column; gap: 14px;
}
.countries-search {
    display: flex; align-items: center; gap: 10px; padding: 10px 16px;
    background: var(--gray-50); border: 1.5px solid transparent; border-radius: 12px;
    transition: var(--transition);
}
.countries-search:focus-within { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 3px rgba(31,79,224,0.06); }
.countries-search svg { color: var(--gray-400); flex-shrink: 0; }
.countries-search input {
    border: none; background: none; font-size: 0.88rem; font-family: inherit;
    color: var(--dark); outline: none; width: 100%;
}
.countries-search input::placeholder { color: var(--gray-400); }

.countries-tabs {
    display: flex; gap: 6px; flex-wrap: wrap; overflow-x: auto;
    scrollbar-width: none; -ms-overflow-style: none;
}
.countries-tabs::-webkit-scrollbar { display: none; }
.countries-tab {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 8px 18px; border-radius: 10px; border: 1.5px solid var(--gray-100);
    background: var(--white); color: var(--gray-600); font-size: 0.82rem;
    font-weight: 600; cursor: pointer; font-family: inherit; transition: var(--transition);
    white-space: nowrap;
}
.countries-tab:hover { border-color: var(--teal); color: var(--teal); background: rgba(31,79,224,0.04); }
.countries-tab.active { background: var(--teal); color: #fff; border-color: var(--teal); box-shadow: 0 2px 8px rgba(31,79,224,0.25); }
.countries-tab.active svg { color: #fff; }

/* Country Grid */
.countries-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 12px;
}

.country-card {
    position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 22px 12px 16px; background: var(--white); border: 1.5px solid var(--gray-100);
    border-radius: 16px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none;
    overflow: hidden;
}
.country-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 16px; opacity: 0;
    background: linear-gradient(135deg, rgba(31,79,224,0.03), rgba(31,79,224,0.08));
    transition: opacity 0.3s;
}
.country-card:hover::before { opacity: 1; }
.country-card:hover {
    border-color: var(--teal); transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(31,79,224,0.12);
}
.country-card.hidden, .country-card.country-hidden { display: none; }

.country-card-flag { margin-bottom: 10px; line-height: 1; position: relative; z-index: 1; }
.country-card-flag .flag-icon {
    width: 48px; height: 36px; object-fit: cover; border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12); transition: transform 0.3s;
}
.country-card:hover .country-card-flag .flag-icon { transform: scale(1.12); }

.country-card-name {
    display: block; font-size: 0.82rem; font-weight: 700; color: var(--dark);
    margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 100%; position: relative; z-index: 1;
}
.country-card-price {
    display: block; font-size: 0.74rem; font-weight: 700; color: var(--teal);
    position: relative; z-index: 1; direction: ltr;
}
.country-card.country-popular {
    border-color: #fde68a; background: linear-gradient(180deg, #fffbeb 0%, #fff 50%);
}
.country-card.country-popular::before {
    background: linear-gradient(135deg, rgba(245,158,11,0.03), rgba(245,158,11,0.06));
}
.country-card.country-popular:hover { border-color: #f59e0b; box-shadow: 0 12px 32px rgba(245,158,11,0.12); }
.country-popular-badge { position: absolute; top: 6px; right: 6px; z-index: 2; }
[dir="rtl"] .country-popular-badge { right: auto; left: 6px; }
.country-card-topup {
    display: block; font-size: 0.62rem; font-weight: 600; color: #22c55e; margin-top: 4px;
}
.country-card-rating {
    display: inline-flex; align-items: center; gap: 2px;
    font-size: 0.68rem; font-weight: 700; color: #92400e; margin-bottom: 3px;
    position: relative; z-index: 1;
}

.btn-show-more {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 12px; border: 2px solid var(--gray-200);
    background: var(--white); color: var(--gray-600); font-size: 0.88rem;
    font-weight: 700; cursor: pointer; font-family: inherit; transition: var(--transition);
}
.btn-show-more:hover {
    border-color: var(--teal); color: var(--teal); background: var(--teal-light);
    transform: translateY(-2px); box-shadow: 0 4px 12px rgba(31,79,224,0.1);
}

.countries-no-results {
    text-align: center; padding: 60px 20px; color: var(--gray-400); font-size: 0.9rem;
}
.more-tag { font-weight: 600; color: var(--teal) !important; }

/* ===== COMPATIBLE ===== */
.compatible { padding: 80px 0; background: var(--white); }

/* Device Brand Grid */
.dev-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px;
}
.dev-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 28px 16px; background: var(--gray-50); border: 1.5px solid var(--gray-100);
    border-radius: 16px; transition: var(--transition);
}
.dev-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(31,79,224,0.08); }
.dev-card-icon {
    width: 56px; height: 56px; border-radius: 14px; background: var(--dark);
    color: #fff; display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.dev-card-samsung { background: #1428A0; }
.dev-card-google { background: #4285F4; }
.dev-card-huawei { background: #CF0A2C; }
.dev-card strong { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.dev-card span { font-size: 0.75rem; color: var(--gray-400); font-weight: 500; }

/* Device Checker Card */
.dev-checker-card {
    background: linear-gradient(135deg, rgba(31,79,224,0.04) 0%, rgba(95,160,230,0.03) 100%);
    border: 1.5px solid rgba(31,79,224,0.1); border-radius: 18px;
    padding: 28px; text-align: center;
}
.dev-checker-inner {
    display: flex; align-items: center; gap: 24px; margin-bottom: 16px;
}
.dev-checker-text { flex: 1; text-align: start; }
.dev-checker-text strong { display: block; font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.dev-checker-text span { font-size: 0.82rem; color: var(--gray-500); }
.dev-checker-search { flex: 1; }
.dev-checker-link {
    font-size: 0.82rem; font-weight: 600; color: var(--teal); text-decoration: none;
    transition: color 0.2s;
}
.dev-checker-link:hover { color: var(--teal-dark); }

/* Keep old classes for other pages */
.device-list { margin-bottom: 28px; }
.device-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; font-size: 0.92rem; color: var(--gray-700); font-weight: 500; }
.device-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-teal { background: var(--teal); }

/* Device Checker */
.device-checker { margin-bottom: 8px; }
.device-search-wrap {
    display: flex; align-items: center; gap: 10px; padding: 11px 16px;
    background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 10px;
    transition: var(--transition); max-width: 360px;
}
.device-search-wrap:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(31,79,224,0.08); }
.device-search-wrap svg { color: var(--gray-400); flex-shrink: 0; }
.device-search-wrap input {
    border: none; background: none; font-size: 0.88rem; font-family: inherit;
    color: var(--dark); outline: none; width: 100%;
}
.device-search-wrap input::placeholder { color: var(--gray-400); }
.device-result-item {
    display: flex; align-items: center; gap: 8px; padding: 6px 0;
    font-size: 0.84rem; color: var(--gray-600);
}
.device-result-item svg { flex-shrink: 0; }
.dot-orange { background: var(--orange); }
.dot-purple { background: var(--purple); }
.dot-pink { background: var(--pink); }

.compatible-right { display: flex; justify-content: center; }
.compat-card { width: 280px; height: 280px; background: var(--gradient-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; }
.compat-sim-visual { position: relative; text-align: center; }
.sim-chip { width: 80px; height: 60px; background: linear-gradient(135deg, #d4af37, #f2d06b); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; box-shadow: 0 4px 16px rgba(212,175,55,0.3); }
.sim-contacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.sim-contacts div { width: 12px; height: 8px; background: rgba(255,255,255,0.4); border-radius: 2px; }
.sim-label { font-size: 1.1rem; font-weight: 800; color: var(--teal); letter-spacing: 3px; }
.sim-ring { position: absolute; border: 1px solid rgba(31,79,224,0.15); border-radius: 50%; }
.ring-1 { width: 160px; height: 160px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: ringPulse 3s ease-in-out infinite; }
.ring-2 { width: 210px; height: 210px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: ringPulse 3s ease-in-out infinite 1s; }
.ring-3 { width: 260px; height: 260px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: ringPulse 3s ease-in-out infinite 2s; }
@keyframes ringPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 0.8; } }

/* ===== TESTIMONIALS ===== */
/* Testimonials */
.testimonials { padding: 80px 0; background: var(--gray-50); }

/* Trust Summary Bar */
.reviews-trust-bar {
    display: flex; align-items: center; justify-content: center; gap: 24px;
    padding: 18px 28px; background: var(--white); border: 1.5px solid var(--gray-100);
    border-radius: 16px; margin-bottom: 36px; box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    flex-wrap: wrap;
}
.reviews-trust-rating { display: flex; align-items: center; gap: 10px; }
.reviews-trust-score { font-size: 2rem; font-weight: 800; color: var(--dark); line-height: 1; }
.reviews-trust-stars { color: #FBBF24; font-size: 1.1rem; letter-spacing: 2px; }
.reviews-trust-text { flex: 0 1 auto; }
.reviews-trust-text strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.reviews-trust-text span { font-size: 0.78rem; color: var(--gray-400); }
.reviews-trust-badges { display: flex; gap: 12px; }
.reviews-trust-badge {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.72rem; font-weight: 600; color: #22c55e;
    padding: 4px 12px; background: #f0fdf4; border-radius: 100px;
}
/* Reviews Swiper — CSS scroll-snap */
.reviews-swiper { position: relative; }
.reviews-track {
    display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding-bottom: 4px;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track .review-card {
    flex: 0 0 calc(33.333% - 14px); min-width: 0; scroll-snap-align: start;
}
.reviews-nav {
    display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 24px;
}
.reviews-nav-btn {
    width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--gray-200);
    background: var(--white); color: var(--gray-500); display: flex; align-items: center;
    justify-content: center; cursor: pointer; transition: var(--transition);
}
.reviews-nav-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
html[dir="rtl"] .reviews-nav-btn svg { transform: scaleX(-1); }
.reviews-dots { display: flex; align-items: center; gap: 6px; }
.reviews-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--gray-200);
    border: none; cursor: pointer; padding: 0; transition: all 0.3s ease;
}
.reviews-dot.active { width: 24px; border-radius: 4px; background: var(--teal); }
.review-card {
    padding: 28px; background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100); transition: var(--transition);
    position: relative; overflow: hidden;
}
.review-card::before {
    content: '\201C'; position: absolute; top: 14px; right: 20px;
    font-size: 4rem; font-family: Georgia, serif; color: var(--teal); opacity: 0.08;
    line-height: 1;
}
html[dir="rtl"] .review-card::before { right: auto; left: 20px; }
.review-card:hover { box-shadow: var(--shadow-lg); border-color: var(--teal); transform: translateY(-4px); }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
    width: 44px; height: 44px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; color: #fff;
    font-weight: 800; font-size: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.reviewer strong { display: block; font-size: 0.88rem; color: var(--dark); }
.reviewer span { font-size: 0.72rem; color: var(--gray-400); display: flex; align-items: center; gap: 4px; }
.review-stars { color: #FBBF24; font-size: 0.85rem; letter-spacing: 1px; }
.review-card > p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.8; position: relative; z-index: 1; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: flex-start; }
.faq-left .section-tag { display: inline-block; }
.faq-left h2 { font-size: 2.2rem; font-weight: 800; color: var(--dark); margin: 14px 0; }
.faq-left > p { color: var(--gray-500); margin-bottom: 28px; }

.faq-item { border: 1px solid var(--gray-100); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--gray-200); }
.faq-item.active { border-color: var(--teal); background: var(--teal-light); }

.faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 20px;
    background: none; border: none; color: var(--dark); font-size: 0.95rem; font-weight: 600;
    cursor: pointer; text-align: left; font-family: inherit;
}
html[dir="rtl"] .faq-q { text-align: right; }
.faq-toggle { width: 24px; height: 24px; position: relative; flex-shrink: 0; }
.faq-toggle span { position: absolute; background: var(--gray-400); border-radius: 2px; transition: var(--transition); }
.faq-toggle span:first-child { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq-toggle span:last-child { width: 2px; height: 14px; top: 5px; left: 11px; }
.faq-item.active .faq-toggle span:last-child { transform: rotate(90deg); opacity: 0; }
.faq-item.active .faq-toggle span { background: var(--teal); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-a { max-height: 250px; }
.faq-a p { padding: 0 20px 18px; font-size: 0.88rem; color: var(--gray-600); line-height: 1.8; }

/* ===== CTA ===== */
.cta-section { padding: 80px 0; background: var(--white); }
.cta-card {
    background: var(--gradient); border-radius: var(--radius-xl); padding: 64px;
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; position: relative; overflow: hidden;
}
.cta-content h2 { font-size: 2.2rem; font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.2; }
.cta-content p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.app-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
    display: flex; align-items: center; gap: 10px; padding: 12px 20px; background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; color: #fff; transition: var(--transition);
}
.store-btn:hover { background: rgba(0,0,0,0.35); transform: translateY(-2px); }
.store-btn small { display: block; font-size: 0.6rem; opacity: 0.7; }
.store-btn strong { display: block; font-size: 0.95rem; font-weight: 700; }

.cta-decoration { display: flex; justify-content: center; align-items: center; }
.cta-globe { animation: spin 30s linear infinite; }
@keyframes spin { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

/* ===== PAGINATION ===== */
.pagination-wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 4px 0; }
.pagination { display: flex; align-items: center; gap: 4px; }
.pg-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 36px; height: 36px; padding: 0 10px;
    border-radius: 10px; border: 1.5px solid var(--gray-200);
    background: var(--white); color: var(--gray-600);
    font-size: 0.85rem; font-weight: 600; font-family: inherit;
    text-decoration: none; transition: all 0.2s; cursor: pointer;
}
.pg-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.pg-btn.pg-active { background: var(--teal); color: #fff; border-color: var(--teal); }
.pg-btn.pg-disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
.pg-dots { padding: 0 6px; color: var(--gray-400); font-size: 0.85rem; }
.pg-info { font-size: 0.78rem; color: var(--gray-400); font-weight: 500; }
@media (max-width: 640px) {
    .pagination-wrap { justify-content: center; }
    .pg-btn { min-width: 32px; height: 32px; font-size: 0.78rem; border-radius: 8px; }
}

/* ===== SOCIAL PROOF ===== */
.pkg-social-proof { justify-content: center; flex-wrap: wrap; }
.pkg-watching span[style*="border-radius"] { border-radius: 50% !important; }

/* ===== FOOTER ===== */
.footer { padding: 64px 0 0; background: var(--gray-900); color: var(--gray-400); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer .logo-text { color: #fff; }
.footer-brand > p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: rgba(255,255,255,0.06); color: var(--gray-400); transition: var(--transition); }
.footer-social a:hover { background: var(--teal); color: #fff; }

.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.88rem; color: var(--gray-400); }
.footer-col a:hover { color: var(--teal); }

.footer-payment {
    display: flex; align-items: center; gap: 14px; padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.82rem; color: var(--gray-400);
}
.payment-icons {
    display: inline-flex; align-items: center; gap: 12px; background: #fff;
    padding: 8px 16px; border-radius: 8px;
}
.payment-icons img { height: 22px; width: auto; opacity: 0.85; transition: opacity 0.2s; }
.payment-icons img:hover { opacity: 1; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--gray-400); font-size: 0.82rem; }
.footer-legal a:hover { color: var(--teal); }

/* ===== SCROLL ANIM ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 1.7rem; }
    .hero-meta { margin: 0 auto 16px; }
    .hero-carousel { margin: 0 auto 28px; display: flex; justify-content: center; }
    .hero-search-box { margin: 0 auto; }
    .hero-trust { justify-content: center; }
    .hero-visual { order: 2; margin-top: 20px; }
    .hero-duration-btns { justify-content: center; }
    .store-stats { gap: 14px; }
    .store-stat { padding: 16px 18px; }
    .reviews-track .review-card { flex: 0 0 calc(50% - 10px); }
    .pc-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .pc-card { padding: 22px 18px; }
    .pc-card-name { font-size: 1.05rem; }
    .pc-ours-price { font-size: 1.3rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .dev-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .dev-card { padding: 20px 12px; }
    .dev-card-icon { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 10px; }
    .dev-card-icon svg { width: 22px; height: 22px; }
    .dev-card strong { font-size: 0.85rem; }
    .dev-card span { font-size: 0.7rem; }
    .dev-checker-inner { flex-direction: column; gap: 14px; }
    .dev-checker-text { text-align: center; }
    .dev-checker-text strong { font-size: 0.9rem; }
    .dev-checker-card { padding: 22px 18px; }
    .compatible-split, .faq-layout, .cta-card { grid-template-columns: 1fr; text-align: center; }
    .faq-left { text-align: center; }
    .faq-left .btn { margin: 0 auto; }
    .cta-card { padding: 48px 32px; }
    .cta-decoration { display: none; }
    .device-list { display: inline-block; text-align: left; }
    html[dir="rtl"] .device-list { text-align: right; }
    .compatible-left .btn { margin: 0 auto; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: #fff; flex-direction: column; align-items: stretch;
        justify-content: flex-start; padding: 80px 24px 24px;
        gap: 2px; transform: translateX(100%); transition: transform 0.3s ease; z-index: 999;
        overflow-y: auto; -webkit-overflow-scrolling: touch;
        display: none;
    }
    .nav-links.active {
        display: flex; transform: translateX(0);
    }
    html[dir="rtl"] .nav-links { transform: translateX(-100%); }
    html[dir="rtl"] .nav-links.active { display: flex; transform: translateX(0); }
    .nav-links li { list-style: none; }
    .nav-links a {
        font-size: 0.95rem; padding: 12px 16px; color: var(--gray-700) !important;
        border-radius: 12px; display: flex; align-items: center; gap: 10px;
    }
    .nav-links a:hover { color: var(--teal) !important; background: var(--teal-light) !important; }
    .nav-links a svg { flex-shrink: 0; color: var(--gray-400); }
    .nav-links a:hover svg { color: var(--teal); }
    .mob-nav-divider { height: 1px; background: var(--gray-100); margin: 8px 0; }
    .mob-nav-account {
        padding: 14px 16px !important; background: var(--gray-50); border-radius: 14px !important;
        margin-bottom: 4px;
    }
    .mob-nav-avatar {
        width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--teal-dark));
        color: #fff; display: flex; align-items: center; justify-content: center;
        font-weight: 800; font-size: 0.85rem; flex-shrink: 0;
    }
    .mob-nav-login { color: var(--teal) !important; font-weight: 700 !important; }
    .mob-nav-register { color: var(--dark) !important; font-weight: 700 !important; }
    .mob-nav-cta { margin-top: 8px; }
    .mob-nav-btn-primary {
        display: block !important; text-align: center; padding: 14px !important;
        background: var(--teal) !important; color: #fff !important;
        border-radius: 12px !important; font-weight: 700 !important; font-size: 0.92rem !important;
    }
    .mob-nav-btn-primary:hover { background: var(--teal-dark) !important; }
    .menu-toggle { display: flex; }
    .btn-login, .btn-primary-sm { display: none; }
    .currency-selector { order: -1; }
    .currency-selected { font-size: 0.92rem; padding: 5px 22px 5px 8px; border-radius: 6px; background-position: right 6px center; min-width: 34px; }
    html[dir="rtl"] .currency-selected { padding: 5px 8px 5px 22px; background-position: left 6px center; }
    .mob-nav-only { display: list-item; }
    .mob-nav-divider { display: block; }

    .hero { padding: 90px 0 100px; min-height: auto; }
    .hero-content h1 { font-size: 1.5rem; line-height: 1.3; margin-bottom: 16px; }
    .hero-meta { font-size: 0.95rem; }
    .hero-carousel { margin-bottom: 24px; height: 32px; }
    .hero-carousel-slide span { font-size: 0.92rem; }
    .hero-search-box { padding: 18px; max-width: 100%; border-radius: 16px; }
    .hero-search-label { font-size: 0.82rem; margin-bottom: 10px; }
    .hero-search-input-wrap { height: 46px; padding: 4px 12px; border-radius: 12px; }
    .hero-search-input-wrap input { font-size: 0.88rem; }
    .hero-duration { margin-top: 12px; }
    .hero-duration-label { font-size: 0.82rem; margin-bottom: 8px; }
    .hero-duration-btns { gap: 6px; }
    .hero-dur-btn { min-width: 42px; padding: 8px 4px; border-radius: 10px; }
    .dur-num { font-size: 0.92rem; }
    .dur-unit { font-size: 0.55rem; }
    .hero-search-btn { padding: 12px; font-size: 0.88rem; border-radius: 12px; margin-top: 10px; }
    .hero-trust { margin-top: 20px; gap: 10px; }
    .trust-text span { font-size: 0.75rem; }
    .trust-stars { font-size: 0.78rem; }
    .avatar { width: 30px; height: 30px; font-size: 0.65rem; }
    .hero-visual { order: 2; margin-top: 24px; }
    .live-activity { width: 100%; }
    .live-title { font-size: 1.15rem; }
    .live-num { font-size: 1.5rem; }
    .live-card { padding: 14px; }
    .live-card-wide { padding: 14px 16px; flex-wrap: wrap; gap: 10px; }
    .live-grid { gap: 8px; }
    .wave-separator svg { height: 50px; }
    .hero-search-results { max-height: 220px; border-radius: 12px; padding: 6px; }
    .hero-search-result { padding: 8px 10px; gap: 10px; border-radius: 10px; }
    .hero-search-result-name { font-size: 0.85rem; }
    .hero-search-result-price { font-size: 0.72rem; }

    .price-compare { padding: 48px 0; }
    .pc-grid { grid-template-columns: 1fr; gap: 12px; }
    .pc-card {
        flex-direction: row; padding: 16px; gap: 12px;
        border-radius: 14px; align-items: center;
    }
    .pc-card-flag { width: 52px; height: 40px; border-radius: 8px; flex-shrink: 0; }
    .pc-card-name { display: none; }
    .pc-card-name-mob { display: block; font-size: 0.85rem; font-weight: 800; color: var(--dark); margin-bottom: 2px; }
    .pc-card-body { flex: 1; gap: 1px; min-width: 0; }
    .pc-market { gap: 4px; }
    .pc-market-label { font-size: 0.7rem; }
    .pc-market-price { font-size: 0.75rem; }
    .pc-ours { gap: 4px; }
    .pc-ours-label { font-size: 0.78rem; }
    .pc-ours-price { font-size: 1.15rem; }
    .pc-card-footer { flex-direction: column; gap: 5px; flex-shrink: 0; }
    .pc-badge { font-size: 0.62rem; padding: 3px 10px; }
    .pc-save { font-size: 0.62rem; padding: 3px 8px; }
    .features-grid { grid-template-columns: 1fr; }
    .reviews-trust-bar { flex-direction: column; gap: 12px; padding: 16px 20px; text-align: center; }
    .reviews-trust-score { font-size: 1.6rem; }
    .reviews-trust-text strong { font-size: 0.85rem; }
    .reviews-track .review-card { flex: 0 0 calc(100% - 10px); }
    .reviews-nav-btn { width: 34px; height: 34px; }
    .hiw-split { border-radius: 16px; }
    .hiw-col { padding: 22px 14px; }
    .hiw-col-title { font-size: 0.85rem; margin-bottom: 16px; }
    .hiw-step, .hiw-feat { gap: 8px; }
    .hiw-step-icon, .hiw-feat-icon { width: 32px; height: 32px; border-radius: 8px; }
    .hiw-step-icon svg, .hiw-feat-icon svg { width: 16px; height: 16px; }
    .hiw-num { width: 24px; height: 24px; font-size: 0.6rem; }
    .hiw-line { height: 20px; }
    .hiw-step-text strong, .hiw-feat-text strong { font-size: 0.75rem; }
    .hiw-step-text span, .hiw-feat-text span { display: none; }
    .hiw-step-text { padding-bottom: 10px; }
    .hiw-features { gap: 16px; }
    .hiw-step-left { width: 24px; }
    .steps-row { flex-direction: column; align-items: center; }
    .step-line { width: 2px; height: 40px; margin: 0; }
    .plans-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    .store-header h2 { font-size: 1.4rem; }
    .store-header p { font-size: 0.85rem; }
    .store-stats { grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
    .store-stat { padding: 14px 16px; gap: 12px; border-radius: 14px; }
    .store-stat-icon-wrap { width: 38px; height: 38px; border-radius: 10px; }
    .store-stat-icon-wrap svg { width: 18px; height: 18px; }
    .store-stat-text strong { font-size: 1.1rem; }
    .store-stat-text span { font-size: 0.72rem; }
    .store-controls { padding: 12px 14px; }
    .countries-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
    .countries-tabs { gap: 4px; }
    .countries-tab { padding: 6px 12px; font-size: 0.75rem; }
    .country-card { padding: 16px 10px 12px; border-radius: 12px; }
    .country-card-flag .flag-icon { width: 40px; height: 30px; }
    .section-header h2, .faq-left h2, .compatible-left h2 { font-size: 1.75rem; }
    .cta-content h2 { font-size: 1.75rem; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-payment { flex-direction: column; gap: 10px; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }
    .app-buttons { justify-content: center; }
    .plan-tabs { gap: 5px; }
    .plan-tab { padding: 7px 14px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 80px 0 80px; }
    .hero-content h1 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 12px; }
    .hero-meta { font-size: 0.88rem; margin-bottom: 12px; }
    .hero-carousel { margin-bottom: 20px; height: 28px; }
    .hero-carousel-slide span { font-size: 0.85rem; }
    .hero-carousel-slide svg { width: 16px; height: 16px; }
    .hero-search-box { padding: 14px; border-radius: 14px; }
    .hero-search-input-wrap { height: 42px; padding: 4px 10px; gap: 8px; }
    .hero-search-input-wrap svg { width: 18px; height: 18px; flex-shrink: 0; }
    .hero-search-input-wrap input { font-size: 0.82rem; }
    .hero-duration-btns { gap: 5px; }
    .hero-dur-btn { min-width: 38px; padding: 6px 3px; border-radius: 8px; }
    .dur-num { font-size: 0.85rem; }
    .dur-unit { font-size: 0.5rem; }
    .hero-search-btn { padding: 11px; font-size: 0.85rem; }
    .hero-trust { margin-top: 16px; flex-wrap: wrap; gap: 8px; }
    .avatar { width: 28px; height: 28px; font-size: 0.6rem; }
    .btn-lg { padding: 14px 24px; font-size: 0.92rem; }
    .main-card { width: 230px; padding: 16px; }
    .cta-card { padding: 36px 24px; }
    .wave-separator svg { height: 40px; }
    .price-compare { padding: 36px 0; }
    .price-compare .section-header h2 { font-size: 1.4rem; }
    .price-compare .section-header p { font-size: 0.85rem; }
    .pc-grid { gap: 10px; }
    .pc-card { padding: 14px 12px; border-radius: 12px; }
    .pc-card-flag { width: 46px; height: 34px; border-radius: 6px; }
    .pc-ours-price { font-size: 1.05rem; }
    .pc-market-label { font-size: 0.65rem; }
    .pc-market-price { font-size: 0.7rem; }
    .pc-ours-label { font-size: 0.72rem; }
    .pc-card-name-mob { font-size: 0.78rem; }
    .pc-badge { font-size: 0.58rem; padding: 2px 8px; }
    .pc-save { font-size: 0.58rem; padding: 2px 6px; }
    .hiw-col { padding: 18px 10px; }
    .hiw-col-title { font-size: 0.78rem; margin-bottom: 14px; }
    .hiw-step-icon, .hiw-feat-icon { width: 28px; height: 28px; border-radius: 7px; }
    .hiw-step-icon svg, .hiw-feat-icon svg { width: 14px; height: 14px; }
    .hiw-step-text strong, .hiw-feat-text strong { font-size: 0.7rem; }
    .hiw-num { width: 20px; height: 20px; font-size: 0.55rem; }
    .hiw-step-left { width: 20px; }
    .hiw-line { height: 16px; }
    .hiw-step, .hiw-feat { gap: 6px; }
    .hiw-features { gap: 14px; }
}
