/* ========== Design tokens ========== */
:root {
  --logo-gold: #f5c330;
  --logo-orange: #ea8030;
  --logo-pink: #df297c;
  --logo-pink-soft: #f5a6c6;
  --ink: #2d0e1f;
  --ink-soft: #5a2a42;
  --paper: #ffffff;
  --paper-warm: #fffaf8;
  --paper-pink: #fff2f6;
  --plum-deep: #2d0e1f;
  --line: rgba(223, 41, 124, 0.10);
  --radius: 4px;
  --shadow-soft: 0 18px 40px rgba(223, 41, 124, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-arabic: "Noto Sans Arabic", "Outfit", system-ui, sans-serif;
  --nav-h: 76px;
  --section-y: 5.5rem;
  --container-pad: 1.25rem;
}

/* ========== Base ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink-soft);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

html[dir="rtl"] body,
html[lang="ar"] body {
  font-family: var(--font-arabic);
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] .hero-brand,
html[dir="rtl"] .brand-mark,
html[dir="rtl"] .step-num,
html[dir="rtl"] .plan-price {
  font-family: var(--font-arabic);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--logo-pink);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--logo-orange);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

p {
  margin-bottom: 0;
}

/* ========== Buttons ========== */
.btn {
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  padding: 0.7rem 1.35rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-logo-gradient {
  background: linear-gradient(135deg, var(--logo-gold) 0%, var(--logo-orange) 50%, var(--logo-pink) 100%);
  border: none;
  color: #ffffff;
}

.btn-logo-gradient:hover {
  filter: brightness(1.08);
  color: #ffffff;
}

.btn-outline-logo {
  background: transparent;
  border: 1px solid var(--logo-pink);
  color: var(--logo-pink);
}

.btn-outline-logo:hover {
  background: var(--logo-pink);
  border-color: var(--logo-pink);
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid transparent;
  color: var(--logo-pink);
}

.btn-ghost:hover {
  color: var(--logo-orange);
  background: rgba(223, 41, 124, 0.08);
}

/* ========== Media frames (full images, no crop) ========== */
.media-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(145deg, var(--paper-pink), var(--paper-warm));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.media-frame img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.media-portrait {
  min-height: 420px;
  max-height: 620px;
  padding: 1.25rem;
}

.media-portrait img {
  max-height: 580px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.media-safety {
  min-height: 420px;
  max-height: 640px;
  padding: 1rem;
  background: #fff5f9;
}

.media-safety img {
  max-height: 600px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.media-app {
  min-height: 480px;
  height: 100%;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--line);
  border-radius: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  background: var(--paper-warm);
}

.media-app img,
.media-app .app-preview {
  width: auto;
  max-width: 100%;
  max-height: 560px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

html[dir="rtl"] .media-app {
  border-right: 0;
  border-left: 1px solid var(--line);
}

@media (max-width: 991.98px) {
  .media-portrait,
  .media-safety {
    min-height: 340px;
    max-height: 480px;
  }

  .media-portrait img,
  .media-safety img {
    max-height: 440px;
  }

  .media-app {
    min-height: 360px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .media-app img,
  .media-app .app-preview {
    max-height: 420px;
  }
}

/* ========== Nav ========== */
.navbar-brand {
  padding: 0;
  margin-inline-end: 1.5rem;
  display: flex;
  align-items: center;
}

.site-logo {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-nav {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.site-nav.is-scrolled {
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  background: rgba(255, 255, 255, 0.96);
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink) !important;
  line-height: 1;
}

.site-nav .nav-link {
  font-size: 0.92rem;
  font-weight: 450;
  color: var(--ink-soft) !important;
  padding: 0.4rem 0.7rem !important;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.is-active {
  color: var(--logo-pink) !important;
}

.navbar-toggler {
  border: 1px solid var(--line);
  padding: 0.35rem 0.55rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232d0e1f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Language switcher */
.lang-dropdown {
  margin-inline: 0.35rem;
}

.btn-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.btn-lang:hover,
.btn-lang:focus,
.btn-lang.show {
  color: var(--logo-pink);
  background: var(--paper-pink);
  border-color: rgba(223, 41, 124, 0.25);
  transform: none;
  box-shadow: none;
}

.btn-lang::after {
  margin-inline-start: 0.2rem;
}

.btn-lang i {
  font-size: 1rem;
  color: var(--logo-pink);
}

.lang-menu {
  min-width: 10.5rem;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin-top: 0.4rem !important;
}

.lang-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  border-radius: 3px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  width: 100%;
  text-align: start;
}

.lang-menu .dropdown-item:hover,
.lang-menu .dropdown-item:focus {
  background: var(--paper-pink);
  color: var(--ink);
}

.lang-menu .dropdown-item.is-active {
  background: rgba(223, 41, 124, 0.08);
  color: var(--logo-pink);
  font-weight: 600;
}

.lang-code {
  display: inline-grid;
  place-items: center;
  min-width: 1.85rem;
  height: 1.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, var(--logo-gold), var(--logo-pink));
  border-radius: 3px;
}

@media (max-width: 991.98px) {
  .site-logo {
    height: 52px;
  }

  .site-nav .navbar-collapse {
    background: var(--paper);
    margin-top: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .lang-dropdown {
    margin: 0.5rem 0;
    width: 100%;
  }

  .btn-lang {
    width: 100%;
    justify-content: center;
  }

  .site-nav .btn-ghost,
  .site-nav .btn-logo-gradient {
    width: 100%;
    margin-top: 0.35rem;
  }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff1f6;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: 3.5rem;
  max-width: 40rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--plum-deep);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 500;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

html[dir="rtl"] .hero-title {
  max-width: 22ch;
}

/* ========== Sections ========== */
.section {
  padding: var(--section-y) 0;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--logo-orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  margin-bottom: 0.85rem;
}

.section-text {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

.section-head {
  margin-bottom: 2.75rem;
}

.section-head .section-text {
  max-width: 34rem;
}

/* ========== Why ========== */
.section-why {
  background: var(--paper-warm);
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
}

.value-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.value-list li:last-child {
  border-bottom: 0;
}

.value-list i {
  color: var(--logo-pink);
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* ========== How ========== */
.section-how {
  background: var(--paper);
}

.step {
  height: 100%;
  padding: 0.15rem 0.1rem 0;
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--logo-gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* ========== Features ========== */
.section-features {
  background: var(--paper-pink);
}

.feature-showcase {
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.feature-item {
  padding: 1.5rem 1.4rem;
  border-bottom: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
  transition: background 0.3s ease;
}

.feature-item:nth-child(2n) {
  border-inline-end: 0;
}

.feature-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.feature-item:hover {
  background: rgba(223, 41, 124, 0.04);
}

.feature-item i {
  font-size: 1.3rem;
  color: var(--logo-pink);
  margin-bottom: 0.65rem;
  display: inline-block;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.feature-item p {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

@media (max-width: 575.98px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .feature-item:nth-child(2n) {
    border-inline-end: 0;
  }

  .feature-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .feature-item:last-child {
    border-bottom: 0;
  }
}

/* ========== Plans ========== */
.section-plans {
  background: var(--paper);
  color: var(--ink);
}

.plan-card {
  position: relative;
  height: 100%;
  padding: 1.85rem 1.5rem;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.plan-card:hover,
.plan-card.is-selected {
  transform: translateY(-6px);
  border-color: var(--logo-pink);
  box-shadow: var(--shadow-soft);
}

.plan-featured {
  border-color: var(--logo-pink-soft);
  background: var(--paper-pink);
}

.plan-badge {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--logo-pink);
  padding: 0.28rem 0.55rem;
  border-radius: 2px;
}

.plan-card h3 {
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--logo-gold);
  margin-bottom: 0.3rem;
}

.plan-desc {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  font-size: 0.94rem;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.plan-card li {
  padding: 0.45rem 0;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.plan-card li:last-child {
  border-bottom: 1px solid var(--line);
}

.plan-card .btn {
  width: 100%;
  margin-top: 0.35rem;
  text-align: center;
}

/* ========== Safety ========== */
.section-safety {
  background: var(--paper-pink);
}

.safety-points {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.1rem;
}

.safety-point {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.safety-point i {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--logo-pink);
  background: rgba(223, 41, 124, 0.1);
  font-size: 1.1rem;
}

.safety-point strong {
  display: block;
  font-family: inherit;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.safety-point span {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* ========== Get the App (highlighted) ========== */
.section-download {
  background: var(--paper);
  padding-top: calc(var(--section-y) - 0.5rem);
  padding-bottom: calc(var(--section-y) - 0.5rem);
}

.download-panel {
  position: relative;
  padding: 2.75rem 2rem;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(245, 195, 48, 0.22), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(223, 41, 124, 0.18), transparent 46%),
    linear-gradient(135deg, #2d0e1f 0%, #5a1a3a 48%, #8a2148 100%);
  color: #fff;
  box-shadow: 0 24px 50px rgba(45, 14, 31, 0.22);
}

.download-panel .section-eyebrow {
  color: var(--logo-gold);
}

.download-panel .section-title {
  color: #ffffff;
  max-width: 14ch;
}

.download-panel .section-text {
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
}

.download-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.download-points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.download-points i {
  color: var(--logo-gold);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.store-highlights {
  display: grid;
  gap: 1rem;
}

.store-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid transparent;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  text-decoration: none !important;
  color: var(--ink) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  color: var(--ink) !important;
}

.store-card-play:hover {
  border-color: #34a853;
}

.store-card-apple:hover {
  border-color: #0a84ff;
}

.store-card-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.store-card-apple .store-card-icon {
  background: #0a84ff;
}

.store-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.store-card-copy small {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.2;
}

.store-card-copy strong {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}

html[dir="rtl"] .store-card-copy strong,
html[lang="ar"] .store-card-copy strong {
  font-family: var(--font-arabic);
}

.store-card-arrow {
  font-size: 1.15rem;
  color: var(--logo-pink);
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .download-panel {
    padding: 2rem 1.25rem;
  }

  .store-card {
    padding: 1rem;
  }

  .store-card-icon {
    width: 50px;
    height: 50px;
  }

  .store-card-copy strong {
    font-size: 1.15rem;
  }
}

/* ========== CTA ========== */
.section-cta {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
  background: #fffaf8;
  color: var(--ink);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content .hero-brand {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  margin-bottom: 0.65rem;
  color: var(--plum-deep);
}

.cta-content .section-title {
  max-width: 18ch;
  margin-inline: auto;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.cta-content .section-text {
  margin-bottom: 1.75rem;
  color: var(--ink-soft);
}

.cta-legal {
  margin-top: 1.35rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.cta-legal a {
  color: var(--logo-pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--paper);
  padding: 3.5rem 0 1.35rem;
}

.footer-brand {
  display: inline-block;
  color: var(--ink) !important;
  margin-bottom: 0.75rem;
}

.site-footer p {
  max-width: 30ch;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.site-footer h4 {
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--logo-pink);
  margin-bottom: 0.9rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--ink-soft);
}

.site-footer a:hover {
  color: var(--logo-pink);
}

.store-placeholders {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
}

.img-store-wrap {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #000 !important;
  transition: opacity 0.2s ease;
}

.img-store-wrap:hover {
  opacity: 0.8;
}

.store-icon {
  width: 34px;
  height: auto;
  display: block;
  object-fit: contain;
}

.img-store-wrap::after {
  content: "GET IT ON Google Play";
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  color: #000;
}

.store-placeholders .img-store-wrap:last-child::after {
  content: "Download on the App Store";
}

html[dir="rtl"] .img-store-wrap::after {
  content: "احصل عليه من Google Play";
}

html[dir="rtl"] .store-placeholders .img-store-wrap:last-child::after {
  content: "حمّله من App Store";
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
  max-width: none;
}

/* ========== Reveal motion ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ========== Toast ========== */
.toast-wrap {
  position: fixed;
  bottom: 1.35rem;
  inset-inline-end: 1.35rem;
  z-index: 1080;
  background: var(--ink);
  color: #ffffff;
  padding: 0.85rem 1.1rem;
  border-inline-start: 3px solid var(--logo-gold);
  font-size: 0.93rem;
  box-shadow: var(--shadow-soft);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: min(340px, calc(100vw - 2rem));
}

.toast-wrap.show {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RTL spacing polish ========== */
html[dir="rtl"] .navbar-nav {
  padding-right: 0;
}

html[dir="rtl"] .dropdown-menu-end {
  --bs-position: end;
}

@media (max-width: 767.98px) {
  :root {
    --section-y: 4rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: calc(var(--nav-h) + 1.75rem);
    padding-bottom: 2.75rem;
  }

  .section-cta {
    padding: 4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn:hover,
  .plan-card:hover { transform: none; }
}
