/* ── ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background: #ffffff;
  color: #111111;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  background: rgba(30, 35, 45, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 28px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

.navbar-mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  flex-direction: column;
  gap: 5px;
  margin-right: 12px;
}
.navbar-mobile-toggle span {
  width: 18px;
  height: 2px;
  background: #bbb;
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.navbar-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.nav-left { display: flex; align-items: center; }
.nav-help {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-help:hover { background: rgba(255,255,255,0.16); }
.nav-help svg { width: 16px; height: 16px; stroke: #aaa; fill: none; stroke-width: 2; }

.nav-center {
  display: flex;
  align-items: center;
  flex: 1;
  margin: 0 24px;
}
.nav-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.1);
  margin-left: 16px;
}
.nav-icons svg { width: 19px; height: 19px; stroke: #bbb; fill: none; stroke-width: 1.7; cursor: pointer; transition: stroke 0.2s; }
.nav-icons svg:hover { stroke: #f05a28; }

.language-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 19px;
  cursor: pointer;
}

.language-dropdown svg {
  width: 19px;
  height: 19px;
  stroke: #bbb;
  fill: none;
  stroke-width: 1.7;
  cursor: pointer;
  transition: stroke 0.2s;
}

.language-dropdown:hover svg {
  stroke: #f05a28;
}

/* User Dropdown for Translucent Navbar */
.user-dropdown-translucent {
  position: relative;
  cursor: pointer;
  margin-right: 10px;
}

.user-greeting-translucent {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #ccc;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.2s;
  user-select: none;
  white-space: nowrap;
}

.user-greeting-translucent:hover {
  background: rgba(255,255,255,0.12);
  color: #f05a28;
}

.user-greeting-translucent .dropdown-arrow-translucent {
  width: 12px;
  height: 12px;
  stroke: #ccc;
  fill: none;
  stroke-width: 2;
  transition: transform 0.2s;
}

.user-dropdown-translucent:hover .user-greeting-translucent .dropdown-arrow-translucent {
  transform: rotate(180deg);
  stroke: #f05a28;
}

.user-menu-translucent {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: rgba(30, 35, 45, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 1000;
}

.user-dropdown-translucent:hover .user-menu-translucent {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-menu-item-translucent {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  color: #ccc;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.user-menu-item-translucent:hover {
  background: rgba(255,255,255,0.08);
  color: #f05a28;
}

.user-menu-item-translucent svg {
  width: 16px;
  height: 16px;
  stroke: #ccc;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.user-menu-item-translucent:hover svg {
  stroke: #f05a28;
}

.user-menu-divider-translucent {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 4px 0;
}

.user-menu-button-translucent {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  color: #ccc;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.user-menu-button-translucent:hover {
  background: rgba(255,255,255,0.08);
  color: #dc3545;
}

.user-menu-button-translucent:hover svg {
  stroke: #dc3545;
}

.language-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: all 0.2s;
}
.language-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.language-btn svg {
  width: 20px;
  height: 20px;
  stroke: #bbb;
  fill: none;
  stroke-width: 1.7;
  transition: stroke 0.2s;
}
.language-btn:hover svg {
  stroke: #f05a28;
}

.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: rgba(30, 35, 45, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 8px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.language-dropdown:hover .language-menu,
.language-dropdown:focus-within .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  margin: 0;
}

.language-link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: none;
  border: none;
  color: #ccc;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.language-link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.language-link .flag {
  font-size: 16px;
}

.nav-search {
  display: flex;
  align-items: center;
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  padding: 7px 18px;
  gap: 10px;
  margin-left: 10px;
}
.nav-search input {
  background: transparent;
  border: none;
  outline: none;
  color: #ccc;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  width: 100%;
  text-align: right;
}
.nav-search input::placeholder { color: #555; }
.nav-search svg { width: 15px; height: 15px; stroke: #555; fill: none; stroke-width: 2; flex-shrink: 0; }

.nav-logo { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.nav-logo-text {
  font-family: 'Tajawal', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #f05a28;
  letter-spacing: -1px;
  line-height: 1;
}
.nav-logo-home {
  font-size: 9px;
  font-weight: 700;
  color: #f05a28;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0.8;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .nav-inner { border-radius: 20px; padding: 0 12px 0 16px; height: 48px; }
  .nav-center { margin: 0 8px; }
  .nav-logo-home { font-size: 8px; }
  .nav-logo-text { font-size: 18px; }
}
@media (max-width: 768px) {
  .navbar { padding: 8px 12px; }
  .nav-inner { border-radius: 16px; padding: 0 8px; height: 44px; gap: 6px; }
  .navbar-mobile-toggle { display: flex; }
  .nav-left { display: none; }
  .nav-center { display: none; }
  .nav-center.mobile-visible { display: flex; }
  .nav-search { max-width: 150px; padding: 5px 10px; }
  .nav-search input { font-size: 12px; padding: 5px 30px 5px 12px; }
  .nav-logo-text { font-size: 16px; }
  .nav-logo-home { display: none; }
  /* .language-dropdown { display: none; } */
  .user-greeting-translucent {
    font-size: 12px;
    padding: 5px 10px;
  }
  .user-menu-translucent {
    min-width: 160px;
    right: -8px;
  }
  .user-menu-item-translucent {
    padding: 8px 12px;
    font-size: 12px;
  }
  .user-menu-button-translucent {
    padding: 8px 12px;
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .navbar { padding: 6px 10px; }
  .nav-inner { border-radius: 12px; padding: 0 6px; height: 40px; }
  .navbar-mobile-toggle span { width: 16px; }
  .nav-icons { gap: 8px; }
  .nav-icons svg { width: 16px; height: 16px; }
  .language-dropdown { height: 16px; }
  .language-dropdown svg { width: 16px; height: 16px; }
  .nav-search { max-width: 120px; }
  .nav-search input::placeholder { font-size: 11px; }
  .nav-logo-text { font-size: 14px; letter-spacing: 0; }
  .user-greeting-translucent {
    font-size: 11px;
    padding: 4px 8px;
  }
  .user-menu-translucent {
    min-width: 140px;
    right: 0;
  }
  .user-menu-item-translucent {
    padding: 6px 10px;
    font-size: 11px;
  }
  .user-menu-button-translucent {
    padding: 6px 10px;
    font-size: 11px;
  }
}

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1208 40%, #0d0d0d 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(240,90,40,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(240,90,40,0.08) 0%, transparent 60%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-people {
  position: absolute;
  inset: 0;
  background: url('/landing_cover.jpg') center/cover no-repeat;
  opacity: 0.12;
  mix-blend-mode: luminosity;
}
.hero-icon {
  position: absolute;
  width: 56px; height: 56px;
  background: rgba(240,90,40,0.12);
  border: 1px solid rgba(240,90,40,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  animation: floatIcon 6s ease-in-out infinite;
}
.hero-icon svg { width: 26px; height: 26px; stroke: #f05a28; fill: none; stroke-width: 1.5; }
.hi-1 { top: 18%; left: 8%;   animation-delay: 0s; }
.hi-2 { top: 35%; left: 5%;   animation-delay: 1s; }
.hi-3 { bottom: 30%; left: 10%; animation-delay: 2s; }
.hi-4 { top: 20%; right: 8%;  animation-delay: 0.5s; }
.hi-5 { top: 45%; right: 5%;  animation-delay: 1.5s; }
.hi-6 { bottom: 25%; right: 9%; animation-delay: 2.5s; }
@keyframes floatIcon {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 820px;
}
.hero-badge {
  display: inline-block;
  background: #f05a28;
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: white;
  line-height: 1.25;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}
.hero-title span { color: #f05a28; }
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 50px;
  animation: fadeUp 0.9s 0.1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 780px;
  width: 90%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  overflow: hidden;
  margin-top: 40px;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-card {
  padding: 28px 30px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-bottom: 1px solid #f0f0f0;
  border-left: 1px solid #f0f0f0;
  transition: background 0.2s;
}
.hero-card:hover { background: #fff8f5; }
.hero-card:nth-child(odd)  { border-left: none; }
.hero-card:nth-child(3),
.hero-card:nth-child(4)    { border-bottom: none; }
.hero-card-icon {
  width: 44px; height: 44px;
  background: rgba(240,90,40,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card-text h4 { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 5px; }
.hero-card-text p  { font-size: 12px; color: #888; line-height: 1.6; }

/* ── ABOUT ── */
.about-section { background: #f5f5f5; padding: 100px 40px; }
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-logo-box {
  background: white;
  border-radius: 24px;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  min-height: 280px;
}
.about-logo-text {
  font-family: 'Tajawal', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: #f05a28;
  letter-spacing: -4px;
  line-height: 1;
}
.about-logo-sub {
  font-size: 13px;
  color: #aaa;
  text-align: center;
  margin-top: 8px;
  letter-spacing: 2px;
}
.about-text-col { text-align: right; }
.section-label {
  font-size: 13px;
  font-weight: 700;
  color: #f05a28;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: 36px;
  font-weight: 900;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 14px;
}

/* ── VALUES ── */
.values-section { background: white; padding: 80px 40px; }
.values-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.value-card {
  background: #f9f9f9;
  border-radius: 18px;
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 1px solid #eee;
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(240,90,40,0.12); }
.value-icon {
  width: 60px; height: 60px;
  background: #f05a28;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.value-card h3 { font-size: 17px; font-weight: 700; }
.value-card p  { font-size: 13px; color: #777; line-height: 1.7; }

/* ── STATS ── */
.stats-section { background: #111111; padding: 80px 40px; }
.stats-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.stats-section .section-title { color: white; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.stat-card {
  background: #222222;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color 0.3s, transform 0.3s;
}
.stat-card:hover { border-color: #f05a28; transform: translateY(-4px); }
.stat-icon {
  width: 52px; height: 52px;
  background: #f05a28;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.stat-number     { font-size: 38px; font-weight: 900; color: white; letter-spacing: -1px; }
.stat-label-text { font-size: 13px; color: #777; }

/* ── WHY ── */
.why-section {
  background: #f05a28;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 10% 70%, rgba(0,0,0,0.15) 0%, transparent 60%);
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.why-section .section-title { color: white; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.why-item {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.why-item:hover { background: rgba(255,255,255,0.25); }
.why-check {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-check svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2.5; }
.why-item span { color: white; font-size: 14px; font-weight: 600; }

/* ── CTA ── */
.cta-section { background: #f5f5f5; padding: 80px 40px; }
.cta-box {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  border: 1.5px solid rgba(240,90,40,0.2);
  padding: 60px 50px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(240,90,40,0.08);
}
.cta-box h2 { font-size: 28px; font-weight: 900; margin-bottom: 12px; }
.cta-box p  { font-size: 15px; color: #666; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; }
.btn-primary {
  background: #f05a28;
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #c94420; transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: #f05a28;
  border: 1.5px solid #f05a28;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { background: #f05a28; color: white; transform: translateY(-2px); }

/* ── FOOTER ── */
.footer-section {
  background: white;
  border-top: 1px solid #eee;
  padding: 60px 40px 30px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: 'Tajawal', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #f05a28;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 13px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 18px;
}
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.social-btn:hover { border-color: #f05a28; background: #fff5f2; }
.social-btn svg { width: 16px; height: 16px; stroke: #555; fill: none; stroke-width: 1.8; }
.footer-col h4 { font-size: 15px; font-weight: 700; margin-bottom: 18px; color: #111; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col ul li:hover { color: #f05a28; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}
.contact-item svg { width: 16px; height: 16px; stroke: #f05a28; fill: none; stroke-width: 1.8; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid #f0f0f0;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.payment-methods { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.payment-badge {
  padding: 5px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #333;
}
.payment-badge.visa  { color: #1a1f71; }
.payment-badge.apple { color: #000; }
.payment-badge.mc    { color: #eb001b; }
.cr-text { font-size: 12px; color: #aaa; }
.vat-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #888;
  border: 1px solid #ddd;
  padding: 6px 12px;
  border-radius: 8px;
}
.store-btns { display: flex; gap: 10px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.store-btn:hover { border-color: #f05a28; }
.store-btn svg { width: 18px; height: 18px; fill: #333; }
.store-btn span { font-size: 12px; font-weight: 600; color: #333; }
.footer-cr {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin-top: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-inner  { grid-template-columns: 1fr; gap: 40px; }
  .values-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-top   { grid-template-columns: 1fr 1fr; }
  .hero-cards   { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .why-grid       { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .footer-top     { grid-template-columns: 1fr; }
  .cta-btns       { flex-direction: column; }
  .cta-box        { padding: 40px 24px; }
}