@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Noto+Sans+Arabic:wght@400;600;700&display=swap");

:root {
  --maroon: #8a1538;
  --maroon-dark: #6b102c;
  --maroon-soft: #f5e8ed;
  --teal: #0e9f94;
  --teal-dark: #0b7f78;
  --teal-soft: #e3f6f4;
  --gold: #c4a574;
  --gold-light: #e8dcc4;
  --sand: #f7f2ea;
  --bg: #faf8f5;
  --bg-elevated: #ffffff;
  --bg-dark: #1a0a10;
  --border: #e8e0d6;
  --text: #1a0a10;
  --text-secondary: #5c4f56;
  --text-muted: #8b7d85;
  --primary: var(--teal);
  --primary-hover: var(--teal-dark);
  --accent: var(--gold);
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(26, 10, 16, 0.06);
  --shadow-md: 0 12px 32px rgba(26, 10, 16, 0.1);
  --font: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --font-ar: "Noto Sans Arabic", "IBM Plex Sans", sans-serif;
  --max: 1120px;
  --content: 720px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a {
  color: var(--maroon);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--teal-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.site-header-inner,
.site-footer-inner,
.container,
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
  color: var(--text);
}

.brand-logo-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--maroon-soft), var(--teal-soft));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-ar {
  font-family: var(--font-ar);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
}

.nav a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.nav a:hover,
.nav a.active {
  color: var(--maroon);
}

/* ── Hero ── */

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 96px 0 104px;
  background:
    linear-gradient(135deg, rgba(26, 10, 16, 0.88) 0%, rgba(138, 21, 56, 0.82) 45%, rgba(14, 159, 148, 0.75) 100%),
    url("https://images.unsplash.com/photo-1559563458-527698bf5293?auto=format&fit=crop&w=1600&q=80") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/pattern.svg") repeat;
  opacity: 0.12;
  color: #fff;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

.hero-badge span {
  font-family: var(--font-ar);
  font-weight: 700;
  color: var(--gold-light);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-lead {
  margin: 0 0 32px;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--maroon));
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.hero-card h2 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card li:last-child {
  border-bottom: none;
}

.hero-card li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d4b88a);
  color: var(--bg-dark);
  box-shadow: 0 4px 16px rgba(196, 165, 116, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.06);
  color: var(--bg-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ── Cultural strip ── */

.cultural-strip {
  background: var(--maroon);
  color: #fff;
  padding: 20px 0;
  overflow: hidden;
}

.cultural-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 32px;
  font-size: 0.9rem;
  font-weight: 500;
}

.cultural-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.95;
}

.cultural-strip .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.8;
}

/* ── Sections ── */

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--sand);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 700;
  color: var(--maroon);
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section-intro {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

.card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--maroon), var(--teal));
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--maroon-soft);
  color: var(--maroon);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 600;
}

.card h3 a {
  color: var(--text);
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--maroon);
}

.card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ── Problem section ── */

.problem-section {
  background: linear-gradient(160deg, var(--bg-dark) 0%, var(--maroon-dark) 100%);
  color: #fff;
}

.section-header-light .section-label {
  color: var(--gold-light);
}

.section-header-light h2 {
  color: #fff;
}

.section-header-light .section-intro {
  color: rgba(255, 255, 255, 0.85);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.problem-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 560px;
  margin-inline: auto;
  width: 100%;
}

.problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(220, 74, 74, 0.2);
  color: #ff8a8a;
  font-size: 0.75rem;
  font-weight: 700;
}

.problem-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #fff;
}

.problem-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* ── Audiences ── */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.audience-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.audience-card-business {
  border-color: var(--maroon);
  background: linear-gradient(180deg, var(--bg-elevated), var(--maroon-soft));
}

.audience-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.audience-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.audience-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.audience-lead {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.audience-list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.audience-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}

.audience-list li:last-child {
  border-bottom: none;
}

.audience-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.55rem;
  top: 14px;
}

.audience-cta {
  margin-top: 20px;
  align-self: flex-start;
}

/* ── Expansion roadmap ── */

.expansion-section {
  background: linear-gradient(180deg, var(--sand) 0%, var(--bg) 100%);
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.roadmap-step {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.roadmap-step-active {
  border-color: var(--maroon);
  background: linear-gradient(180deg, var(--bg-elevated), var(--maroon-soft));
  box-shadow: var(--shadow-md);
}

.roadmap-step-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--maroon), var(--teal));
}

.roadmap-phase {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--maroon);
}

.roadmap-step h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.roadmap-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.roadmap-note {
  margin: 0;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: var(--teal-soft);
  border: 1px solid #b8e8e3;
  border-left: 4px solid var(--teal);
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
}

html[dir="rtl"] .roadmap-note {
  border-left: 1px solid #b8e8e3;
  border-right: 4px solid var(--teal);
}

html[dir="rtl"] .roadmap-step-active::after {
  left: 28px;
  right: 28px;
}

html[dir="rtl"] .audience-list li {
  padding: 10px 22px 10px 0;
}

html[dir="rtl"] .audience-list li::before {
  left: auto;
  right: 0;
}

/* ── Trust band ── */

.trust-band {
  padding: 56px 0;
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ── Legal / content pages ── */

.page-hero {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: #fff;
  padding: 48px 0 56px;
}

.page-hero-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}

.page-hero .page-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.page {
  padding: 48px 0 88px;
}

.page-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 24px;
}

.page h2 {
  margin: 36px 0 12px;
  font-size: 1.25rem;
  color: var(--text);
}

.page p,
.page li {
  color: var(--text-secondary);
}

.page ul {
  padding-left: 20px;
}

.callout {
  margin: 28px 0;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--teal-soft);
  border: 1px solid #b8e8e3;
  border-left: 4px solid var(--teal);
  color: var(--text);
}

.callout a {
  color: var(--maroon);
  font-weight: 600;
}

/* ── Footer ── */

.site-footer {
  background: var(--bg-dark);
  color: #b8a8b0;
  padding: 56px 0 32px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/pattern.svg") repeat;
  opacity: 0.06;
  color: var(--gold);
  pointer-events: none;
}

.site-footer-inner {
  position: relative;
}

.site-footer a {
  color: #f5eef1;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li + li {
  margin-top: 10px;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-ar {
  color: var(--gold-light);
}

.footer-tagline {
  margin: 14px 0 0;
  max-width: 280px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

/* ── Language toggle & mobile nav ── */

.lang-toggle,
.menu-toggle {
  font-family: var(--font-ar);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--maroon);
  border-radius: 999px;
  padding: 8px 16px;
  min-height: 40px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.lang-toggle:hover,
.menu-toggle:hover {
  background: var(--maroon-soft);
  border-color: var(--maroon);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  color: var(--maroon);
}

.menu-icon {
  display: block;
}

/* ── Coming soon / invest ── */

.coming-soon {
  background: linear-gradient(180deg, var(--bg) 0%, var(--maroon-soft) 100%);
}

.coming-soon-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.coming-soon-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--maroon);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coming-soon-content h2 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
}

.coming-soon-actions {
  margin: 28px 0 24px;
}

.btn-invest {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(138, 21, 56, 0.3);
}

.btn-invest:hover {
  filter: brightness(1.08);
  color: #fff;
}

.btn-outline {
  background: var(--bg-elevated);
  border: 2px solid var(--maroon);
  color: var(--maroon);
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-outline:hover {
  background: var(--maroon-soft);
  text-decoration: none;
  transform: translateY(-1px);
  color: var(--maroon);
}

.contact-card {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-email {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  font-weight: 600;
  word-break: break-all;
  color: var(--maroon);
}

.coming-soon-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-invest::before {
  background: linear-gradient(90deg, var(--gold), var(--maroon));
}

/* ── RTL ── */

html[dir="rtl"] body {
  font-family: var(--font-ar);
}

html[dir="rtl"] .hero-card li {
  padding: 10px 28px 10px 0;
}

html[dir="rtl"] .hero-card li::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .page ul {
  padding-left: 0;
  padding-right: 20px;
}

html[dir="rtl"] .callout {
  border-left: 1px solid #b8e8e3;
  border-right: 4px solid var(--teal);
}

html[dir="rtl"] .card::before {
  left: 28px;
  right: 28px;
}

html[dir="rtl"] .section-header,
html[dir="rtl"] .coming-soon-content,
html[dir="rtl"] .footer-tagline {
  text-align: right;
}

html[dir="rtl"] .trust-item {
  text-align: center;
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .hero-inner,
  .grid-3,
  .footer-grid,
  .trust-grid,
  .coming-soon-inner,
  .problem-grid,
  .solution-grid,
  .audience-grid,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .problem-card:last-child:nth-child(odd) {
    max-width: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline-start: auto;
  }

  .site-header-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 3;
    padding: 12px 0 4px;
    gap: 4px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav a,
  .nav .lang-toggle {
    padding: 12px 8px;
    border-radius: var(--radius-md);
  }

  .nav a:hover,
  .nav .lang-toggle:hover {
    background: var(--maroon-soft);
  }

  .nav .lang-toggle {
    width: 100%;
    margin-top: 4px;
  }

  .hero {
    padding: 72px 0 80px;
  }

  .section {
    padding: 56px 0;
  }

  .coming-soon-cards {
    order: -1;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .cultural-strip-inner {
    flex-direction: column;
    gap: 8px;
  }

  .cultural-strip .dot {
    display: none;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .btn,
  .button-row .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-badge {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  html[dir="rtl"] .footer-bottom {
    text-align: center;
  }
}
