/* ==========================================================================
   Adduali — Learn Arabic landing page
   ========================================================================== */

:root {
  /* palette (sampled from layout.png) */
  --navy: #005C98;
  --navy-deep: #073555;
  --blue-soft: #75AAEA;
  --teal: #49A8B3;
  --teal-bright: #55B5BB;
  --indigo: #4F72AC;
  --slate: #357EAE;
  --slate-light: #7893AC;

  --bg-features: #e2ecf7;

  --card-mint: #C7E4EB;
  --card-lavender: #ECE8F4;
  --card-sage: #E6EFE7;
  --card-periwinkle: #E4EBF7;
  --card-blue: #DFEDFA;
  --card-cream: #F5F6E3;
  --card-sage2: #EAF2EC;

  --footer-bg: #8FADCB;
  --footer-bg-2: #7B9AC0;
  --footer-heading: #FDFEFF;
  --footer-italic: #E7F0FC;
  --footer-text: #EAF1FB;
  --footer-muted: #D3E1F2;

  --panel-bg: #E4EAF6;
  --footer-bottom-bg: #EDF2F8;
  --pricing-bg: #ECF3F9;

  --ink: #1C2733;
  --white: #FFFFFF;

  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-arabic: 'Noto Naskh Arabic', 'Segoe UI', serif;

  --container-w: 1240px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-full: 999px;

  --shadow-card: 0 10px 30px -12px rgba(20, 50, 80, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html {
  scrollbar-color: var(--teal-bright) var(--panel-bg);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--panel-bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--teal), var(--blue-soft));
  border-radius: var(--radius-full);
  border: 2px solid var(--panel-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--teal-bright), var(--navy));
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white) url(../images/hero/background.png) top center / 100% auto no-repeat;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

em {
  font-style: italic;
}

/* ---------- badges & shared bits ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 92, 152, 0.35);
  background: #E8F7F6;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}

.badge-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.badge-dark .dot { background: var(--footer-italic); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.98rem;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-outline-nav {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 9px 20px;
  font-size: 0.9rem;
}

.btn-gradient-sm {
  background: linear-gradient(90deg, var(--teal), var(--blue-soft));
  color: var(--white);
  padding: 11px 24px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 20px -8px rgba(60, 130, 180, 0.55);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal-bright), #3E8FA8);
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(50, 140, 160, 0.55);
}

.btn .btn-text { display: flex; flex-direction: column; line-height: 1.15; }
.btn .btn-text small { font-size: 0.65rem; font-weight: 500; opacity: 0.85; }
.arrow { display: inline-block; transition: transform 0.2s ease; }
.btn-outline-nav:hover .arrow { transform: translateX(3px); }

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: initial;
  top: 0;
  margin-top: 5px;
  z-index: 100;
  /*backdrop-filter: blur(10px);*/
}

.header-inner {
  align-items: center;
  gap: 16px 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  height: 70px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav .nav-link.active,
.nav-link:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

@media (min-width: 992px) {
  .main-nav {
    background: linear-gradient(90deg, var(--teal), var(--blue-soft));
    border-radius: var(--radius-full);
    padding: 0;
    gap: 0;
    overflow: hidden;
    box-shadow: 0 8px 20px -10px rgba(30, 100, 130, 0.4);
  }

  .main-nav .nav-link {
    padding: 15px 26px;
    border-radius: 0;
  }

  .main-nav .nav-link.active {
    background: rgba(0, 35, 40, 0.14);
    color: var(--white);
  }

  .main-nav .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.15);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.link-signup {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
}

.navbar-toggler.nav-toggle {
  border-color: rgba(0, 92, 152, 0.35);
  padding: 6px 10px;
}

.navbar-toggler.nav-toggle:focus {
  box-shadow: 0 0 0 3px rgba(0, 92, 152, 0.18);
}

.navbar-toggler.nav-toggle .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23005C98' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .navbar-collapse { flex-basis: 100%; }

  .nav-panel {
    background: linear-gradient(160deg, var(--teal), var(--blue-soft));
    border-radius: 22px;
    padding: 14px;
    margin-top: 14px;
    box-shadow: 0 20px 40px -14px rgba(0, 40, 70, 0.4);
  }

  .main-nav { flex-direction: column; gap: 6px; }
  .nav-link { text-align: center; padding: 14px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.hero-inner {
  position: relative;
  padding-top: 64px;
}

.hero-copy .badge { margin-bottom: 28px; }

.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(2.6rem, 4.9vw, 4.2rem);
  line-height: 1.06;
  margin-bottom: 26px;
}

.hero-title em {
  color: var(--blue-soft);
  font-weight: 800;
}

.hero-desc {
  color: var(--slate);
  font-size: 1.15rem;
  /*margin-right: 20px;*/
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 46px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-light);
  font-weight: 600;
}

.store-badge {
  display: inline-block;
  transition: transform 0.2s ease;
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge img { height: 54px; }

/* ---- hero visual: phone mockup ---- */

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.hero-phone-wrap {
  position: relative;
  width: 100%;
}

.phone-img {
  width: 80%;
  filter: drop-shadow(0 15px 70px rgba(10, 40, 70, 0.35));
  justify-self: center;
}

.marhaba-badge {
  width: 96px;
  margin: 0 auto;
  filter: drop-shadow(0 12px 20px rgba(20, 90, 100, 0.3));
}

.watch-video-link {
  display: inline-block;
  transition: transform 0.2s ease;
  justify-self: center;
}
.watch-video-link:hover { transform: translateY(-2px); }
.watch-video-link img { height: 40px; }

.hero-divider {
  display: block;
  width: 100%;
  max-width: var(--container-w);
  margin: 44px auto 0;
  opacity: 0.7;
}

/* ==========================================================================
   FEATURES
   ========================================================================== */

.features {
  background: linear-gradient(177deg, #e2ecf7, var(--white) 55%);
  padding: 90px 0 100px;
}

.section-head {
  margin-bottom: 56px;
}

.section-head .badge { margin-bottom: 22px; }

.section-title {
  font-family: var(--font-serif);
  font-weight: 550;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  color: var(--indigo);
  line-height: 1.2;
}

.section-title em { color: var(--teal-bright); }

.section-desc {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.65;
  padding-bottom: 6px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin: 0;
  gap: 28px;
}

@media (min-width: 576px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.feature-grid > .feature-card {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 10px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 32px -24px rgba(15, 45, 75, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.feature-card:not(.card-member):hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.card-member { box-shadow: 0 12px 26px -20px rgba(15, 45, 75, 0.3); }

.card-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(30, 50, 70, 0.35);
  margin-bottom: 18px;
  text-align: left;
}

.card-icon { margin-bottom: 12px; display: block; justify-items: center; }

.card-icon svg,
.card-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  stroke-width: 2;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.25;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.80rem;
  color: var(--slate);
  line-height: 1.55;
  font-weight: 500;
}

.card-mint { background: var(--card-mint); }
.card-lavender { background: var(--card-lavender); }
.card-sage { background: var(--card-sage); }
.card-periwinkle { background: var(--card-periwinkle); }
.card-blue { background: var(--card-blue); }
.card-cream { background: var(--card-cream); }
.card-sage2 { background: var(--card-sage2); }

.card-member {
  background: var(--white);
  border: 1px solid #e6ecf2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.member-title {
  font-size: 1.15rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #44AACA !important;
  margin-bottom: 14px;
  font-family: Arial !important;
}

.member-desc {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ==========================================================================
   ADDUALI APP SHOWCASE
   ========================================================================== */

.app-showcase {
  padding: 110px 0 90px;
  background: var(--white);
}

.about-head {
  text-align: center;
  margin-bottom: 70px;
}

.about-head .badge { margin-bottom: 26px; }

.about-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--teal-bright);
  line-height: 1.3;
}

.about-title em { color: var(--indigo); }

.app-carousel {
  position: relative;
  padding: 0 clamp(16px, 4vw, 60px);
}

.app-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 6px 10px;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.app-track::-webkit-scrollbar { display: none; }

.app-slide {
  flex: 0 0 auto;
  width: min(272px, 78vw);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 0 20px;
}

.app-slide-img {
  width: 100%;
  border-radius: 34px;
  box-shadow: 0 30px 60px -25px rgba(10, 40, 70, 0.45);
}

.app-slide-title {
  font-weight: 500;
  color: #10669F;
  font-size: 1.05rem;
  text-align: center;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  /*border: 1px solid #d6e0ea;*/
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 18px -10px rgba(0, 60, 100, 0.25);
  transition: background 0.2s ease, color 0.2s ease;
}
.carousel-arrow:hover { background: var(--navy); color: var(--white); }

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.carousel-dots button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #d7e1ec;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dots button.active {
  background: var(--navy);
  transform: scale(1.2);
}

/* ==========================================================================
   ABOUT (v2)
   ========================================================================== */

.about {
  padding: 110px 0;
  background: var(--white);
}

.about-col-left {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.about-visual {
  width: 100%;
  max-width: 360px;
  padding: 26px;
  border: 1px solid #e7ecf2;
  border-radius: var(--radius-lg);
}

.about-statement {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.9rem;
  color: #5F6F84;
  line-height: 1.35;
  max-width: 360px;
}

.about-col-right .badge { margin-bottom: 24px; }

.about-title-v2 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.28;
  color: var(--teal-bright);
  margin-bottom: 26px;
}

.about-title-v2 em { color: var(--indigo); font-style: italic; }

.about-col-right p {
  color: var(--slate-light);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ==========================================================================
   PRICING / PREMIUM
   ========================================================================== */

.pricing {
  background: linear-gradient(180deg, var(--pricing-bg));
  padding: 100px 0 110px;
}

.pricing-title { color: var(--indigo); }
.pricing-title em { color: var(--teal-bright); font-style: italic; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 380px;
  margin: 0 auto 44px;
}

@media (min-width: 700px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    align-items: center;
  }
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  background: var(--white);
  border: 2px solid #e6ecf2;
  border-radius: var(--radius-lg);
  padding: 60px 0 0;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 16px 32px -24px rgba(15, 45, 75, 0.35);
}

.price-card-left {justify-self: left;}
.price-card-end {justify-self: end;}

.price-card-featured {
  min-width: 300px;
  min-height: 300px;
  box-shadow: var(--shadow-card);
  outline: 6px solid #4bb3bd;
  outline-offset: 8px;
}

@media (min-width: 700px) {
  .price-card-featured { padding-top: 70px; }
}

.price-plan {
  display: block;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--teal-bright);
  margin: 0 24px 14px;
}

.price-amount {
  display: block;
  font-family: Arial;
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--indigo);
  margin: 0 24px 18px;
}

.price-tag {
  display: block;
  margin-top: auto;
  background: linear-gradient(90deg, var(--teal), var(--blue-soft));
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 16px 22px;
}

.pricing-cta { text-align: center; margin-bottom: 40px; }

.btn-subscribe { padding: 15px 70px; font-size: 1.1rem; font-weight: 500; margin-top: 20px; }

.pricing-note {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--slate-light);
  line-height: 1.75;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact {
  padding: 100px 0 110px;
  background: var(--white);
}

.contact-grid {
  align-items: start;
}

.contact-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--indigo);
  line-height: 1.2;
  margin: 22px 0 20px;
}

.contact-title em { color: var(--teal-bright); font-style: italic; }

.contact-col > p {
  color: var(--slate-light);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 440px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 600;
}

.contact-info svg { color: var(--slate-light); flex-shrink: 0; }

.contact-form {
  position: relative;
  background: var(--panel-bg);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form h3 {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dbe3ee;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(85, 181, 187, 0.18);
}

.contact-form .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.btn-send {
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
  border: none;
  cursor: pointer;
}

.btn-send:disabled { opacity: 0.7; cursor: progress; }

.form-status {
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}

.form-status.success { color: #1E8F5F; }
.form-status.error { color: #C0392B; }

/* ==========================================================================
   SITE FOOTER (bottom bar)
   ========================================================================== */

.site-footer {
  background: var(--footer-bottom-bg);
  padding: 70px 0 0;
}

.footer-grid {
  padding-bottom: 50px;
}

.footer-brand p {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 16px 0 18px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  font-size: 0.85rem;
  font-weight: 450;
  color: var(--navy);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--slate);
  font-size: 0.95rem;
  font-weight: 450;
}

.footer-col a:hover { color: var(--navy); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #dbe3ee;
  padding: 26px 0 30px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--slate-light);
}

.footer-arabic {
  font-family: var(--font-arabic);
  font-size: 1rem;
  color: var(--slate-light);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a { color: var(--slate-light); }
.footer-legal a:hover { color: var(--navy); }

/* ==========================================================================
   CTA FOOTER
   ========================================================================== */

.cta-footer {
  position: relative;
  background: linear-gradient(160deg, var(--footer-bg), var(--footer-bg-2));
  padding: 110px 0 0;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../images/download/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--footer-heading);
  line-height: 1.25;
  margin: 26px 0 22px;
}

.cta-title em { color: var(--footer-italic); }

.cta-desc {
  color: var(--footer-text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 38px;
}

.cta-ctas { justify-content: center; margin-bottom: 64px; }

.footer-reviews {
  position: relative;
  display: flex;
  justify-content: center;
  gap: clamp(30px, 6vw, 90px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 34px 0 40px;
  flex-wrap: wrap;
  text-align: center;
}

.review p {
  color: var(--footer-text);
  font-size: 0.95rem;
  /*font-style: italic;*/
  font-family: Arial;
  margin-bottom: 6px;
}

.review span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--footer-muted);
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 991.98px) {
  .hero-visual { order: -1; padding-top: 0px; }
  .hero-copy { text-align: left; }
  .marhaba-badge { width: 40%; margin: 4px auto 0; }

  .about-grid-v2 { text-align: center; }
  .about-col-left { align-items: center; }
  .about-statement { max-width: 480px; margin: 0 auto; }
  .about-col-right .badge, .about-col-right p { margin-left: auto; margin-right: auto; }
  .about-col-right p { max-width: 560px; }

  .contact-col > p, .contact-info { margin-left: auto; margin-right: auto; }

  .footer-brand { margin-bottom: 10px; }
}

@media (max-width: 640px) {
  .header-actions { gap: 12px; }
  .btn-outline-nav { padding: 9px 16px; font-size: 0.85rem; }
  .hero-inner { padding-top: 0px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 2.8rem); }
  .hero-ctas, .cta-ctas { flex-direction: row; align-items: stretch; margin-top: 15px; margin-bottom: 15px !important; }
  .hero-stats { gap: 28px; flex-wrap: wrap; justify-content: center; }
  .section-head { text-align: left; }
  .brand-logo { height: 50px; }
  .footer-reviews { gap: 26px; }
  .cta-footer { padding-top: 80px; }
  .btn:not(.btn-outline-nav) { width: 100%; justify-content: center; }
  .hero-ctas .store-badge, .cta-ctas .store-badge { text-align: center; width:45%; }
  .features {padding: 0 0 100px !important;}
  .app-showcase {padding: 10px 0 90px !important;}
  .about {padding: 10px 0 !important;}
  .pricing {padding: 40px 0 110px !important;}
  .pricing-grid {justify-items: center !important;}
  .price-card-left {justify-self: center !important;}
  .price-card-end {justify-self: center !important;}
  /*.marhaba-badge { display: none; }*/

  .app-carousel { padding: 0 40px; }
  .carousel-controls { gap: 12px; }

  .about-title-v2, .contact-title { text-align: center; }
  .footer-grid { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px 10px 16px; }
  .hero-title { font-size: clamp(1.9rem, 11vw, 2.4rem); }
  .hero-desc { margin-right: 0; font-size: 1.05rem; }
  .hero-stats { gap: 18px; }
  .stat-num { font-size: 1.7rem; }
  .brand-logo { height: 40px; }
  .header-actions { gap: 8px; }
  .link-signup { font-size: 0.85rem; }
  .btn-outline-nav { padding: 8px 14px; font-size: 0.8rem; }
}
