/* ================================================================
   Wassilni Website — Design System & Styles
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---- Variables ------------------------------------------------ */
:root {
  --primary:       #019485;
  --primary-dark:  #01685E;
  --primary-light: #E6F5F3;
  --text:          #1E1E1E;
  --muted:         #A3A3A3;
  --border:        #E5E7EB;
  --bg-alt:        #F4F7F8;
  --white:         #FFFFFF;
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.06);
  --shadow:        0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.14);
  --radius:        16px;
  --radius-sm:     8px;
  --radius-xs:     4px;
  --transition:    0.22s ease;
  --nav-height:    72px;
  --max-width:     1200px;
}

/* ---- Reset --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---- Typography --------------------------------------------- */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; }

/* ---- Layout -------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section__header p { margin-top: 12px; color: #555; font-size: 1.05rem; }

.section__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

/* ---- Buttons ------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.4;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(1,148,133,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-1px);
}
.btn--dark {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}
.btn--dark:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--sm { padding: 9px 20px; font-size: 0.875rem; }

/* ---- Navbar -------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--primary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}
.navbar__brand img { width: 34px; height: auto; }
.navbar__brand-text { color: var(--primary); }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__link {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  white-space: nowrap;
}
.navbar__link:hover, .navbar__link.active {
  color: var(--primary);
  background: var(--primary-light);
}
.navbar__cta { margin-left: 8px; }
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar__mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--primary);
  padding: 12px 20px 20px;
  gap: 2px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  z-index: 999;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile .navbar__link { display: block; padding: 10px 14px; }
.navbar__mobile .navbar__cta { margin-top: 8px; margin-left: 0; }

/* ---- Hero — Home -------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #019485 0%, #01685E 100%);
  padding: 96px 0 80px;
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.95);
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Hero — Page -------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, #019485 0%, #01685E 100%);
  padding: 72px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.page-hero--dark { background: linear-gradient(135deg, #01685E 0%, #014A43 100%); }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ---- Stats Bar --------------------------------------------- */
.stats-bar {
  background: var(--white);
  border-top: 4px solid var(--primary);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.stats-bar__item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stats-bar__label {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ---- Cards -------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.card__body { font-size: 0.93rem; color: #555; line-height: 1.65; }

.cards-grid { display: grid; gap: 24px; }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Steps -------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.666% + 28px);
  right: calc(16.666% + 28px);
  height: 2px;
  background: var(--primary-light);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step__number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(1,148,133,0.3);
}
.step__icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 8px;
}
.step__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step__body { font-size: 0.88rem; color: #666; line-height: 1.6; }

/* ---- Business Teaser ---------------------------------------- */
.biz-teaser {
  background: linear-gradient(135deg, #01685E 0%, #014A43 100%);
  padding: 80px 0;
  color: var(--white);
}
.biz-teaser__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.biz-teaser__text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 12px; }
.biz-teaser__text p  { color: rgba(255,255,255,0.78); max-width: 480px; font-size: 1rem; }
.biz-teaser__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Download CTA ------------------------------------------- */
.download-cta { background: var(--bg-alt); padding: 80px 0; text-align: center; }
.download-cta h2 { margin-bottom: 12px; }
.download-cta > .container > p { color: #555; margin-bottom: 40px; font-size: 1.05rem; }

.app-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.app-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--text);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 14px;
  transition: all var(--transition);
  min-width: 180px;
}
.app-badge:hover {
  background: #2c2c2c;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.app-badge__icon { font-size: 2rem; flex-shrink: 0; }
.app-badge__text { text-align: left; }
.app-badge__sub   { font-size: 0.72rem; opacity: 0.7; line-height: 1; margin-bottom: 2px; }
.app-badge__store { font-size: 1rem; font-weight: 700; line-height: 1; }

/* ---- Testimonials ------------------------------------------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card__stars { display: flex; gap: 2px; }
.testimonial-card__stars span { color: #F59E0B; font-size: 0.95rem; }
.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  flex: 1;
  font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 0.9rem; }
.testimonial-card__role { font-size: 0.78rem; color: var(--muted); }

/* ---- Tabs ---------------------------------------------------- */
.tabs-container { }
.tabs {
  display: flex;
  background: var(--bg-alt);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 48px;
  gap: 4px;
}
.tab-btn {
  padding: 11px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: all var(--transition);
  cursor: pointer;
}
.tab-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(1,148,133,0.3);
}
.tab-btn:hover:not(.active) { color: var(--text); background: var(--border); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---- Flow Steps (detail) ------------------------------------ */
.flow-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.flow-step__num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(1,148,133,0.25);
}
.flow-step__body h4 { font-weight: 700; margin-bottom: 4px; }
.flow-step__body p  { font-size: 0.9rem; color: #666; line-height: 1.55; }

/* ---- Accordion ---------------------------------------------- */
.accordion-category-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin: 40px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.accordion-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--primary-light);
}
.accordion-category-label:first-child { margin-top: 0; }

.accordion-group {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 8px;
}
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  text-align: left;
  font-weight: 600;
  font-size: 0.94rem;
  cursor: pointer;
  transition: background var(--transition);
  gap: 16px;
  color: var(--text);
}
.accordion-btn:hover  { background: var(--bg-alt); }
.accordion-btn.open   { color: var(--primary); background: var(--primary-light); }
.accordion-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-icon svg { width: 18px; height: 18px; }
.accordion-btn.open .accordion-icon { transform: rotate(180deg); color: var(--primary); }
.accordion-body {
  display: none;
  padding: 4px 24px 20px;
  font-size: 0.93rem;
  color: #555;
  line-height: 1.75;
}
.accordion-body.open { display: block; }
.accordion-body ul {
  margin: 8px 0 0 20px;
  list-style: disc;
}
.accordion-body li { margin-bottom: 4px; }

/* ---- Forms -------------------------------------------------- */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.form-control {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1,148,133,0.12);
}
.form-control::placeholder { color: #C0C0C0; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 16px; }

/* ---- Contact Info Cards ------------------------------------- */
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.info-card__icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.info-card__icon svg { width: 22px; height: 22px; }
.info-card__title { font-weight: 700; margin-bottom: 4px; font-size: 0.9rem; }
.info-card__value { font-size: 0.92rem; color: #555; line-height: 1.5; }

/* ---- Map Placeholder ---------------------------------------- */
.map-placeholder {
  background: var(--bg-alt);
  border-radius: var(--radius);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  border: 2px dashed var(--border);
  font-size: 0.9rem;
}
.map-placeholder svg { opacity: 0.4; }

/* ---- Safety Features ---------------------------------------- */
.safety-feature {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  transition: box-shadow var(--transition), transform var(--transition);
}
.safety-feature:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.safety-feature__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.safety-feature__icon svg { width: 26px; height: 26px; }
.safety-feature__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.safety-feature__body  { font-size: 0.93rem; color: #555; line-height: 1.65; }

.safety-tip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.safety-tip__num {
  width: 32px;
  height: 32px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.safety-tip__text h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.safety-tip__text p  { font-size: 0.88rem; color: #666; line-height: 1.55; }

/* ---- Disclaimer / Alerts ------------------------------------ */
.disclaimer {
  background: #FEF3C7;
  border: 1px solid #F59E0B;
  border-left-width: 4px;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #78350F;
  line-height: 1.6;
}
.disclaimer strong { font-weight: 700; }
.disclaimer ul { margin: 8px 0 0 16px; list-style: disc; }
.disclaimer li  { margin-bottom: 4px; }

.notice {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--primary-dark);
  line-height: 1.6;
}

/* ---- Value Cards -------------------------------------------- */
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-card__icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}
.value-card__icon svg { width: 30px; height: 30px; }
.value-card__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.value-card__body  { font-size: 0.92rem; color: #555; line-height: 1.65; }

/* ---- Team Placeholder --------------------------------------- */
.team-placeholder {
  text-align: center;
  padding: 64px 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 2px dashed var(--border);
}
.team-placeholder h3 { margin-bottom: 8px; color: var(--muted); }
.team-placeholder p  { color: var(--muted); font-size: 0.9rem; }

/* ---- Two-Column Layout -------------------------------------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col__text h2 { margin-bottom: 16px; }
.two-col__text p  { color: #555; line-height: 1.75; margin-bottom: 14px; }
.two-col__text p:last-of-type { margin-bottom: 0; }

/* ---- CTA Banner -------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h3  { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 12px; color: var(--white); }
.cta-banner p   { color: rgba(255,255,255,0.82); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- Rating Visual ----------------------------------------- */
.rating-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  text-align: center;
}
.rating-stars-lg { display: flex; justify-content: center; gap: 6px; margin: 16px 0; }
.rating-stars-lg span { font-size: 2.2rem; }

/* ---- Payment Flow Visual ------------------------------------ */
.payment-flow {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 32px;
}
.payment-flow h4 { margin-bottom: 20px; color: var(--primary); }

/* ---- Legal / Privacy Policy --------------------------------- */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: flex-start;
}
.legal-toc {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
}
.legal-toc h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 700;
}
.legal-toc a {
  display: block;
  font-size: 0.85rem;
  color: #555;
  padding: 7px 10px;
  border-radius: var(--radius-xs);
  transition: all var(--transition);
  border-left: 2px solid transparent;
  line-height: 1.4;
  margin-bottom: 2px;
}
.legal-toc a:hover { color: var(--primary); border-left-color: var(--primary); background: var(--primary-light); }
.legal-content { min-width: 0; }
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 52px;
  margin-bottom: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-content h3 { font-size: 1.05rem; margin-top: 28px; margin-bottom: 10px; color: var(--primary-dark); }
.legal-content p  { margin-bottom: 14px; line-height: 1.8; color: #444; font-size: 0.95rem; }
.legal-content ul, .legal-content ol { margin: 10px 0 18px 20px; }
.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content li   { margin-bottom: 6px; font-size: 0.93rem; color: #444; line-height: 1.65; }

/* ---- Footer ------------------------------------------------- */
.footer { background: #0C2420; color: rgba(255,255,255,0.65); padding: 64px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__logo  { filter: brightness(0) invert(1); opacity: 0.9; width: 32px; }
.footer__wordmark { color: var(--white); font-size: 1.05rem; font-weight: 700; }
.footer__tagline { font-size: 0.88rem; line-height: 1.65; margin-bottom: 24px; }
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer__social-link:hover { background: var(--primary); color: var(--white); }
.footer__social-link svg { width: 16px; height: 16px; }
.footer__col h5 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
}

/* ---- Misc helpers ------------------------------------------ */
.text-center  { text-align: center; }
.text-primary { color: var(--primary); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.gap-16 { gap: 16px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.w-full { width: 100%; }

/* ---- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid  { grid-template-columns: 1fr 1fr; }
  .legal-layout  { grid-template-columns: 1fr; }
  .legal-toc     { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }
  .desktop-only { display: none !important; }
  .hero  { padding: 64px 0 56px; }
  .section { padding: 56px 0; }
  .cards-grid--3 { grid-template-columns: 1fr; }
  .cards-grid--2 { grid-template-columns: 1fr; }
  .steps-grid    { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .two-col       { grid-template-columns: 1fr; gap: 36px; }
  .form-grid     { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr; }
  .stats-bar__item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px; }
  .stats-bar__item:last-child { border-bottom: none; }
  .biz-teaser__inner { flex-direction: column; text-align: center; }
  .biz-teaser__actions { justify-content: center; }
  .footer__grid  { grid-template-columns: 1fr; }
  .legal-layout  { grid-template-columns: 1fr; }
  .cta-banner    { padding: 40px 24px; }
  .section__header { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .btn--lg { padding: 14px 28px; }
  .cards-grid--4 { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .tabs { flex-direction: column; border-radius: var(--radius); }
  .tab-btn { border-radius: var(--radius-sm); text-align: center; }
  .app-badges { flex-direction: column; align-items: center; }
  .safety-feature { flex-direction: column; }
}

/* ================================================================
   Language Switcher
   ================================================================ */
.navbar__lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  border: 1.5px solid var(--primary);
  transition: all var(--transition);
  margin-right: 4px;
  flex-shrink: 0;
}
.navbar__lang:hover {
  background: var(--primary);
  color: var(--white);
}
[dir="rtl"] .navbar__lang { margin-right: 0; margin-left: 4px; }

.navbar__mobile .navbar__lang {
  align-self: flex-start;
  width: auto;
  padding: 8px 16px;
  margin-top: 4px;
  font-size: 0.9rem;
}

/* ================================================================
   RTL / Arabic Support
   ================================================================ */
[dir="rtl"] {
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Flip directional borders */
[dir="rtl"] .safety-feature {
  border-left: none;
  border-right: 4px solid var(--primary);
  transform-origin: right center;
}
[dir="rtl"] .safety-feature:hover {
  transform: translateX(-4px);
}
[dir="rtl"] .disclaimer {
  border-left-width: 1px;
  border-right: 4px solid #F59E0B;
}
[dir="rtl"] .notice {
  border-left: none;
  border-right: 4px solid var(--primary);
}
[dir="rtl"] .legal-toc a {
  border-left: none;
  border-right: 2px solid transparent;
  padding-left: 8px;
  padding-right: 10px;
}
[dir="rtl"] .legal-toc a:hover {
  border-right-color: var(--primary);
}

/* List margin flip */
[dir="rtl"] .legal-content ul,
[dir="rtl"] .legal-content ol,
[dir="rtl"] .accordion-body ul,
[dir="rtl"] .disclaimer ul {
  margin-left: 0;
  margin-right: 20px;
}

/* App badge text align */
[dir="rtl"] .app-badge__text { text-align: right; }

/* Steps connector — symmetric, no change needed */

/* Card icon — no flip needed (just margin) */

/* RTL step hover transform */
[dir="rtl"] .safety-feature { border-left: none; border-right: 4px solid var(--primary); }

/* Inline styles that used ltr-specific padding */
[dir="rtl"] .flow-step { direction: rtl; }
[dir="rtl"] .two-col { direction: rtl; }

/* Footer social in RTL */
[dir="rtl"] .footer__social { flex-direction: row-reverse; }
[dir="rtl"] .footer__social { flex-direction: row; }

/* Form text alignment */
[dir="rtl"] .form-control,
[dir="rtl"] .form-control::placeholder {
  text-align: right;
}
[dir="rtl"] select.form-control { background-position: left 12px center; }

/* Responsive RTL */
@media (max-width: 480px) {
  [dir="rtl"] .safety-feature { flex-direction: column; border-right: none; border-top: 4px solid var(--primary); }
}
