/* ==========================================================
   TUMANINAH — WEBSITE STYLES
   Mirrors the app's calm, private aesthetic
   ==========================================================
   Palette (from app tailwind.config.js):
     Charcoal  #0B132B  (dark bg, hero, footer)
     Cream-100 #F6F7FB  (page bg)
     Surface   #FFFFFF  (cards)
     Teal      #24C8BE  (accent, links, CTA)
     Sand-50   #FDF8F0  (warm tint sections)
     Sand-100  #FAF0E0  (pro teaser bg)
     Muted     #667085
     Quiet     #98A2B3
   ========================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #F6F7FB;
  color: #0B132B;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; }
ul { list-style: none; }
a { text-decoration: none; }

/* ---- TOKENS ---- */
:root {
  --charcoal:       #0B132B;
  --charcoal-mid:   #0F1A36;
  --bg:             #F6F7FB;
  --surface:        #FFFFFF;
  --teal:           #24C8BE;
  --teal-dark:      #148F88;
  --teal-light:     #E0FCF8;
  --sand-50:        #FDF8F0;
  --sand-100:       #FAF0E0;
  --sand-200:       #F5E1C1;
  --sand-300:       #E8CFA3;
  --cream-200:      #F1F3F6;
  --cream-300:      #E5E9EF;
  --cream-400:      #D4DAE3;
  --text:           #0B132B;
  --muted:          #667085;
  --quiet:          #98A2B3;
  --radius:         16px;
  --radius-sm:      8px;
  --radius-pill:    100px;
}

/* ---- TYPOGRAPHY UTILS ---- */
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.eyebrow--light { color: rgba(36,200,190,0.85); }

h2, .h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 20px;
}
.h2--light { color: #FFFFFF; }

h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

p { color: var(--muted); }

.text-center { text-align: center; }

/* ---- LAYOUT ---- */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

/* ---- ARABIC TYPOGRAPHY ---- */
.verse-ar {
  font-family: 'Amiri', 'Traditional Arabic', 'Scheherazade New', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  color: var(--teal);
  direction: rtl;
  line-height: 1.8;
  margin-bottom: 8px;
}
.verse-ar--sm { font-size: clamp(1.25rem, 2.5vw, 1.625rem); margin-bottom: 6px; }

.verse-en {
  font-size: 0.8125rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.01em;
  margin-bottom: 52px;
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-shrink: 0;
}
.logo-en {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  transition: color 0.25s;
}
.logo-ar {
  font-family: 'Amiri', serif;
  font-size: 1rem;
  color: var(--teal);
  direction: rtl;
  transition: color 0.25s;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu li { list-style: none; }
.nav-menu a {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-menu a:hover { color: #FFFFFF; }

/* Scrolled state */
.nav.is-scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--cream-300);
}
.nav.is-scrolled .logo-en { color: var(--text); }
.nav.is-scrolled .nav-menu a {
  color: var(--muted);
}
.nav.is-scrolled .nav-menu a:hover { color: var(--text); }
.nav.is-scrolled .btn--nav-cta {
  background: var(--teal);
  color: #FFFFFF !important;
}

/* CTA button in nav */
.btn--nav-cta {
  background: rgba(36,200,190,0.18);
  color: var(--teal);
  padding: 8px 18px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s, color 0.2s, transform 0.1s !important;
  border: 1px solid rgba(36,200,190,0.35);
}
.btn--nav-cta:hover {
  background: var(--teal) !important;
  color: white !important;
  transform: translateY(-1px);
}

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.is-scrolled .nav-burger span { background: var(--text); }

/* Burger open state */
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Ambient glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.hero-glow--teal {
  width: 640px; height: 640px;
  top: -180px; right: -160px;
  background: radial-gradient(circle, rgba(36,200,190,0.09) 0%, transparent 70%);
}
.hero-glow--sand {
  width: 480px; height: 480px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(212,165,116,0.07) 0%, transparent 70%);
}

.hero-body {
  max-width: 660px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-name {
  font-size: clamp(3.25rem, 9vw, 6rem);
  font-weight: 300;
  color: #FFFFFF;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-name-ar {
  font-family: 'Amiri', serif;
  font-size: clamp(1.375rem, 3.5vw, 2rem);
  color: rgba(255,255,255,0.28);
  direction: rtl;
  margin-bottom: 36px;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  color: rgba(255,255,255,0.82);
  font-weight: 400;
  letter-spacing: 0.025em;
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.42);
  font-weight: 300;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 48px;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.22);
  animation: nudge 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 22px; height: 22px; }
@keyframes nudge {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}


/* ============================================================
   STORE BUTTONS
   ============================================================ */
.store-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.store-row--centered { justify-content: center; }

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 20px;
  border-radius: var(--radius);
  transition: transform 0.15s ease, opacity 0.15s;
  min-width: 155px;
}
.store-btn:hover { transform: translateY(-2px); opacity: 0.9; }

.store-btn--apple {
  background: #FFFFFF;
  color: var(--text);
}
.store-btn--google {
  background: rgba(255,255,255,0.09);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.18);
}

.store-btn__icon { width: 26px; height: 26px; flex-shrink: 0; }

.store-btn__text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.store-btn__text small {
  font-size: 0.6875rem;
  font-weight: 400;
  opacity: 0.65;
  line-height: 1;
  margin-bottom: 2px;
  font-style: normal;
}
.store-btn__text strong {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
}


/* ============================================================
   DAILY PRACTICE SECTION
   ============================================================ */
.section--light { background: var(--surface); }

.section--light h2 { margin-top: 4px; }

.practice-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 16px;
  align-items: start;
  margin-top: 56px;
}

.practice-card {
  background: var(--bg);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.practice-card__no {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 16px;
}

.practice-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  color: var(--teal-dark);
}
.practice-card__icon svg { width: 20px; height: 20px; }

.practice-card h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.practice-card p  { font-size: 0.875rem; line-height: 1.7; }

.practice-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 40px;
  color: var(--quiet);
  flex-shrink: 0;
}
.practice-connector svg { width: 40px; height: 16px; }


/* ============================================================
   FEATURES SECTION
   ============================================================ */
.section--tinted { background: var(--bg); }

.section--tinted h2 { margin-bottom: 52px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(11,19,43,0.07);
}

.feature__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  color: var(--teal-dark);
  flex-shrink: 0;
}
.feature__icon svg { width: 22px; height: 22px; }

.feature h3 { font-size: 0.9375rem; }
.feature p  { font-size: 0.875rem; line-height: 1.65; }


/* ============================================================
   PRIVACY SECTION
   ============================================================ */
.section--dark { background: var(--charcoal); }

.section--dark h2,
.section--dark h3 { color: #FFFFFF; }
.section--dark p  { color: rgba(255,255,255,0.55); }

.privacy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.privacy__text h2 { margin-bottom: 16px; }
.privacy__text p  { line-height: 1.75; margin-bottom: 28px; }

.check-list { list-style: none; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='white' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-color: var(--teal);
}

.privacy__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
}
.privacy__card-label {
  font-family: 'Amiri', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: var(--teal);
  direction: rtl;
  line-height: 1.8;
  margin-bottom: 14px;
  font-style: normal;
}
.privacy__card-sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
}


/* ============================================================
   PRO TEASER SECTION
   ============================================================ */
.section--sand { background: var(--sand-50); border-top: 1px solid var(--sand-200); }

.pro-teaser {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.pro-teaser h2  { margin-bottom: 14px; }
.pro-teaser__desc {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.pro-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.pro-features span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--teal-dark);
  background: var(--teal-light);
  border: 1px solid rgba(36,200,190,0.25);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}


/* ============================================================
   DOWNLOAD CTA SECTION
   ============================================================ */
.section--dark-alt {
  background: var(--charcoal-mid);
  padding: 96px 0 80px;
}
.section--dark-alt h2 { margin-bottom: 10px; }

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 4px;
}
.footer-logo .logo-en { font-size: 1.0625rem; font-weight: 600; color: #FFFFFF; }
.footer-logo .logo-ar { font-family: 'Amiri', serif; font-size: 1rem; color: var(--teal); }

.footer-brand p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.8); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.18);
}


/* ============================================================
   INTERIOR PAGES (About, Contact)
   ============================================================ */

/* Page hero — light background for interior pages */
.page-hero {
  padding: 120px 0 72px;
  background: var(--surface);
  border-bottom: 1px solid var(--cream-300);
}
.page-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero .lead {
  font-size: 1.0625rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}
.page-hero .eyebrow { margin-bottom: 12px; }

.page-body { padding: 72px 0 104px; }
.page-body .wrap { max-width: 720px; }


/* ---- PROSE (About page) ---- */
.prose h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 400;
  color: var(--text);
  margin-top: 56px;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.prose h2:first-child { margin-top: 0; }

.prose p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.prose ul { margin: 0 0 20px; }
.prose li {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.8;
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
}
.prose li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 600;
}
.prose strong { color: var(--text); font-weight: 500; }

.callout {
  background: var(--sand-50);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 22px 26px;
  margin: 36px 0;
}
.callout-ar {
  font-family: 'Amiri', serif;
  font-size: 1.5rem;
  color: var(--teal);
  direction: rtl;
  display: block;
  margin-bottom: 8px;
  font-style: normal;
  line-height: 1.8;
}
.callout-en {
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
}

.divider {
  border: none;
  border-top: 1px solid var(--cream-300);
  margin: 48px 0;
}


/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.contact-info p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.contact-info a {
  color: var(--teal);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-info a:hover { color: var(--teal-dark); }

.contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--cream-200);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--cream-400);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--surface);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(36,200,190,0.14);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%2398A2B3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 38px;
  cursor: pointer;
}
.form-group ::placeholder { color: var(--quiet); font-weight: 300; }

.btn-submit {
  background: var(--teal);
  color: #FFFFFF;
  border: none;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.12s;
  display: inline-block;
}
.btn-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}
.btn-submit:active { transform: translateY(0); }

.form-success {
  display: none;
  background: var(--teal-light);
  border: 1px solid rgba(36,200,190,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9375rem;
  color: var(--teal-dark);
  margin-top: 16px;
  line-height: 1.6;
}

.field-error {
  display: block;
  font-size: 0.8125rem;
  color: #c0392b;
  margin-top: 5px;
}

.form-group input.is-error,
.form-group select.is-error,
.form-group textarea.is-error {
  border-color: #c0392b;
  outline-color: #c0392b;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 960px) {
  .practice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .practice-connector { display: none; }

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

  .privacy { grid-template-columns: 1fr; gap: 48px; }
  .privacy__card { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobile */
@media (max-width: 640px) {
  .section { padding: 64px 0; }

  .nav-burger { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(14px);
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--cream-300);
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    gap: 0;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu li {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-200);
  }
  .nav-menu li:last-child { border-bottom: none; padding-bottom: 4px; }
  .nav-menu a { color: var(--muted) !important; font-size: 1rem; }
  .nav-menu a:hover { color: var(--text) !important; }
  .btn--nav-cta {
    background: var(--teal) !important;
    color: white !important;
    padding: 10px 20px !important;
  }

  .features-grid { grid-template-columns: 1fr; gap: 14px; }

  .store-row {
    flex-direction: column;
    align-items: center;
  }
  .store-btn {
    width: 100%;
    max-width: 230px;
    justify-content: center;
  }

  .page-hero { padding: 100px 0 56px; }
}
