/* ===================================================
   Hadas Gavriel Counselling — Design System & Styles
   =================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
  /* Colours — airy, warm, modern */
  --sky: #E1F5FE;
  --sky-light: #F0FAFF;
  --sky-dark: #81D4FA;
  --sky-bg: #F5FBFF;
  --lavender: #F3E5F5;
  --lavender-light: #F9F0FA;
  --lavender-dark: #CE93D8;
  --coral: #FFF1F0;
  --coral-accent: #FFAB91;
  --coral-dark: #E57373;
  --cream: #FFFFFF;
  --warm-white: #FFFFFF;
  --text: #455A64;
  --text-secondary: #607D8B;
  --text-light: #90A4AE;
  --border: #E0E7EC;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-hebrew: 'Heebo', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(69, 90, 100, 0.06), 0 1px 2px rgba(69, 90, 100, 0.08);
  --shadow-md: 0 4px 6px rgba(69, 90, 100, 0.06), 0 2px 4px rgba(69, 90, 100, 0.08);
  --shadow-lg: 0 10px 25px rgba(69, 90, 100, 0.08), 0 4px 10px rgba(69, 90, 100, 0.05);
  --shadow-xl: 0 20px 50px rgba(69, 90, 100, 0.10);

  /* Transition */
  --ease-fast: 150ms ease;
  --ease-base: 300ms ease;
  --ease-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --nav-height: 72px;
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Hebrew font */
[dir="rtl"] body,
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] button,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 {
  font-family: var(--font-hebrew);
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p {
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--ease-fast);
}

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

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

/* === LAYOUT === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

section {
  padding: var(--space-3xl) 0;
  position: relative;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--ease-base);
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: 0.01em;
}

[dir="rtl"] .btn {
  font-family: var(--font-hebrew);
}

.btn--primary {
  background: var(--text);
  color: white;
  border-color: var(--text);
}

.btn--primary:hover {
  background: #37474F;
  border-color: #37474F;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn--secondary:hover {
  background: var(--text);
  color: white;
  transform: translateY(-2px);
}

.btn--small {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--ease-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.navbar__logo-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

[dir="rtl"] .navbar__logo-name {
  font-family: var(--font-hebrew);
}

.navbar__logo-title {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: -2px;
}

.navbar__links {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.navbar__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lavender-dark);
  border-radius: 1px;
  transition: width var(--ease-base);
}

[dir="rtl"] .navbar__links a::after {
  left: auto;
  right: 0;
}

.navbar__links a:hover {
  color: var(--text);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--sky-bg);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 2px;
  cursor: pointer;
  border: none;
}

.lang-toggle__btn {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  color: var(--text-secondary);
  border: none;
  cursor: pointer;
  transition: all var(--ease-fast);
  white-space: nowrap;
}

.lang-toggle__btn.active {
  background: var(--text);
  color: white;
  box-shadow: var(--shadow-sm);
}

/* Mobile menu toggle */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--ease-base);
}

.navbar__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__burger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #FFFFFF 0%, var(--sky-light) 35%, var(--lavender-light) 65%, var(--coral) 100%);
}

.hero__decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__decoration::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 245, 254, 0.35) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: float 20s ease-in-out infinite;
}

.hero__decoration::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 229, 245, 0.25) 0%, transparent 70%);
  bottom: -5%;
  left: -5%;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-10px, 15px) scale(0.97);
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: var(--nav-height);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lavender-dark);
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

.hero__eyebrow .leaf {
  font-size: 1.2rem;
}

.hero h1 {
  margin-bottom: var(--space-md);
  color: var(--text);
}

.hero h1 .highlight {
  color: var(--lavender-dark);
  position: relative;
}

.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 560px;
}

.hero__cta-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* === ABOUT === */
.about {
  background: var(--warm-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  clip-path: url(#hexagon-clip);
}

.about__content h2 {
  margin-bottom: var(--space-md);
}

.about__content p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.about__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--sky-bg);
  color: var(--text);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid var(--border);
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Material Symbols Outlined styling */
.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24
}

/* === SPECIALISATIONS === */
.specialisations {
  background: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.section-header p {
  font-size: 1.1rem;
  margin-top: var(--space-sm);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.spec-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  transition: all var(--ease-base);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

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

.spec-card__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--sky-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  padding: 12px;
}

.spec-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.spec-card h3 {
  margin-bottom: var(--space-xs);
}

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

/* Approach Note */
.approach-note {
  margin-top: var(--space-2xl);
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--lavender-light);
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.approach-note p {
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  margin: 0;
}

/* === RESOURCES === */
.resources {
  background: var(--warm-white);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.resource-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--border);
  transition: all var(--ease-base);
  display: flex;
  flex-direction: column;
}

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

.resource-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-md);
}

.resource-card__icon--emergency {
  background: var(--coral);
}

.resource-card__icon--urgent {
  background: var(--lavender-light);
}

.resource-card__icon--info {
  background: var(--sky-bg);
}

.resource-card h3 {
  margin-bottom: var(--space-xs);
}

.resource-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  flex: 1;
}

.resource-card__links {
  list-style: none;
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.resource-card__links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.resource-card__links li a:hover {
  color: var(--coral-dark);
}

/* Crisis Banner */
.crisis-banner {
  background: linear-gradient(135deg, var(--sky-bg), var(--lavender-light));
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.crisis-banner h3 {
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.crisis-banner p {
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

.crisis-numbers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.crisis-number {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 10px 20px;
  background: var(--warm-white);
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.crisis-number__label {
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* === CONTACT === */
.contact {
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact__info h2 {
  margin-bottom: var(--space-md);
}

.contact__info>p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.contact__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact__details li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact__details li .icon {
  width: 40px;
  height: 40px;
  background: var(--sky-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__details li .icon .material-symbols-outlined {
  font-size: 20px;
  color: var(--text);
  font-variation-settings: 'wght' 300;
}

/* Contact Form */
.contact__form-wrap {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #FAFCFF;
  transition: all var(--ease-fast);
  outline: none;
}

[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea {
  font-family: var(--font-hebrew);
  text-align: right;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--lavender-dark);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(206, 147, 216, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-submit {
  width: 100%;
  margin-top: var(--space-xs);
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  background: var(--sky-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto var(--space-md);
}

.form-success h3 {
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.form-success p {
  color: var(--text-secondary);
}

/* === FOOTER === */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: var(--space-lg);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 4px;
}

[dir="rtl"] .footer__brand-name {
  font-family: var(--font-hebrew);
}

.footer__brand-title {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__links {
  list-style: none;
  display: flex;
  gap: var(--space-md);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--ease-fast);
}

.footer__links a:hover {
  color: white;
}

.footer__acknowledgement {
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.footer__pacfa {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.animate-on-scroll.visible .spec-card:nth-child(1),
.animate-on-scroll.visible .resource-card:nth-child(1) {
  transition-delay: 0ms;
}

.animate-on-scroll.visible .spec-card:nth-child(2),
.animate-on-scroll.visible .resource-card:nth-child(2) {
  transition-delay: 100ms;
}

.animate-on-scroll.visible .spec-card:nth-child(3),
.animate-on-scroll.visible .resource-card:nth-child(3) {
  transition-delay: 200ms;
}

.animate-on-scroll.visible .spec-card:nth-child(4) {
  transition-delay: 300ms;
}

.animate-on-scroll.visible .spec-card:nth-child(5) {
  transition-delay: 400ms;
}

.animate-on-scroll.visible .spec-card:nth-child(6) {
  transition-delay: 500ms;
}

/* === MOBILE NAV === */
@media (max-width: 900px) {
  .navbar {
    padding-top: 10px;
    height: calc(var(--nav-height) + 10px);
  }

  .navbar__links {
    position: fixed;
    top: calc(var(--nav-height) + 10px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-sm);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform var(--ease-base), visibility 0s var(--ease-base), opacity var(--ease-base);
    z-index: 999;
  }

  .navbar__links.open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: transform var(--ease-base), visibility 0s 0s, opacity var(--ease-base);
  }

  .navbar__burger {
    display: flex;
  }

  .hero__content {
    padding-top: calc(var(--nav-height) + var(--space-xl) + 16px);
  }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 280px 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--space-2xl) 0;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about__image-wrap {
    max-width: 300px;
    margin: 0 auto;
  }

  .spec-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: flex-end;
  }

  .hero__cta-group .btn {
    min-width: 200px;
    text-align: center;
  }

  .footer__top {
    flex-direction: column;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

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

  .crisis-numbers {
    flex-direction: column;
    align-items: center;
  }

  h1 {
    font-size: 2rem;
  }

  .container {
    padding: 0 var(--space-md);
  }
}

/* === RTL ADJUSTMENTS === */

[dir="rtl"] .contact__details li {
  text-align: right;
}

[dir="rtl"] .contact__details {
  align-items: flex-start;
}

[dir="rtl"] .badge {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  [dir="rtl"] .hero__cta-group .btn {
    min-width: 200px;
    text-align: center;
  }
}