/* ==========================================================================
   Rezerv VPN — Official App Design System & Brand Styling
   Exact Palette Extracted from Rezerv Mobile & Desktop Client
   ========================================================================== */

:root {
  /* Official App Color Palette */
  --bg-body: #070c14;
  --bg-surface: #0b121e;
  --bg-surface-elevated: #111a2c;
  --bg-surface-card: #152238;
  --bg-surface-card-active: #192a46;
  --bg-surface-glass: rgba(17, 26, 44, 0.85);

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(47, 128, 237, 0.18);
  --border-active: #2f80ed;
  --border-focus: rgba(47, 128, 237, 0.5);

  /* Brand Accents */
  --accent-primary: #2f80ed;         /* Electric Sapphire Blue */
  --accent-primary-hover: #1e6bd6;
  --accent-cyan: #00d2ff;            /* Glowing Neon Cyan */
  --accent-emerald: #00e676;         /* Connected / Premium Green */
  --accent-emerald-glow: rgba(0, 230, 118, 0.35);
  --accent-gold: #ffd166;            /* Star / Request Badge */
  --accent-rose: #ff4757;            /* Disconnected / Alert */
  
  /* Brand Gift / Free Access Gradient */
  --gradient-gift: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 45%, #fd79a8 100%);
  --gradient-gift-hover: linear-gradient(135deg, #5a4ad1 0%, #9088f5 45%, #fc5d93 100%);
  --gradient-blue-cyan: linear-gradient(135deg, #2f80ed 0%, #00d2ff 100%);
  --gradient-card-glow: radial-gradient(circle at 50% 0%, rgba(47, 128, 237, 0.18) 0%, transparent 70%);

  /* Typography Colors */
  --text-primary: #ffffff;
  --text-secondary: #8ea4c2;
  --text-muted: #546882;
  --text-highlight: #00d2ff;

  /* Fonts */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', Consolas, monospace;

  /* Geometry & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-subtle: 0 6px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow-blue: 0 0 45px rgba(47, 128, 237, 0.3);
  --shadow-glow-cyan: 0 0 35px rgba(0, 210, 255, 0.3);
  --shadow-glow-emerald: 0 0 30px rgba(0, 230, 118, 0.3);
  --shadow-card: 0 12px 36px -8px rgba(0, 0, 0, 0.6);

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);

  --max-w: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, rgba(47, 128, 237, 0.14) 0%, transparent 55%),
              radial-gradient(circle at 100% 35%, rgba(108, 92, 231, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 0% 75%, rgba(0, 210, 255, 0.09) 0%, transparent 50%),
              var(--bg-body);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Header & Brand Navbar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 12, 20, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(7, 12, 20, 0.96);
  border-color: rgba(47, 128, 237, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: scale(1.02);
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(47, 128, 237, 0.45);
  border: 1px solid rgba(47, 128, 237, 0.3);
  transition: all var(--transition-fast);
  display: block;
}

.brand-logo:hover .brand-logo-img {
  box-shadow: 0 0 28px rgba(0, 210, 255, 0.65);
  border-color: var(--accent-cyan);
  transform: rotate(2deg) scale(1.04);
}

.logo-shield-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #101c30 0%, #152745 100%);
  border: 2px solid var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(47, 128, 237, 0.45);
  position: relative;
  overflow: hidden;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
}

.logo-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-name {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #fff;
}

.brand-tagline {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-badge-pill {
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-emerald);
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.35);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  margin-left: 2px;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-blue-cyan);
  border-radius: 2px;
}

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

/* Language Selector */
.lang-picker {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(47, 128, 237, 0.4);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #0f1828;
  border: 1px solid rgba(47, 128, 237, 0.3);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  padding: 6px;
  min-width: 195px;
  display: none;
  z-index: 100;
  max-height: 480px;
  overflow-y: auto;
  backdrop-filter: blur(20px);
}

.lang-dropdown::-webkit-scrollbar {
  width: 5px;
}

.lang-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.lang-dropdown::-webkit-scrollbar-thumb {
  background: rgba(47, 128, 237, 0.3);
  border-radius: 4px;
}

.lang-dropdown.show {
  display: block;
  animation: fadeInDown 0.2s ease forwards;
}

.lang-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.lang-option:hover {
  background: rgba(47, 128, 237, 0.15);
  color: #fff;
}

.lang-option.active {
  background: rgba(47, 128, 237, 0.25);
  color: var(--accent-cyan);
  font-weight: 700;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 6px 0;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  white-space: nowrap;
  user-select: none;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius-lg);
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, #2f80ed 0%, #1c68d2 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(47, 128, 237, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3d8cf5 0%, #1558b8 100%);
  box-shadow: 0 6px 30px rgba(47, 128, 237, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(47, 128, 237, 0.4);
  transform: translateY(-2px);
}

.btn-gift {
  background: var(--gradient-gift);
  color: #fff;
  box-shadow: 0 4px 22px rgba(108, 92, 231, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.btn-gift:hover {
  background: var(--gradient-gift-hover);
  box-shadow: 0 6px 30px rgba(253, 121, 168, 0.55);
  transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section & Promo Showcase
   ========================================================================== */
section, .section {
  position: relative;
  padding: 54px 0;
  scroll-margin-top: 80px;
}

.hero-section {
  position: relative;
  padding: 105px 0 32px;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 550px;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.22) 0%, rgba(0, 210, 255, 0.06) 50%, transparent 75%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-2 {
  position: absolute;
  top: 25%;
  right: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.18) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}

/* VIP Gift Promo Card Badge */
.hero-vip-gift-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 22px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.28) 0%, rgba(255, 117, 140, 0.22) 100%);
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 4px 25px rgba(108, 92, 231, 0.35);
  border: 1px solid rgba(255, 117, 140, 0.4);
  backdrop-filter: blur(12px);
  max-width: 90%;
  line-height: 1.4;
  text-align: center;
  animation: floatSlow 4s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: #fff;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 10%, #60a5fa 45%, #00d2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 34px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-trust-notes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-item svg {
  color: var(--accent-emerald);
}

/* ==========================================================================
   Hero Official Promo Banner Showcase
   ========================================================================== */
.promo-showcase-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 30px;
  border-radius: var(--radius-xl);
  padding: 6px;
  background: linear-gradient(180deg, rgba(47, 128, 237, 0.4) 0%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), var(--shadow-glow-blue);
  border: 1px solid rgba(47, 128, 237, 0.25);
  overflow: hidden;
}

.promo-banner-img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 6px);
  display: block;
  transition: transform 0.5s ease;
}

.promo-showcase-wrap:hover .promo-banner-img {
  transform: scale(1.015);
}

/* Promo Highlights Quick Bar */
.promo-highlights-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -24px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.highlight-chip {
  background: rgba(17, 26, 44, 0.92);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.highlight-chip:hover {
  transform: translateY(-3px);
  border-color: var(--accent-primary);
}

.chip-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(47, 128, 237, 0.15);
  border: 1px solid rgba(47, 128, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.chip-text {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-align: left;
}

.chip-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-secondary);
}

/* Key Metrics Strip */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding: 20px 28px;
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
}

.metric-item {
  text-align: center;
}

.metric-num {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 40%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ==========================================================================
   Real App UI Screenshots Showcase Gallery
   ========================================================================== */
.app-gallery-section {
  padding: 48px 0;
  position: relative;
}

.app-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.gallery-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.gallery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--gradient-card-glow);
  pointer-events: none;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), var(--shadow-glow-blue);
}

.phone-mockup-frame {
  width: 100%;
  max-width: 280px;
  border-radius: 28px;
  border: 6px solid #1a2942;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(47, 128, 237, 0.2);
  overflow: hidden;
  margin-bottom: 20px;
  background: #000;
  position: relative;
}

.phone-screen-img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-card-content {
  text-align: center;
  width: 100%;
}

.gallery-card-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  margin-bottom: 6px;
}

.gallery-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.gallery-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Gallery Swipe Indicator Dots (Mobile Only) */
.gallery-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-dot.active {
  width: 24px;
  background: var(--accent-primary);
  box-shadow: 0 0 10px rgba(47, 128, 237, 0.6);
}

/* ==========================================================================
   Section Common Styles
   ========================================================================== */
.section {
  padding: 50px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 28px;
}

.section-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.25);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   Platform Hub (Android, Apple, Windows Subsections)
   ========================================================================== */
.platform-section {
  background: radial-gradient(circle at 50% 50%, rgba(47, 128, 237, 0.07) 0%, transparent 70%);
}

.platform-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.platform-tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition-normal);
}

.platform-tab-btn svg {
  transition: transform var(--transition-fast);
}

.platform-tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(47, 128, 237, 0.35);
}

.platform-tab-btn.active {
  background: linear-gradient(135deg, rgba(47, 128, 237, 0.25) 0%, rgba(0, 210, 255, 0.15) 100%);
  border-color: var(--accent-primary);
  color: #fff;
  box-shadow: 0 0 25px rgba(47, 128, 237, 0.35);
}

.platform-tab-btn.active svg {
  color: var(--accent-cyan);
  transform: scale(1.1);
}

.platform-pane {
  display: none;
  animation: fadeIn 0.35s ease forwards;
}

.platform-pane.active {
  display: block;
}

.platform-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 44px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-primary);
  background: rgba(47, 128, 237, 0.14);
  border: 1px solid rgba(47, 128, 237, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.platform-heading {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.platform-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.platform-features-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.platform-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #dbeafe;
}

.feature-check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.15);
  border: 1px solid rgba(0, 230, 118, 0.35);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.platform-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.platform-meta-info {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.platform-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(11, 18, 30, 0.8);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.qr-box {
  background: #fff;
  padding: 14px;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.qr-caption {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.platform-steps-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: left;
}

/* Linux Terminal Mockup Box */
.linux-terminal-box {
  background: #090e17;
  border: 1px solid rgba(47, 128, 237, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 210, 255, 0.1);
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 16px;
  width: 100%;
}

.terminal-header {
  background: #0f1828;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.term-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.term-dot.red { background: #ff5f56; }
.term-dot.yellow { background: #ffbd2e; }
.term-dot.green { background: #27c93f; }

.term-title {
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 8px;
}

.terminal-body {
  padding: 14px;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
}

html[dir="rtl"] .terminal-body {
  text-align: left;
  direction: ltr;
}

.term-line {
  color: #e2e8f0;
  margin-bottom: 4px;
  display: flex;
  gap: 8px;
  font-size: 11.5px;
}

.term-prompt {
  color: var(--accent-cyan);
  font-weight: 700;
}

.term-output {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 11px;
}

.text-success { color: var(--accent-emerald); }
.text-cyan { color: var(--accent-cyan); }

.steps-title {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(47, 128, 237, 0.25);
  color: var(--accent-cyan);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Features Bento Grid
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(16px);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), var(--shadow-glow-blue);
}

.bento-card.col-span-2 {
  grid-column: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(47, 128, 237, 0.2) 0%, rgba(0, 210, 255, 0.15) 100%);
  border: 1px solid rgba(47, 128, 237, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

.bento-title {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.bento-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Protocol Comparison
   ========================================================================== */
.comparison-container {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(20px);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.comparison-box {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-subtle);
}

.comparison-box.negative {
  background: rgba(255, 71, 87, 0.04);
  border-color: rgba(255, 71, 87, 0.25);
}

.comparison-box.positive {
  background: rgba(0, 230, 118, 0.05);
  border-color: rgba(0, 230, 118, 0.35);
  box-shadow: 0 0 35px rgba(0, 230, 118, 0.12);
}

.comp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.comp-title {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #dbeafe;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.currency-selector {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  padding: 4px;
}

.curr-btn {
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.curr-btn.active {
  background: var(--accent-primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(47, 128, 237, 0.4);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-card {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 20px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 128, 237, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #192c4b 0%, #121e33 100%);
  border: 2px solid var(--accent-primary);
  box-shadow: 0 0 45px rgba(47, 128, 237, 0.35);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 0 55px rgba(47, 128, 237, 0.5);
}

.featured-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-blue-cyan);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(47, 128, 237, 0.6);
  white-space: nowrap;
}

.plan-pill-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 210, 255, 0.12);
  border: 1px solid rgba(0, 210, 255, 0.45);
  color: #38bdf8;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.plan-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.plan-duration {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.plan-price {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.plan-monthly-equiv {
  font-size: 12.5px;
  color: var(--accent-emerald);
  font-weight: 700;
  margin-bottom: 20px;
  min-height: 18px;
}

.plan-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.4;
}

.plan-feature svg {
  color: var(--accent-emerald);
  min-width: 15px;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.plan-feature strong {
  color: #ffffff;
  font-weight: 700;
}

.plan-cta-btn {
  width: 100%;
  margin-top: auto;
}

.payment-methods-strip {
  margin-top: 40px;
  text-align: center;
}

.pay-title {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.pay-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-surface-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: var(--accent-primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  gap: 16px;
}

.faq-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
  color: var(--accent-cyan);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 320px;
  padding: 0 22px 20px;
}

/* ==========================================================================
   CTA Banner Section
   ========================================================================== */
.cta-section {
  padding: 70px 0;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, #13243f 0%, #0d1729 100%);
  border: 1px solid rgba(47, 128, 237, 0.45);
  border-radius: var(--radius-xl);
  padding: 44px 32px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-glow-blue);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.22) 0%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.cta-desc {
  font-size: 15px;
  color: #cbd5e1;
  max-width: 640px;
  margin: 0 auto 24px;
  position: relative;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #04080e;
  border-top: 1px solid var(--border-subtle);
  padding: 45px 0 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   RTL (Right-to-Left) Styles for Arabic (ar)
   ========================================================================== */
html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .brand-logo {
  flex-direction: row;
}

html[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

html[dir="rtl"] .lang-option {
  text-align: right;
}

html[dir="rtl"] .faq-question {
  text-align: right;
}

html[dir="rtl"] .platform-steps-box {
  text-align: right;
}

html[dir="rtl"] .chip-text {
  text-align: right;
}

/* ==========================================================================
   Animations & Responsive Breakpoints
   ========================================================================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 1024px) {
  .promo-highlights-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }
  .app-gallery-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 40px auto 0;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card.col-span-2 {
    grid-column: span 1;
  }
  .platform-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: auto;
    padding: 10px 0;
  }

  .site-header .navbar {
    padding: 0 14px;
    gap: 8px;
  }

  /* Hide Premium badge pill and tagline on mobile to prevent overlapping */
  .premium-badge-pill {
    display: none !important;
  }

  .brand-tagline {
    display: none !important;
  }

  .brand-logo {
    gap: 8px;
  }

  .brand-logo-img {
    width: 32px !important;
    height: 32px !important;
  }

  .brand-name {
    font-size: 18px !important;
  }

  .nav-actions {
    gap: 8px;
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 12px;
    gap: 4px;
  }

  .lang-btn svg:last-child {
    display: none;
  }

  .lang-dropdown {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    max-height: 400px;
  }

  .btn-gift.btn-sm {
    padding: 6px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  section, .section, .app-gallery-section, .platform-section {
    padding: 28px 0 !important;
    scroll-margin-top: 60px;
  }

  .hero-section {
    padding: 100px 0 16px !important;
  }

  /* Sleek, non-crooked mobile VIP gift badge */
  .hero-vip-gift-badge {
    font-size: 12px;
    padding: 7px 14px;
    line-height: 1.35;
    margin-bottom: 14px;
    max-width: 95%;
  }

  .hero-title {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14.5px;
  }

  .hero-trust-notes {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 12px;
  }

  .promo-showcase-wrap {
    margin: 0 auto 14px;
    padding: 4px;
    border-radius: var(--radius-lg);
  }

  .promo-highlights-bar {
    grid-template-columns: 1fr;
    margin-top: 10px;
    padding: 0;
    gap: 8px;
  }

  .highlight-chip {
    padding: 10px 14px;
    gap: 10px;
  }

  .metrics-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 14px;
    margin-top: 14px;
  }

  .metric-num {
    font-size: 22px;
  }

  .metric-desc {
    font-size: 11px;
    margin-top: 2px;
  }

  /* Section Header on Mobile */
  .section-header {
    margin: 0 auto 16px;
    padding: 0 6px;
  }

  .section-pill {
    font-size: 10.5px;
    padding: 3px 10px;
    margin-bottom: 8px;
  }

  .section-title {
    font-size: 22px !important;
    margin-bottom: 6px !important;
  }

  .section-subtitle {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  /* App Gallery Mobile Horizontal Swipe Carousel */
  .app-gallery-grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 14px !important;
    margin-top: 14px !important;
    padding: 6px 16px 14px !important;
    margin-left: -14px !important;
    margin-right: -14px !important;
    scrollbar-width: none !important;
  }

  .app-gallery-grid::-webkit-scrollbar {
    display: none !important;
  }

  .gallery-card {
    flex: 0 0 85% !important;
    max-width: 310px !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    padding: 18px 14px !important;
    border-radius: var(--radius-lg) !important;
  }

  .phone-mockup-frame {
    max-width: 230px;
    border-width: 4px;
    border-radius: 22px;
    margin-bottom: 12px;
  }

  .gallery-card-title {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .gallery-card-desc {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .gallery-dots {
    display: flex !important;
  }

  /* Platforms Hub */
  .platform-tabs {
    gap: 6px;
    margin-bottom: 14px;
  }

  .platform-tab-btn {
    padding: 8px 12px;
    font-size: 12px;
    gap: 5px;
  }

  .platform-card {
    grid-template-columns: 1fr;
    padding: 18px 14px;
    gap: 16px;
    border-radius: var(--radius-lg);
  }

  .platform-heading {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .platform-desc {
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.5;
  }

  .platform-features-list {
    margin-bottom: 16px;
    gap: 6px;
  }

  .platform-feature-item {
    font-size: 12.5px;
    gap: 6px;
  }

  .platform-actions {
    gap: 8px;
  }

  .platform-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .platform-visual {
    padding: 14px 10px;
  }

  /* Bento Grid */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  .bento-card {
    padding: 18px 14px;
    border-radius: var(--radius-lg);
  }

  /* Comparison Grid */
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  .comp-card {
    padding: 18px 14px;
    border-radius: var(--radius-lg);
  }

  /* Pricing Grid */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 14px;
  }

  .pricing-card {
    padding: 20px 16px;
    border-radius: var(--radius-lg);
  }

  .pricing-card.featured {
    transform: none;
  }

  .plan-price-block {
    margin-bottom: 14px;
  }

  .plan-features {
    margin-bottom: 16px;
    gap: 6px;
  }

  .plan-feature-item {
    font-size: 12.5px;
  }

  .payment-strip {
    margin-top: 18px;
    padding-top: 14px;
    gap: 8px;
  }

  /* FAQ */
  .faq-accordion {
    gap: 8px;
    margin-top: 14px;
  }

  .faq-question {
    padding: 13px 15px;
    font-size: 13.5px;
  }

  .faq-answer {
    font-size: 12.5px;
    padding: 0 15px;
  }

  .faq-item.open .faq-answer {
    padding: 0 15px 14px;
  }

  /* CTA */
  .cta-section {
    padding: 18px 0 !important;
  }

  .cta-card {
    padding: 26px 16px;
    border-radius: var(--radius-lg);
  }

  .cta-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .cta-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

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

  /* Footer */
  .site-footer {
    padding: 28px 0 16px !important;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 18px;
    gap: 10px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #0b121e;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-card);
    gap: 12px;
  }

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

  .mobile-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .site-header .navbar {
    padding: 0 10px;
    gap: 6px;
  }

  .brand-logo {
    gap: 6px;
  }

  .brand-logo-img {
    width: 28px !important;
    height: 28px !important;
  }

  .brand-name {
    font-size: 16px !important;
  }

  .nav-actions {
    gap: 6px;
  }

  .lang-btn {
    padding: 5px 8px;
    font-size: 11px;
    gap: 3px;
  }

  .btn-gift.btn-sm {
    padding: 5px 8px;
    font-size: 11px;
  }

  .mobile-toggle {
    width: 28px;
  }

  .hero-vip-gift-badge {
    font-size: 11px;
    padding: 7px 12px;
    line-height: 1.35;
  }
}

/* ==========================================================================
   RTL (Arabic) Internationalization Support
   ========================================================================== */
html[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .brand-tagline,
html[dir="rtl"] .logo-text-block {
  text-align: right;
}

html[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
  text-align: right;
}

html[dir="rtl"] .lang-option {
  text-align: right;
}

html[dir="rtl"] .platform-features-list,
html[dir="rtl"] .plan-features,
html[dir="rtl"] .comp-list {
  text-align: right;
}

html[dir="rtl"] .faq-question {
  text-align: right;
}

html[dir="rtl"] .faq-answer {
  text-align: right;
}

html[dir="rtl"] .step-row {
  text-align: right;
}

html[dir="rtl"] .footer-links {
  text-align: right;
}

