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

:root {
  --teal:       #2DD4BF;
  --teal-light: #CCFAF4;
  --teal-dark:  #1aab97;
  --white:      #FFFFFF;
  --black:      #111111;
  --text-sec:   #6B7280;
  --border:     #E5E7EB;
  --page-bg:    #F3F4F6;
  --card-bg:    #FFFFFF;
  --nav-h:      68px;
  --r:          18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Carlito', Calibri, sans-serif;
  background: var(--page-bg);
  color: var(--black);
  overflow-x: hidden;
}

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Carlito:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ─── Scroll reveal ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.08s; }
.fade-up.delay-2 { transition-delay: 0.16s; }
.fade-up.delay-3 { transition-delay: 0.24s; }
.fade-up.delay-4 { transition-delay: 0.32s; }

/* ─── Layout ─── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 5%;
  border-radius: 0 0 var(--r) var(--r);
  transition: box-shadow 0.2s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }

.navbar-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-brand {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand-zw  { color: var(--teal); }
.brand-aaj { color: var(--black); }

.navbar-links,
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex: 1;
}
.navbar-links a,
.nav-links a {
  font-size: 15px;
  color: var(--black);
  text-decoration: none;
  transition: color 0.18s;
}
.navbar-links a:hover,
.nav-links a:hover { color: var(--teal); }

.navbar-cta { margin-left: auto; }

/* ─── Breadcrumb ─── */
.breadcrumb-bar {
  padding-top: calc(var(--nav-h) + 12px);
  padding-bottom: 4px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-sec);
}
.breadcrumb a { color: var(--teal); text-decoration: none; }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--black); font-weight: 600; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.18s, transform 0.18s;
  font-family: inherit;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); opacity: 1; }
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 60%);
  padding: calc(var(--nav-h) + 64px) 0 80px;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.hero-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--teal);
}
.hero-heading {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  max-width: 780px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-sec);
  max-width: 620px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── Proof Bar ─── */
.proof-bar {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 680px;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.proof-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.proof-label { font-size: 13px; color: var(--text-sec); }

/* ─── Section labels / headings ─── */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-sec);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* ─── Features ─── */
.features-section {
  padding: 80px 0;
  background: var(--white);
}
.features-section .section-heading,
.features-section .section-label,
.features-section .section-sub { text-align: center; }
.features-section .section-sub { margin: 0 auto 48px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--page-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(45, 212, 191, 0.12);
  border-color: var(--teal);
}
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.feature-card p { font-size: 14px; color: var(--text-sec); line-height: 1.55; }

/* ─── Comparison ─── */
.comparison-section {
  padding: 80px 0;
  background: var(--page-bg);
}
.table-wrap { overflow-x: auto; border-radius: 16px; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table thead tr { background: var(--black); color: var(--white); }
.comparison-table thead th { font-weight: 600; }
.comparison-table .highlight-col { background: rgba(45,212,191,0.07); font-weight: 600; }
.comparison-table thead .highlight-col { background: var(--teal); color: var(--white); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: var(--page-bg); }

/* ─── Regional ─── */
.regional-section {
  padding: 80px 0;
  background: var(--white);
}
.regional-inner { max-width: 800px; }
.regional-body p {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.75;
  margin-bottom: 20px;
}
.regional-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-sec);
}
.regional-links a {
  display: inline-block;
  padding: 5px 14px;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.regional-links a:hover { background: var(--teal); color: var(--white); }

/* ─── How It Works ─── */
.how-section {
  padding: 80px 0;
  background: var(--page-bg);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
}
.step-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1;
}
.step h3 { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-sec); line-height: 1.55; }

/* ─── FAQ ─── */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}
.faq-list {
  max-width: 720px;
  margin-top: 40px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  gap: 16px;
  font-family: inherit;
  transition: color 0.18s;
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.is-open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ─── CTA ─── */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
}
.cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-section .section-label { color: rgba(255,255,255,0.7); }
.cta-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  max-width: 600px;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  line-height: 1.6;
}
.store-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  background: var(--white);
  color: var(--black);
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.18s, transform 0.18s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  font-family: inherit;
}
.store-btn:hover { opacity: 0.92; transform: translateY(-2px); }
.store-btn--outline {
  background: transparent;
  box-shadow: none;
  border: 2px solid #111111;
  color: #111111;
}
.store-btn span { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn small { font-size: 11px; font-weight: 400; color: var(--text-sec); }
.store-btn strong { font-size: 15px; }

/* ─── Footer ─── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .navbar-brand { margin-bottom: 12px; display: inline-block; }
.footer-brand .brand-aaj { color: var(--white); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}
.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--teal); }
.footer-bottom {
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ════════════════════════════════════════
   BRIDGE: old HTML class names (uk/us/canada/australia/bahrain/oman/europe pages)
   Keeps those pages on-design without rewriting their HTML.
   ════════════════════════════════════════ */

/* Navbar */
.nav-logo {
  display: flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.nav-logo-text {
  font-size: 22px; font-weight: 700; color: var(--teal);
  letter-spacing: -0.02em;
}
.nav-logo-arabic {
  font-size: 18px; color: var(--black); opacity: 0.5;
}
.nav-cta {
  display: inline-flex; align-items: center;
  padding: 10px 22px; border-radius: 100px;
  background: var(--teal); color: var(--white);
  font-size: 15px; font-weight: 600;
  text-decoration: none; margin-left: auto;
  transition: opacity 0.18s;
}
.nav-cta:hover { opacity: 0.88; }

/* Hero */
.hero-content {
  max-width: 700px;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 20px;
  padding: calc(var(--nav-h) + 72px) 5% 80px;
}
.hero .hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-light); color: var(--teal-dark);
  font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid var(--teal);
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); display: inline-block;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700; line-height: 1.15; color: var(--black);
}
.hero-title em { color: var(--teal); font-style: normal; }
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  align-items: center;
}
.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 12px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; transition: opacity 0.18s, transform 0.18s;
  font-family: inherit;
}
.btn-store--apple { background: var(--black); color: var(--white); }
.btn-store--google { background: var(--white); color: var(--black); border: 1.5px solid var(--border); }
.btn-store:hover { opacity: 0.88; transform: translateY(-1px); }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: var(--text-sec);
}
.trust-check { color: var(--teal); font-weight: 700; margin-right: 3px; }

/* Proof bar (old style) */
.proof-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 5%;
}
.proof-bar-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.proof-text { font-size: 14px; color: var(--text-sec); flex: 1; }
.proof-flags { display: flex; gap: 6px; font-size: 20px; }
.proof-beta {
  font-size: 12px; font-weight: 600;
  color: var(--teal); background: var(--teal-light);
  padding: 4px 12px; border-radius: 100px;
}

/* Section inner wrapper */
.section-inner,
.comparison-inner,
.steps-inner,
.faq-inner {
  max-width: 1140px; margin: 0 auto; padding: 80px 24px;
}

/* Feature title/desc (inside .feature-card) */
.feature-title { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.feature-desc  { font-size: 14px; color: var(--text-sec); line-height: 1.55; }

/* Comparison table variants */
.comparison-table-wrap { overflow-x: auto; border-radius: 16px; }
.col-zowaaj { background: rgba(45,212,191,0.07) !important; font-weight: 600; }
.comparison-table thead .col-zowaaj { background: var(--teal) !important; color: var(--white); }
.check-yes     { color: var(--teal); font-weight: 700; }
.check-no      { color: #9CA3AF; }
.check-partial { font-size: 12px; color: var(--text-sec); }

/* Steps */
.steps-section { background: var(--page-bg); }
.step-num {
  font-size: 36px; font-weight: 700;
  color: var(--teal-light); line-height: 1; margin-bottom: 14px;
}
.step-title { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.step-desc  { font-size: 14px; color: var(--text-sec); line-height: 1.55; }

/* Regional inner */
.regional-inner { max-width: 1140px; margin: 0 auto; padding: 80px 24px; }
.regional-left { margin-bottom: 24px; }
.regional-content p {
  font-size: 16px; color: var(--text-sec);
  line-height: 1.75; margin-bottom: 18px;
}
.regional-link {
  color: var(--teal); text-decoration: none; font-weight: 600;
}
.regional-link:hover { text-decoration: underline; }

/* FAQ inner layout */
.faq-left { margin-bottom: 24px; }
.faq-left .faq-sub { font-size: 15px; color: var(--text-sec); margin-top: 12px; }
.faq-answer-inner {
  padding-bottom: 20px; font-size: 15px;
  color: var(--text-sec); line-height: 1.7;
}

/* CTA label / heading / fine print */
.cta-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 10px;
}
.cta-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700;
  color: var(--white); line-height: 1.2; margin-bottom: 12px;
}
.cta-sub {
  font-size: 17px; color: rgba(255,255,255,0.8);
  max-width: 500px; line-height: 1.6; margin-bottom: 24px;
}
.cta-fine { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 16px; }
.cta-inner { text-align: center; max-width: 1140px; margin: 0 auto; padding: 96px 24px; }

/* Footer (old structure) */
.site-footer { background: var(--black); color: rgba(255,255,255,0.6); }
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 64px 24px 32px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo-text { font-size: 20px; font-weight: 700; color: var(--teal); }
.footer-brand .nav-logo-arabic { color: rgba(255,255,255,0.4); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 10px; line-height: 1.6; }
.footer-col-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white); margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.18s; }
.footer-links a:hover { color: var(--teal); }
.footer-geo { display: flex; flex-direction: column; gap: 8px; }
.footer-geo-link { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.18s; }
.footer-geo-link:hover { color: var(--teal); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 28px; font-size: 13px; color: rgba(255,255,255,0.3);
}
.footer-socials { display: flex; gap: 16px; }
.footer-social { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.18s; }
.footer-social:hover { color: var(--teal); }

@media (max-width: 860px) {
  .hero-content { padding-top: calc(var(--nav-h) + 40px); }
  .footer-top { grid-template-columns: 1fr; }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .navbar-links { display: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .proof-bar { gap: 24px; }
}
