/* ===========================
   Zawji Landing — BEM Styles
   =========================== */

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

body {
  font-family: 'Inter', sans-serif;
  background: #0B1A0E;
  color: #E5E7EB;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }

/* --- Utilities --- */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.text-gradient-gold {
  background: linear-gradient(to right, #D4AF37, #FDD835);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.islamic-pattern {
  background-image: radial-gradient(#1E3529 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.2;
}

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float { animation: float 4s ease-in-out infinite; }

/* --- Section shared --- */
.section {
  padding: 6rem 0;
  position: relative;
}

.section--alt {
  background: #08130B;
}

.section--border {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__label {
  color: #3AF35F;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.section__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 0.5rem;
  color: #fff;
}
@media (min-width: 768px) { .section__title { font-size: 2.25rem; } }

.section__desc {
  color: #A8BDB4;
  margin-top: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   NAV
   ========================= */
.nav {
  position: fixed;
  width: 100%;
  z-index: 50;
  background: rgba(11,26,14,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__logo-img {
  height: 2rem;
}

.nav__links {
  display: none;
  align-items: baseline;
  gap: 2rem;
}
@media (min-width: 768px) { .nav__links { display: flex; } }

.nav__link {
  color: #A8BDB4;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__link:hover { color: #3AF35F; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__langs {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
}

.nav__lang {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  color: #A8BDB4;
  transition: color 0.2s;
}
.nav__lang:hover { color: #fff; }
.nav__lang--active { color: #fff; font-weight: 700; }

.nav__cta {
  display: none;
  background: #3AF35F;
  color: #000;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 0 15px rgba(58,243,95,0.2);
}
.nav__cta:hover {
  background: #2ed64f;
  box-shadow: 0 0 20px rgba(58,243,95,0.4);
}
.nav__cta--web {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: none;
}
.nav__cta--web:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: none;
}
@media (min-width: 768px) { .nav__cta { display: inline-block; } }

/* =========================
   HERO
   ========================= */
.hero {
  position: relative;
  overflow: hidden;
  background: #0B1A0E;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 600px;
  background: rgba(58,243,95,0.05);
  border-radius: 9999px;
  filter: blur(120px);
  z-index: -1;
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero__content { padding-top: 6rem; padding-bottom: 6rem; }
}

.hero__center {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2rem;
}
@media (min-width: 768px) { .hero__center { margin-bottom: 4rem; } }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: #13231B;
  border: 1px solid rgba(212,175,55,0.3);
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .hero__badge { margin-bottom: 2rem; } }

.hero__badge-icon {
  height: 1.25rem;
  width: 1.25rem;
}

.hero__badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #D4AF37;
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #fff;
}
@media (min-width: 768px) { .hero__title { font-size: 3.75rem; } }

.hero__subtitle {
  font-size: 1rem;
  color: #A8BDB4;
  margin-bottom: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .hero__subtitle { font-size: 1.25rem; } }

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) { .hero__actions { flex-direction: row; } }

.hero__btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #3AF35F;
  color: #000;
  border-radius: 0.75rem;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(58,243,95,0.25);
  transition: all 0.2s;
}
@media (min-width: 640px) { .hero__btn { width: auto; } }
.hero__btn:hover {
  background: #2ed64f;
  transform: scale(1.05);
}

.hero__btn--web {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: none;
}
.hero__btn--web:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: none;
  transform: scale(1.05);
}
.hero__btn--web .hero__btn-icon {
  height: auto;
  width: auto;
  font-size: 1.25rem;
}

.hero__btn-icon {
  height: 1.25rem;
  width: 1.25rem;
}

/* =========================
   VALUE PROPS
   ========================= */
.value-props {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .value-props { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .value-props { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: #13231B;
  border: 1px solid #1E3529;
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
}

.value-card__icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(20,83,45,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.value-card__icon-wrap--primary {
  color: #3AF35F;
}

.value-card__icon {
  height: 1.75rem;
  width: 1.75rem;
}

.value-card__title {
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.value-card__desc {
  font-size: 0.75rem;
  color: #A8BDB4;
}

/* =========================
   STEPS (How It Works)
   ========================= */
.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .steps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps__grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  background: #112018;
  border: 1px solid #1E3529;
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  transition: border-color 0.2s;
}
.step-card:hover { border-color: rgba(58,243,95,0.3); }

.step-card__number {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #3AF35F;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.step-card__icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(20,83,45,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #3AF35F;
}

.step-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.step-card__desc {
  font-size: 0.875rem;
  color: #A8BDB4;
  margin-bottom: 0.75rem;
}

.step-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.step-card__tag {
  padding: 0.25rem 0.5rem;
  background: #1E3529;
  font-size: 10px;
  color: #3AF35F;
  border-radius: 0.25rem;
}

.step-card__tag--secondary {
  color: #D4AF37;
}

/* Step 7 — final (gold) */
.step-card--final {
  background: linear-gradient(to right, #13231B, #112018);
  border-color: rgba(212,175,55,0.3);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  position: relative;
  transition: border-color 0.2s;
}
.step-card--final:hover { border-color: rgba(212,175,55,0.5); }

.step-card--final .step-card__number {
  background: #D4AF37;
  left: 50%;
  transform: translateX(-50%);
}

.step-card--final .step-card__icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(212,175,55,0.1);
  color: #D4AF37;
  margin: 0 auto 1rem;
}

.step-card--final .step-card__title {
  font-size: 1.25rem;
}

.step-card--final .step-card__desc {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.step-card--final .step-card__tags {
  justify-content: center;
  margin-top: 1rem;
}

.step-card--final .step-card__tag {
  padding: 0.375rem 0.75rem;
  background: rgba(212,175,55,0.1);
  color: #D4AF37;
  font-size: 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(212,175,55,0.2);
}

/* =========================
   SAFETY
   ========================= */
.safety__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .safety__grid { grid-template-columns: repeat(2, 1fr); } }

.safety-card {
  background: #13231B;
  border: 1px solid #1E3529;
  border-radius: 1.5rem;
  padding: 2rem;
}

.safety-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.safety-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.safety-card__avatar--sister {
  background: rgba(131,24,67,0.3);
}

.safety-card__avatar--brother {
  background: rgba(30,58,138,0.3);
}

.safety-card__avatar-img {
  height: 1.5rem;
  width: 1.5rem;
  filter: invert(1);
  opacity: 0.7;
}

.safety-card__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.safety-card__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.safety-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.safety-check__icon {
  color: #3AF35F;
  margin-top: 0.125rem;
  font-size: 1.125rem;
}

.safety-check__title {
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
}

.safety-check__desc {
  font-size: 0.75rem;
  color: #A8BDB4;
}

/* Privacy badges */
.privacy-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.privacy-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: #13231B;
  border: 1px solid #1E3529;
  font-size: 0.875rem;
  color: #A8BDB4;
}

.privacy-badge__icon {
  color: #3AF35F;
  font-size: 1rem;
}

/* =========================
   FEATURES
   ========================= */
.features__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media (min-width: 1024px) { .features__inner { flex-direction: row; } }

.features__text {
  width: 100%;
}
@media (min-width: 1024px) { .features__text { width: 50%; } }

.features__label {
  color: #3AF35F;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.features__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 0.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .features__title { font-size: 2.25rem; } }

.features__desc {
  color: #A8BDB4;
  margin-bottom: 1.5rem;
  line-height: 1.625;
}

.features__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-item__icon {
  color: #3AF35F;
  margin-top: 0.25rem;
}

.feature-item__title {
  color: #fff;
  font-weight: 700;
}

.feature-item__desc {
  font-size: 0.875rem;
  color: #A8BDB4;
}

/* Phone mock */
.features__phone {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) { .features__phone { width: 50%; } }

.phone-mock {
  width: 300px;
}

.phone-mock__frame {
  border-radius: 40px;
  border: 8px solid #1f2937;
  background: #111827;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  position: relative;
}

.phone-mock__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 1.5rem;
  background: #1f2937;
  border-radius: 0 0 1rem 1rem;
  z-index: 20;
}

.phone-mock__screen {
  background: #0B1611;
  height: 580px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1rem 0;
}

.phone-mock__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.phone-mock__header-title {
  color: #fff;
  font-weight: 700;
}

.phone-mock__connects {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: #13231B;
  border: 1px solid rgba(212,175,55,0.5);
  color: #D4AF37;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.phone-mock__connects-icon {
  font-size: 10px;
}

.phone-mock__card {
  background: linear-gradient(to bottom right, #13231B, #0d1a14);
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #1E3529;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  flex-grow: 1;
}

.phone-mock__card-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  background: rgba(58,243,95,0.05);
  border-radius: 0 0 0 9999px;
  margin-right: -1rem;
  margin-top: -1rem;
}

.phone-mock__card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.phone-mock__card-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.phone-mock__card-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #A8BDB4;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.phone-mock__card-location-icon {
  font-size: 0.875rem;
  color: #3AF35F;
}

.phone-mock__card-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #1e3a5f;
  border: 2px solid rgba(212,175,55,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.phone-mock__card-avatar-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(30,58,95,0.8), rgba(22,78,99,0.8));
}

.phone-mock__card-avatar-img {
  height: 2rem;
  width: 2rem;
  filter: invert(1);
  opacity: 0.5;
  position: relative;
  z-index: 10;
}

.phone-mock__card-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.phone-mock__card-stat {
  background: #0B1611;
  border-radius: 0.5rem;
  padding: 0.75rem;
  border: 1px solid #1E3529;
}

.phone-mock__card-stat-label {
  font-size: 9px;
  color: #A8BDB4;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.phone-mock__card-stat-value {
  font-size: 0.75rem;
  color: #fff;
  font-weight: 500;
}

.phone-mock__card-section-label {
  font-size: 10px;
  color: #A8BDB4;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.phone-mock__card-section-text {
  font-size: 11px;
  color: #fff;
  line-height: 1.625;
}

.phone-mock__card-section + .phone-mock__card-section {
  margin-top: 0.75rem;
}

.phone-mock__actions {
  margin-top: auto;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
}

.phone-mock__action {
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.05);
}

.phone-mock__action--skip {
  width: 3.5rem;
  height: 3.5rem;
  background: #1E3529;
  color: #f87171;
}

.phone-mock__action--save {
  width: 3rem;
  height: 3rem;
  background: #1E3529;
  color: #D4AF37;
}

.phone-mock__action--like {
  width: 4rem;
  height: 4rem;
  background: #3AF35F;
  color: #000;
  box-shadow: 0 0 20px rgba(58,243,95,0.4);
  transform: scale(1.1);
}

/* =========================
   CONNECTS
   ========================= */
.connects {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.connects__card {
  background: linear-gradient(to bottom right, #13231B, #0A120E);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid #1E3529;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  text-align: center;
}
@media (min-width: 768px) { .connects__card { padding: 3rem; } }

.connects__icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: rgba(212,175,55,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(212,175,55,0.3);
  margin: 0 auto 1.5rem;
}

.connects__icon {
  font-size: 1.875rem;
  color: #D4AF37;
}

.connects__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .connects__title { font-size: 1.875rem; } }

.connects__desc {
  color: #A8BDB4;
  margin-bottom: 2rem;
  line-height: 1.625;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.connects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .connects__grid { grid-template-columns: repeat(3, 1fr); } }

.connect-feature {
  background: #0B1A0E;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #1E3529;
}

.connect-feature__icon {
  color: #3AF35F;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.connect-feature__title {
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.connect-feature__desc {
  font-size: 0.75rem;
  color: #A8BDB4;
}

/* =========================
   FAQ
   ========================= */
.faq {
  max-width: 48rem;
  margin: 0 auto;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #13231B;
  border: 1px solid #1E3529;
  border-radius: 1rem;
  overflow: hidden;
}

.faq-item__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
}

.faq-item__question {
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding-right: 1rem;
}

.faq-item__icon {
  color: #3AF35F;
  font-size: 1.25rem;
  transition: transform 0.3s;
}

.faq-item__answer {
  padding: 0 1.25rem 1.25rem;
}

.faq-item__answer--hidden {
  display: none;
}

.faq-item__answer-text {
  font-size: 0.875rem;
  color: #A8BDB4;
  line-height: 1.625;
}

.faq-item__answer-text strong {
  color: #fff;
}

/* =========================
   CTA
   ========================= */
.cta {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta__icon-wrap {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: linear-gradient(to top right, #3AF35F, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 0 40px rgba(58,243,95,0.3);
}

.cta__icon {
  color: #000;
  font-size: 2.25rem;
}

.cta__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .cta__title { font-size: 2.25rem; } }

.cta__desc {
  color: #A8BDB4;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: #3AF35F;
  color: #000;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 0 20px rgba(58,243,95,0.25);
  transition: all 0.2s;
}
.cta__btn:hover {
  background: #2ed64f;
  transform: scale(1.05);
}

.cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) { .cta__buttons { flex-direction: row; } }

.cta__btn--web {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: none;
}
.cta__btn--web:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: none;
  transform: scale(1.05);
}
.cta__btn--web .cta__btn-icon {
  height: auto;
  width: auto;
  font-size: 1.25rem;
}

.cta__btn-icon {
  height: 1.25rem;
  width: 1.25rem;
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
  background: #08130B;
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); } }

.site-footer__brand {
  grid-column: 1;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.site-footer__logo-img {
  height: 2rem;
}

.site-footer__about {
  color: #A8BDB4;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.site-footer__social {
  display: flex;
  gap: 1rem;
}

.site-footer__social-link {
  color: #9ca3af;
  transition: color 0.2s;
}
.site-footer__social-link:hover { color: #3AF35F; }

.site-footer__social-icon {
  height: 1.25rem;
  width: 1.25rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.site-footer__social-link:hover .site-footer__social-icon {
  opacity: 1;
}

.site-footer__col-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__link {
  font-size: 0.875rem;
  color: #A8BDB4;
  transition: color 0.2s;
}
.site-footer__link:hover { color: #3AF35F; }

.site-footer__bottom {
  border-top: 1px solid #1E3529;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer__copy {
  color: #6b7280;
  font-size: 0.875rem;
}

.site-footer__made {
  color: #6b7280;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__heart {
  color: #3AF35F;
  font-size: 0.875rem;
}

/* =========================
   RTL SUPPORT (Arabic)
   ========================= */
[dir="rtl"] body {
  font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
}

[dir="rtl"] .nav__links {
  gap: 2rem;
}

[dir="rtl"] .step-card__number {
  left: auto;
  right: -1rem;
}

[dir="rtl"] .step-card--final .step-card__number {
  right: 50%;
  left: auto;
  transform: translateX(50%);
}

[dir="rtl"] .features__inner {
  flex-direction: column;
}
@media (min-width: 1024px) {
  [dir="rtl"] .features__inner { flex-direction: row-reverse; }
}

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

[dir="rtl"] .faq-item__question {
  padding-right: 0;
  padding-left: 1rem;
}
