*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --green: #1B50C8;
  --gl: #4D8DF5;
  --gd: #143E9C;
  --gold: #c8a84b;
  --dark: #0A1E3D;
  --darker: #071330
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--dark);
  color: #fff;
  overflow-x: hidden
}

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: var(--dark)
}

::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 3px
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  background: rgba(10, 30, 61, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 80, 200, .25);
  transition: background .3s
}

nav.scrolled {
  background: rgba(10, 30, 61, .99)
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none
}

.nav-logo img {
  height: 54px;
  width: auto
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none
}

.nav-links a {
  color: rgba(255, 255, 255, .82);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gl);
  transition: width .3s
}

.nav-links a:hover {
  color: #fff
}

.nav-links a:hover::after {
  width: 100%
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px
}

.nav-parent-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: rgba(255, 255, 255, .5);
  font-size: .76rem;
  font-weight: 600;
  padding-inline-end: 14px;
  border-inline-end: 1px solid rgba(255, 255, 255, .12);
  transition: color .2s
}

.nav-parent-brand img {
  height: 36px;
  width: auto;
  opacity: .95
}

.nav-parent-brand:hover {
  color: rgba(255, 255, 255, .85)
}

.mobile-menu .nav-parent-brand {
  color: rgba(255, 255, 255, .5);
  font-size: .82rem;
  font-weight: 600;
  border-inline-end: none;
  padding-inline-end: 0;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.nav-social {
  display: flex;
  gap: 8px
}

.nav-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background .2s, border-color .2s
}

.nav-social a:hover {
  background: var(--green);
  border-color: var(--green)
}

.nav-lang {
  color: rgba(255, 255, 255, .55);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 6px 13px;
  border-radius: 7px;
  transition: color .2s, border-color .2s
}

.nav-lang:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .4)
}

.nav-cta {
  background: var(--green);
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  transition: background .2s, transform .2s;
  white-space: nowrap
}

.nav-cta:hover {
  background: var(--gl);
  transform: translateY(-1px)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 74px;
  right: 0;
  left: 0;
  background: rgba(10, 30, 61, .97);
  padding: 24px 5%;
  flex-direction: column;
  gap: 18px;
  z-index: 999;
  border-bottom: 1px solid rgba(27, 80, 200, .3)
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600
}

.mob-social {
  display: flex;
  gap: 12px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, .08)
}

.mob-social a {
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px
}

.mob-social a:hover {
  color: var(--gl)
}

/* ── HERO (مؤشر — simple) ── */
#hero {
  min-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 110px 8% 60px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(27, 80, 200, .25), transparent 55%),
    var(--dark)
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .5;
  pointer-events: none
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  width: 100%
}

.hero-logo {
  height: 60px;
  width: auto;
  margin-bottom: 32px
}

.hero-content h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 16px
}

.hero-content h1 span {
  color: var(--gl)
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.85;
  margin-bottom: 8px
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(27, 80, 200, .35)
}

.btn-primary:hover {
  background: var(--gl);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(27, 80, 200, .5)
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, .35);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: border-color .2s, background .2s
}

.btn-outline:hover {
  border-color: var(--gl);
  background: rgba(27, 80, 200, .12)
}

/* ── SECTIONS ── */
section {
  padding: 90px 8%
}

.section-tag {
  display: inline-block;
  background: rgba(27, 80, 200, .18);
  border: 1px solid rgba(27, 80, 200, .4);
  color: #8FB8FF;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: .05em;
  text-transform: uppercase
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px
}

.section-title span {
  color: var(--gl)
}

.section-sub {
  color: rgba(255, 255, 255, .6);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 620px
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gl));
  border-radius: 3px;
  margin: 20px 0
}

/* ── WHY ── */
#why {
  background: var(--dark)
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px
}

.why-img {
  border-radius: 16px;
  overflow: hidden
}

.why-img img {
  width: 100%;
  display: block;
  border-radius: 16px
}

.why-features {
  display: grid;
  gap: 18px
}

.why-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(27, 80, 200, .18);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  transition: border-color .3s, background .3s, transform .3s
}

.why-card:hover {
  border-color: rgba(27, 80, 200, .55);
  background: rgba(27, 80, 200, .08);
  transform: translateX(-4px)
}

.why-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(27, 80, 200, .2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem
}

.why-card h4 {
  font-size: .96rem;
  font-weight: 700;
  margin-bottom: 5px
}

.why-card p {
  font-size: .83rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.7
}

/* ── CITIES ── */
#cities {
  background: linear-gradient(180deg, #071330, var(--dark))
}

.cities-intro {
  text-align: center;
  margin-bottom: 50px
}

.cities-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 280px;
  gap: 14px
}

.city-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .35s;
  border: 1px solid rgba(27, 80, 200, .15)
}

.city-card:hover {
  transform: scale(1.025)
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s
}

.city-card:hover img {
  transform: scale(1.06)
}

.city-card .ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 19, 48, .88) 30%, transparent 70%)
}

.city-card .cn {
  position: absolute;
  bottom: 16px;
  right: 18px;
  font-size: 1.05rem;
  font-weight: 700
}

.city-card.big {
  grid-column: 3;
  grid-row: 1/3
}

.city-card.big .cn {
  font-size: 1.4rem
}

/* ── STATS ── */
#stats {
  background: linear-gradient(135deg, var(--gd), #1a3d27);
  position: relative;
  overflow: hidden
}

#stats::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
  pointer-events: none
}

.stats-top {
  text-align: center;
  margin-bottom: 60px
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px
}

.stat-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: transform .3s, background .3s
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .11)
}

.stat-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1
}

.stat-label {
  font-size: .95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  margin: 10px 0 14px
}

.stat-desc {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7
}

.stats-cta {
  text-align: center;
  margin-top: 48px
}

/* ── PARTNERS ── */
#partners {
  background: var(--darker);
  text-align: center;
  padding: 60px 8%
}

.partners-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: .1em
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(27, 80, 200, .2);
  border-radius: 14px;
  padding: 18px 32px;
  text-decoration: none
}

.partner-logo img {
  height: 52px;
  border-radius: 8px
}

.partner-logo span {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7)
}

/* ── COMPARE SLIDER ── */
#compare {
  background: linear-gradient(180deg, var(--darker), var(--dark));
  padding: 90px 8%
}

.compare-intro {
  text-align: center;
  margin-bottom: 48px
}

.compare-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(27, 80, 200, .3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  user-select: none;
  touch-action: none
}

.compare-wrap img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  pointer-events: none
}

.compare-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  will-change: width
}

.compare-after img {
  width: 900px;
  max-width: 900px;
  height: 500px;
  object-fit: cover;
  object-position: left top
}

.compare-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: rgba(255, 255, 255, .9);
  cursor: col-resize;
  z-index: 10;
  box-shadow: 0 0 16px rgba(0, 0, 0, .6)
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: col-resize;
  z-index: 11;
  transition: transform .15s, background .2s
}

.compare-handle:hover,
.compare-handle.dragging {
  background: var(--gl);
  transform: translate(-50%, -50%) scale(1.12)
}

.compare-handle svg {
  flex-shrink: 0
}

.compare-label {
  position: absolute;
  top: 18px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  backdrop-filter: blur(6px);
  z-index: 9;
  pointer-events: none
}

.compare-label-before {
  right: 16px;
  background: rgba(10, 30, 61, .82);
  color: #8FB8FF;
  border: 1px solid rgba(27, 80, 200, .4)
}

.compare-label-after {
  left: 16px;
  background: rgba(27, 80, 200, .82);
  color: #fff;
  border: 1px solid rgba(27, 80, 200, .6)
}

.compare-cities {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 18px auto 0;
  padding: 0 4px
}

.compare-city-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .55)
}

.compare-city-tag span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block
}

/* ── NEWS CAROUSEL ── */
#news {
  background: var(--dark);
  padding: 90px 8%
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px
}

.news-header-left {
  flex: 1
}

.news-arrows {
  display: flex;
  gap: 10px
}

.news-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(27, 80, 200, .25);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background .2s, border-color .2s, transform .2s;
  user-select: none
}

.news-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.08)
}

.news-arrow:disabled {
  opacity: .3;
  cursor: default;
  transform: none
}

.news-track-wrap {
  overflow: hidden
}

.news-track {
  display: flex;
  gap: 22px;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
  direction: ltr
}

.news-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(27, 80, 200, .18);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  flex-shrink: 0;
  direction: rtl
}

.news-card:hover {
  border-color: rgba(27, 80, 200, .5);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(27, 80, 200, .14)
}

.news-card-img {
  height: 170px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(27, 80, 200, .25), rgba(10, 30, 61, .8))
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s
}

.news-card:hover .news-card-img img {
  transform: scale(1.06)
}

.news-card-img .news-li-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10, 102, 194, .85);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(4px)
}

.news-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px
}

.news-date {
  font-size: .74rem;
  color: rgba(255, 255, 255, .4);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px
}

.news-date::before {
  content: '📅';
  font-size: .8rem
}

.news-title {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.news-desc {
  font-size: .81rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.news-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gl);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 4px;
  transition: gap .2s, color .2s
}

.news-read:hover {
  gap: 10px;
  color: #fff
}

.news-read::after {
  content: '←'
}

.news-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px
}

.news-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0
}

.news-dot.active {
  background: var(--green);
  transform: scale(1.3)
}

/* ── VALUATION SERVICE ── */
#valuation {
  background: linear-gradient(180deg, var(--darker), var(--dark));
  padding: 80px 20px;
  text-align: center;
}

.valuation-intro {
  max-width: 640px;
  margin: 0 auto 48px;
}

.valuation-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 680px;
  margin: 0 auto 40px;
}

.val-card {
  background: rgba(27, 80, 200, .08);
  border: 1px solid rgba(27, 80, 200, .22);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: right;
  position: relative;
  transition: border-color .2s, background .2s;
}

.val-card:hover {
  background: rgba(27, 80, 200, .14);
  border-color: rgba(27, 80, 200, .45);
}

.val-num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green, #1B50C8);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.val-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.val-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.val-desc {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin: 0;
  line-height: 1.7;
}

.valuation-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.val-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0b7a5e;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(11,122,94,.25);
  transition: background .2s, transform .2s;
}

.val-wa-btn:hover {
  background: #0d8f6e;
  transform: translateY(-2px);
}

.val-trust {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin: 0;
}

/* ── PRICING ── */
#pricing {
  background: var(--darker)
}

.pricing-intro {
  text-align: center;
  margin-bottom: 54px
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.price-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(27, 80, 200, .2);
  border-radius: 18px;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(27, 80, 200, .5);
  box-shadow: 0 12px 40px rgba(27, 80, 200, .15)
}

.price-card.featured {
  background: linear-gradient(160deg, rgba(27, 80, 200, .22), rgba(27, 80, 200, .08));
  border-color: rgba(27, 80, 200, .6);
  box-shadow: 0 8px 32px rgba(27, 80, 200, .2)
}

.price-badge {
  display: inline-block;
  background: rgba(27, 80, 200, .22);
  border: 1px solid rgba(27, 80, 200, .4);
  color: var(--gl);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  width: fit-content;
  letter-spacing: .3px
}

.price-card.featured .price-badge {
  background: var(--green);
  border-color: var(--green);
  color: #fff
}

.price-name {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7)
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin: 10px 0 0
}

.price-amount .price-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1
}

.price-amount .price-per {
  font-size: .88rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 600
}

.price-billing {
  font-size: .76rem;
  color: rgba(255, 255, 255, .38);
  margin: 4px 0 18px;
  min-height: 1.1rem
}

.price-billing .save-tag {
  display: inline-block;
  background: rgba(27, 80, 200, .25);
  color: var(--gl);
  border-radius: 4px;
  padding: 0 5px;
  font-size: .7rem;
  font-weight: 700;
  margin-right: 4px
}

.price-desc {
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 20px
}

.price-trial-note {
  background: rgba(27, 80, 200, .12);
  border: 1px solid rgba(27, 80, 200, .3);
  border-radius: 10px;
  color: #8FB8FF;
  font-size: .76rem;
  line-height: 1.6;
  font-weight: 600;
  padding: 10px 12px;
  margin-bottom: 16px
}

.price-trial-note strong {
  color: #fff
}

.price-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px
}

.price-features li {
  font-size: .84rem;
  color: rgba(255, 255, 255, .72);
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.price-features li::before {
  content: '✓';
  color: var(--gl);
  font-weight: 900;
  min-width: 16px;
  margin-top: 1px
}

.price-features li.na {
  color: rgba(255, 255, 255, .3);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, .2)
}

.price-features li.na::before {
  content: '✕';
  color: rgba(255, 255, 255, .25)
}

.price-features li.addon::before {
  content: '＋';
  color: var(--gold)
}

.price-features li.addon {
  color: rgba(255, 255, 255, .75)
}

.price-features .addon-badge {
  display: inline-block;
  background: rgba(200, 168, 75, .18);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 6px;
  margin-right: 5px;
  border: 1px solid rgba(200, 168, 75, .3)
}

.price-note {
  font-size: .75rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  line-height: 1.6
}

.price-billing {
  font-size: .78rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 18px
}

.price-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  border: 1.5px solid rgba(27, 80, 200, .5);
  color: #8FB8FF;
  transition: background .2s, color .2s
}

.price-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green)
}

.price-card.featured .price-btn {
  background: var(--green);
  color: #fff;
  border-color: var(--green)
}

.price-soon {
  display: inline-block;
  background: rgba(200, 168, 75, .15);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  border: 1px solid rgba(200, 168, 75, .3);
  margin-bottom: 10px;
  width: fit-content
}

/* ── REPORTS ── */
#reports {
  background: var(--dark)
}

.reports-intro {
  text-align: center;
  margin-bottom: 48px
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto 36px
}

.report-card {
  border-radius: 18px;
  padding: 34px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden
}

.report-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px
}

.report-card.monthly {
  background: rgba(32, 178, 170, .07);
  border: 1px solid rgba(32, 178, 170, .3)
}

.report-card.monthly::before {
  background: linear-gradient(90deg, #20b2aa, #3dd6cf)
}

.report-card.quarterly {
  background: rgba(200, 168, 75, .07);
  border: 1px solid rgba(200, 168, 75, .3)
}

.report-card.quarterly::before {
  background: linear-gradient(90deg, var(--gold), #e8c96a)
}

.report-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .3)
}

.report-icon {
  font-size: 2rem;
  margin-bottom: 14px
}

.report-period {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 14px
}

.report-card.monthly .report-period {
  background: rgba(32, 178, 170, .18);
  color: #3dd6cf;
  border: 1px solid rgba(32, 178, 170, .35)
}

.report-card.quarterly .report-period {
  background: rgba(200, 168, 75, .18);
  color: var(--gold);
  border: 1px solid rgba(200, 168, 75, .35)
}

.report-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px
}

.report-desc {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1
}

.report-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 6px
}

.report-price-num {
  font-size: 2.4rem;
  font-weight: 900
}

.report-card.monthly .report-price-num {
  color: #3dd6cf
}

.report-card.quarterly .report-price-num {
  color: var(--gold)
}

.report-card.custom .report-price-num {
  color: #a78bfa;
  font-size: 1.2rem;
  line-height: 1.35
}

.report-card.custom {
  background: rgba(99, 102, 241, .07);
  border: 1px solid rgba(99, 102, 241, .3)
}

.report-card.custom::before {
  background: linear-gradient(90deg, #6366f1, #a78bfa)
}

.report-card.custom .report-period {
  background: rgba(99, 102, 241, .18);
  color: #a78bfa;
  border: 1px solid rgba(99, 102, 241, .35)
}

.report-card.custom .report-features li::before {
  content: '✓';
  color: #a78bfa;
  font-weight: 900;
  min-width: 14px
}

.report-card.custom .report-btn {
  background: rgba(99, 102, 241, .15);
  color: #a78bfa;
  border: 1.5px solid rgba(99, 102, 241, .4)
}

.report-card.custom .report-btn:hover {
  background: #6366f1;
  color: #fff;
  border-color: #6366f1
}

.report-price-per {
  font-size: .9rem;
  color: rgba(255, 255, 255, .45)
}

.report-saving {
  font-size: .75rem;
  color: var(--gl);
  background: rgba(27, 80, 200, .15);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 22px;
  display: block;
  height: 22px;
  line-height: 18px;
  width: fit-content
}

.report-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 26px
}

.report-features li {
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.report-card.monthly .report-features li::before {
  content: '✓';
  color: #3dd6cf;
  font-weight: 900;
  min-width: 14px
}

.report-card.quarterly .report-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 900;
  min-width: 14px
}

.report-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s, color .2s, transform .15s;
  margin-top: auto
}

.report-card.monthly .report-btn {
  background: rgba(32, 178, 170, .15);
  color: #3dd6cf;
  border: 1.5px solid rgba(32, 178, 170, .45)
}

.report-card.monthly .report-btn:hover {
  background: #20b2aa;
  color: #fff;
  border-color: #20b2aa
}

.report-card.quarterly .report-btn {
  background: rgba(200, 168, 75, .15);
  color: var(--gold);
  border: 1.5px solid rgba(200, 168, 75, .4)
}

.report-card.quarterly .report-btn:hover {
  background: var(--gold);
  color: #0A1E3D;
  border-color: var(--gold)
}

.reports-disclaimer {
  text-align: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: rgba(255, 255, 255, .02)
}

.reports-disclaimer strong {
  color: rgba(255, 255, 255, .55)
}

@media(max-width:900px) {
  .reports-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:580px) {
  .reports-grid {
    grid-template-columns: 1fr
  }
}

/* ── FAQ ── */
#faq {
  background: var(--dark)
}

.faq-intro {
  text-align: center;
  margin-bottom: 50px
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.faq-item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(27, 80, 200, .18);
  border-radius: 14px;
  overflow: hidden
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Cairo', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  padding: 20px 24px;
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .2s
}

.faq-q:hover {
  background: rgba(27, 80, 200, .08)
}

.faq-icon {
  min-width: 28px;
  height: 28px;
  background: rgba(27, 80, 200, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform .3s, background .3s
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--green)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  font-size: .9rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.85;
  padding: 0 24px
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px
}

/* ── CONTACT ── */
#contact {
  background: linear-gradient(135deg, var(--darker), var(--dark))
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 14px
}

.contact-info>p {
  color: rgba(255, 255, 255, .6);
  line-height: 1.85;
  margin-bottom: 36px
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(27, 80, 200, .18);
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: #fff;
  transition: border-color .2s, background .2s
}

.contact-item:hover {
  border-color: rgba(27, 80, 200, .5);
  background: rgba(27, 80, 200, .07)
}

.ci-icon {
  font-size: 1.4rem;
  min-width: 36px;
  text-align: center
}

.ci-info {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.ci-label {
  font-size: .74rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 600
}

.ci-value {
  font-size: .92rem;
  font-weight: 700
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 8px
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(27, 80, 200, .2);
  border-radius: 12px;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  transition: background .2s, border-color .2s, transform .2s;
  flex: 1;
  justify-content: center
}

.social-btn:hover {
  transform: translateY(-2px)
}

.social-btn.linkedin:hover {
  background: rgba(10, 102, 194, .18);
  border-color: rgba(10, 102, 194, .5)
}

.social-btn.facebook:hover {
  background: rgba(24, 119, 242, .18);
  border-color: rgba(24, 119, 242, .5)
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(27, 80, 200, .25);
  position: relative
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(.2) contrast(1.05)
}

.map-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 30, 61, .88);
  border: 1px solid rgba(27, 80, 200, .4);
  color: #8FB8FF;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  backdrop-filter: blur(6px)
}

/* ── FOOTER ── */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(27, 80, 200, .2);
  padding: 32px 8%
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px
}

.footer-brand img {
  height: 48px
}

.footer-brand p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  max-width: 260px;
  line-height: 1.6
}

.footer-social {
  display: flex;
  gap: 10px
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s
}

.footer-social a:hover {
  transform: translateY(-2px)
}

.footer-social a.li:hover {
  background: rgba(10, 102, 194, .25);
  border-color: rgba(10, 102, 194, .5)
}

.footer-social a.fb:hover {
  background: rgba(24, 119, 242, .25);
  border-color: rgba(24, 119, 242, .5)
}

.footer-social a.wa:hover {
  background: rgba(37, 211, 102, .25);
  border-color: rgba(37, 211, 102, .5)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.footer-links {
  display: flex;
  gap: 20px
}

.footer-links a {
  color: rgba(255, 255, 255, .4);
  font-size: .8rem;
  text-decoration: none;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--gl)
}

footer .copy {
  color: rgba(255, 255, 255, .3);
  font-size: .78rem
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr
  }

  .news-card {
    min-width: calc(50% - 11px)
  }
}

@media(max-width:900px) {

  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .cities-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto
  }

  .city-card.big {
    grid-column: auto;
    grid-row: auto
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }
}

@media(max-width:640px) {
  .valuation-steps {
    grid-template-columns: 1fr
  }

  .nav-links,
  .nav-social,
  .nav-lang {
    display: none
  }

  .hamburger {
    display: flex
  }

  .pricing-grid {
    grid-template-columns: 1fr
  }

  .cities-mosaic {
    grid-template-columns: 1fr
  }

  section {
    padding: 70px 5%
  }

  #news {
    padding: 70px 5%
  }

  .news-card {
    min-width: calc(100% - 0px)
  }

  .social-row {
    flex-direction: column
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start
  }
}

/* ── INTRO (مؤشر) ── */
#intro {
  background: var(--darker)
}

.intro-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto
}

.intro-chips {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px
}

.intro-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27, 80, 200, .12);
  border: 1px solid rgba(27, 80, 200, .3);
  color: #8FB8FF;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700
}
