:root {
  --bs-green-deep: #14523A;
  --bs-green-soft: #E7F1EA;
  --bs-gold: #B87F1E;
  --bs-gold-soft: #F5E9CE;
  --bs-ink: #1F2A24;
  --bs-muted: #5C6B63;
  --bs-line: #DCE5DF;
  --bs-bg: #FBF6EC;
  --bs-card: #FFFFFF;
}
/* Dark mode HANYA bila user toggle sendiri - branding cream/hijau/gold
   SolatHub kekal identiti tetap secara default (bukan auto-ikut sistem). */
:root[data-theme="dark"] {
  --bs-green-deep: #4C9A78;
  --bs-green-soft: #16241C;
  --bs-gold: #E8C978;
  --bs-gold-soft: #2C2410;
  --bs-ink: #EDF3EE;
  --bs-muted: #9AAAA1;
  --bs-line: #2A3830;
  --bs-bg: #101712;
  --bs-card: #17211B;
}
html { overflow-x: hidden; }
body {
  background: linear-gradient(180deg, #FFFDF6 0%, var(--bs-bg) 480px);
  color: var(--bs-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
}
:root[data-theme="dark"] body {
  background: linear-gradient(180deg, #16201A 0%, var(--bs-bg) 480px);
}
/* Animation lives on .page-fade (not body) - animating `transform` on body
   would make body a containing block for position:fixed descendants,
   breaking the floating buttons' viewport-relative positioning. */
.page-fade { animation: pageFadeIn .45s ease both; }
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .page-fade { animation: none; }
}
#page-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--bs-gold), var(--bs-green-deep));
  z-index: 2000; opacity: 0;
  transition: width .3s ease, opacity .2s ease;
}
#page-progress.active { opacity: 1; }
a { color: var(--bs-gold); }

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.row > .reveal:nth-child(1), .info-card-grid > .reveal:nth-child(1) { transition-delay: .0s; }
.row > .reveal:nth-child(2), .info-card-grid > .reveal:nth-child(2) { transition-delay: .06s; }
.row > .reveal:nth-child(3), .info-card-grid > .reveal:nth-child(3) { transition-delay: .12s; }
.row > .reveal:nth-child(4), .info-card-grid > .reveal:nth-child(4) { transition-delay: .18s; }
.row > .reveal:nth-child(5), .info-card-grid > .reveal:nth-child(5) { transition-delay: .24s; }
.row > .reveal:nth-child(6), .info-card-grid > .reveal:nth-child(6) { transition-delay: .30s; }
.row > .reveal:nth-child(7), .info-card-grid > .reveal:nth-child(7) { transition-delay: .36s; }
.row > .reveal:nth-child(8), .info-card-grid > .reveal:nth-child(8) { transition-delay: .42s; }
.container-narrow { max-width: 1080px; }
.container-narrow-doc { max-width: 980px; }
@media (min-width: 1300px) {
  .container-narrow { max-width: 1240px; }
  .container-narrow-doc { max-width: 1080px; }
}

/* ---- Nav ---- */
.brand-mark { width: 68px; height: 68px; border-radius: 10px; }
.brand-name { font-size: 20px; font-weight: 700; color: var(--bs-green-deep); }
.brand-name .accent { color: var(--bs-gold); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-tagline { font-size: 10.5px; color: var(--bs-muted); font-weight: 600; }
.nav-links { gap: 22px; }
.nav-link-icon {
  position: relative;
  display: flex; align-items: center; gap: 6px;
  color: var(--bs-ink); font-size: 14px; font-weight: 600; text-decoration: none;
  padding-bottom: 3px;
}
.nav-link-icon svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-link-icon::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--bs-green-deep);
  transition: width .25s ease;
}
.nav-link-icon:hover { color: var(--bs-green-deep); }
.nav-link-icon:hover::after { width: 100%; }
.nav-burger {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--bs-line);
  background: var(--bs-card); color: var(--bs-green-deep);
  display: flex; align-items: center; justify-content: center;
}
.nav-burger svg { width: 18px; height: 18px; }
.nav-burger .icon-close { display: none; }
.nav-burger.open .icon-burger { display: none; }
.nav-burger.open .icon-close { display: block; }
.nav-mobile-menu {
  display: none; border-top: 1px solid var(--bs-line);
  background: var(--bs-bg); padding: 16px 0 22px;
  box-shadow: 0 16px 32px rgba(20,82,58,.12);
}
.nav-mobile-menu.open { display: block; }
.mobile-nav-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--bs-card); border: 1px solid var(--bs-line); border-radius: 14px;
  padding: 12px 14px; text-decoration: none; color: var(--bs-ink);
}
.mobile-nav-icon {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--bs-green-soft); color: var(--bs-green-deep);
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-icon svg { width: 18px; height: 18px; }
.mobile-nav-label { font-weight: 700; font-size: 15px; flex: 1; }
.mobile-nav-chevron { width: 16px; height: 16px; color: var(--bs-muted); flex-shrink: 0; }
.lang-toggle { background: var(--bs-green-soft); border-radius: 999px; padding: 3px; }
.lang-btn {
  border: none; background: none; padding: 6px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; color: var(--bs-muted);
}
.lang-btn.active { background: var(--bs-green-deep); color: #fff; }
.theme-toggle-btn {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--bs-line);
  background: var(--bs-card); color: var(--bs-green-deep);
  display: flex; align-items: center; justify-content: center;
}
.theme-toggle-btn svg { width: 17px; height: 17px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 56px 32px;
  border-radius: 28px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  background-image:
    linear-gradient(90deg, var(--bs-bg) 0%, var(--bs-bg) 40%, rgba(251,246,236,0) 62%),
    url('../assets/hero-bg.png');
}
:root[data-theme="dark"] .hero {
  background-image:
    linear-gradient(90deg, var(--bs-bg) 0%, var(--bs-bg) 40%, rgba(16,23,18,0) 62%),
    url('../assets/hero-bgdark.png');
}
@media (max-width: 991px) {
  .hero { padding: 40px 20px; background-image: none; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bs-card); border: 1px solid var(--bs-line);
  border-radius: 999px; padding: 6px 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  color: var(--bs-green-deep); text-transform: uppercase;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bs-gold); display: inline-block; }
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800; line-height: 1.1;
  color: var(--bs-green-deep); text-wrap: balance;
}
.hero-title .accent { color: var(--bs-gold); }
.hero .tagline { color: var(--bs-muted); font-size: 1.05rem; }
.qr-card {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bs-card); border: 1px solid var(--bs-line); border-radius: 14px;
  padding: 8px 16px 8px 8px;
}
.qr-card img { width: 56px; height: 56px; border-radius: 8px; display: block; }
.qr-card-label { font-size: 12px; font-weight: 600; color: var(--bs-muted); max-width: 120px; line-height: 1.35; }
.trust-row { font-size: 12.5px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bs-card); border: 1px solid var(--bs-line);
  border-radius: 999px; padding: 6px 12px;
  font-size: 12px; font-weight: 600; color: var(--bs-ink);
}
.trust-badge svg { width: 14px; height: 14px; color: var(--bs-green-deep); flex-shrink: 0; }
.btn-solathub {
  background: var(--bs-green-deep); color: #fff; border-radius: 999px;
  padding: .75rem 1.5rem; font-weight: 700; border: none;
}
.btn-solathub:hover { background: var(--bs-green-deep); color: #fff; opacity: .92; }
.btn-outline-solathub {
  background: none; color: var(--bs-green-deep); border-radius: 999px;
  padding: .75rem 1.5rem; font-weight: 700; border: 1.5px solid var(--bs-line);
}
.btn-outline-solathub:hover { color: var(--bs-green-deep); border-color: var(--bs-green-deep); }

/* ---- Phone mockups ---- */
.phone-stage { position: relative; min-height: 460px; }
.phone-mockup {
  position: absolute;
  width: 210px;
  border-radius: 34px;
  border: 7px solid #121815;
  background: #121815;
  box-shadow: 0 24px 48px rgba(20,82,58,.22);
  overflow: hidden;
}
.phone-mockup::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 46%; height: 16px; background: #121815; border-radius: 0 0 10px 10px; z-index: 2;
}
.phone-mockup img { width: 100%; display: block; }
.phone-back { top: 0; left: 8%; z-index: 1; transform: rotate(-4deg); }
.phone-front { top: 42px; right: 4%; z-index: 2; transform: rotate(3deg); }
:root[data-theme="dark"] .phone-mockup {
  border-color: #2E3D34;
  box-shadow: 0 24px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
}
@media (max-width: 991px) {
  .phone-stage { min-height: 380px; margin-top: 20px; }
  .phone-mockup { width: 170px; }
  .phone-front { top: 34px; }
}

/* ---- Feature cards ---- */
.section-label { color: var(--bs-green-deep); font-weight: 700; letter-spacing: .03em; }
.section-ornament { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 2px 0 12px; color: var(--bs-gold); }
.section-ornament span { width: 28px; height: 1px; background: var(--bs-line); }
.section-title { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; color: var(--bs-ink); }
.feature-card {
  background: color-mix(in srgb, var(--bs-card) 95%, transparent);
  border: 1px solid var(--bs-line); border-radius: 16px;
  text-align: center; height: 100%;
}
.feature-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bs-green-soft); color: var(--bs-green-deep);
  display: flex; align-items: center; justify-content: center; margin: 0 auto;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 14px; color: var(--bs-ink); }
.feature-card p { font-size: 12.5px; color: var(--bs-muted); margin: 0; }

/* ---- Quote ---- */
.quote-strip { position: relative; background: var(--bs-green-soft); border-radius: 32px; padding: 40px 60px; }
.quote-strip .arabic { font-family: 'Amiri', serif; font-size: 1.7rem; line-height: 2; color: var(--bs-green-deep); }
.quote-strip .translation { font-size: 13.5px; color: var(--bs-muted); font-style: italic; }
.quote-lantern {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden; box-shadow: 0 4px 14px rgba(20,82,58,.25);
  border: 2px solid var(--bs-card);
}
.quote-lantern img { width: 100%; height: 100%; object-fit: cover; }
.quote-lantern-left { left: -20px; }
.quote-lantern-right { right: -20px; }
@media (max-width: 991px) {
  .quote-lantern-left { left: 10px; }
  .quote-lantern-right { right: 10px; }
}
@media (max-width: 767px) {
  .quote-strip { border-radius: 22px; padding: 32px 20px; }
  .quote-lantern { display: none; }
}

/* ---- Document pages (privacy policy / delete data) ---- */
.page-head { padding: 16px 0 8px; }
.page-head h1.page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px; font-weight: 800; color: var(--bs-green-deep);
}
.page-head .meta { color: var(--bs-muted); font-size: 13.5px; }

/* decorative geometric strip */
.tile-band {
  height: 10px; width: 100%; border-radius: 999px;
  background-image:
    linear-gradient(45deg, var(--bs-gold) 25%, transparent 25%, transparent 75%, var(--bs-gold) 75%),
    linear-gradient(45deg, var(--bs-gold) 25%, transparent 25%, transparent 75%, var(--bs-gold) 75%);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;
  background-color: var(--bs-green-deep);
  opacity: .85;
}

/* table-of-contents + content layout */
.doc-layout { display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: start; }
@media (max-width: 760px) {
  .doc-layout { grid-template-columns: 1fr; }
  .doc-toc { display: none !important; }
}
.doc-toc { position: sticky; top: 20px; }
.doc-toc-label {
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--bs-gold); font-weight: 700; margin: 0 0 10px;
}
.doc-toc ol { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--bs-line); }
.doc-toc li { margin: 0; }
.doc-toc a {
  display: block; font-size: 13px; color: var(--bs-muted); text-decoration: none;
  padding: 6px 0 6px 14px; border-left: 1px solid transparent; margin-left: -1px;
  transition: color .15s ease, border-color .15s ease;
}
.doc-toc a:hover { color: var(--bs-green-deep); border-left-color: var(--bs-gold); }
.doc-content { min-width: 0; }
.doc-content p, .doc-content li { font-size: 14.5px; color: var(--bs-ink); }
.doc-lead {
  font-size: 16px !important; color: var(--bs-muted) !important;
  border-left: 2px solid var(--bs-gold); padding-left: 16px; margin-bottom: 30px !important;
}

.section-icon-row { display: flex; align-items: center; gap: 14px; margin: 28px 0 10px; }
.section-num-badge {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--bs-green-deep); color: var(--bs-gold-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 13px;
  position: relative;
}
.section-num-badge::before {
  content: ''; position: absolute; inset: -4px;
  border: 1px solid var(--bs-gold); border-radius: 50%; opacity: .5;
}
h2.section-h {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; color: var(--bs-green-deep); font-weight: 700; margin: 0;
}
h3.sub-h { font-size: 14.5px; margin: 18px 0 6px; color: var(--bs-ink); font-weight: 700; }
.contact-box {
  background: var(--bs-green-deep); color: rgba(255,255,255,.9);
  border-radius: 12px; padding: 20px 22px; margin-top: 14px;
  position: relative; overflow: hidden;
}
.contact-box::after {
  content: ''; position: absolute; right: -30px; bottom: -30px;
  width: 120px; height: 120px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
}
.contact-box p { color: rgba(255,255,255,.85); position: relative; margin: 0 0 8px; }
.contact-box strong { color: #fff; }
.contact-box a { color: var(--bs-gold-soft); font-weight: 600; }

.info-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin: 10px 0; }
.info-card {
  background: color-mix(in srgb, var(--bs-card) 95%, transparent);
  border: 1px solid var(--bs-line); border-radius: 14px; padding: 16px 16px 14px;
  position: relative; overflow: hidden;
}
.info-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--bs-gold), var(--bs-green-deep));
}
.info-card-title { font-weight: 700; font-size: 13.5px; color: var(--bs-ink); margin-bottom: 4px; }
.info-card-desc { font-size: 12.5px; color: var(--bs-muted); margin: 0; }
.info-card-badge {
  display: inline-block; margin-top: 8px; padding: 2px 9px;
  background: var(--bs-green-soft); color: var(--bs-green-deep);
  border-radius: 999px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em;
}

.steps-card {
  background: color-mix(in srgb, var(--bs-card) 95%, transparent);
  border: 2px solid var(--bs-green-deep);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 14px 0 20px;
}
.step-list { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.step-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 500; }
.step-num {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--bs-green-deep); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}

.site-footer { background: var(--bs-green-deep); margin-top: 32px; }
:root[data-theme="dark"] .site-footer { background: var(--bs-green-soft); }
.footer-ornament { color: var(--bs-gold); opacity: .85; margin-bottom: 8px; }
.footer-ornament svg { width: 16px; height: 16px; }
.site-footer .copyright {
  font-size: 13px; color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.copyright-icon { width: 14px; height: 14px; color: var(--bs-gold); flex-shrink: 0; }
.footer-tagline { margin-top: 4px; font-size: 12px; color: rgba(255,255,255,.5); }
.footer-link { color: rgba(255,255,255,.85); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(255,255,255,.35); }
.footer-link:hover { color: #fff; text-decoration-color: rgba(255,255,255,.7); }
.heart-icon { width: 12px; height: 12px; color: var(--bs-gold); vertical-align: -1px; }

/* ---- Al-Fatihah dedication ---- */
.fatihah-trigger {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  border: none; background: none; padding: 0;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.65);
  cursor: pointer;
}
.fatihah-trigger svg { width: 13px; height: 13px; color: #E0475C; flex-shrink: 0; }
.fatihah-trigger:hover { color: #fff; }
.fatihah-overlay {
  display: none; position: fixed; inset: 0; z-index: 1100;
  background: rgba(15,25,20,.55);
  align-items: center; justify-content: center; padding: 20px;
}
.fatihah-overlay.open { display: flex; }
.fatihah-modal {
  position: relative; background: var(--bs-card); border-radius: 20px;
  padding: 32px 28px 26px; max-width: 400px; width: 100%;
  text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.fatihah-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--bs-line);
  background: var(--bs-bg); color: var(--bs-muted);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.fatihah-close svg { width: 14px; height: 14px; }
.fatihah-icon {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--bs-green-soft); color: var(--bs-green-deep);
  display: flex; align-items: center; justify-content: center;
}
.fatihah-icon .material-symbols-outlined { font-size: 24px; font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
.fatihah-title { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; color: var(--bs-green-deep); font-size: 20px; margin-bottom: 10px; }
.fatihah-body { font-size: 14px; color: var(--bs-ink); margin-bottom: 10px; }
.fatihah-name { font-size: 15px; font-weight: 700; font-style: italic; color: var(--bs-gold); margin-bottom: 4px; }
.fatihah-dua { font-size: 13px; color: var(--bs-muted); margin: 14px 0; }
.fatihah-sign { font-size: 13px; font-weight: 600; color: var(--bs-green-deep); margin: 0; }

/* ---- QR lightbox ---- */
.qr-thumb-btn {
  border: none; background: none; padding: 0; line-height: 0; cursor: zoom-in;
  border-radius: 8px;
}
.qr-thumb-btn img { border-radius: 8px; display: block; }
.qr-overlay {
  display: none; position: fixed; inset: 0; z-index: 1100;
  background: rgba(15,25,20,.55);
  align-items: center; justify-content: center; padding: 20px;
}
.qr-overlay.open { display: flex; }
.qr-lightbox {
  position: relative; background: var(--bs-card); border-radius: 20px;
  padding: 32px 28px 26px; max-width: 320px; width: 100%;
  text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.qr-lightbox-close {
  position: absolute; top: 14px; right: 14px;
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--bs-line);
  background: var(--bs-bg); color: var(--bs-muted);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.qr-lightbox-close svg { width: 14px; height: 14px; }
.qr-lightbox img { display: block; width: 100%; max-width: 240px; height: auto; border-radius: 12px; margin: 0 auto 16px; }
.qr-lightbox-caption { font-size: 13px; color: var(--bs-muted); margin: 0; }

/* ---- Back to top ---- */
.back-to-top-btn {
  position: fixed; bottom: 22px; left: 22px; z-index: 1000;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--bs-line);
  background: var(--bs-card); color: var(--bs-green-deep);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(20,82,58,.18);
  cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.back-to-top-btn.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top-btn svg { width: 20px; height: 20px; }
.back-to-top-btn:hover { color: #fff; background: var(--bs-green-deep); border-color: var(--bs-green-deep); }

/* ---- Floating fatihah button ---- */
.floating-fatihah-btn {
  appearance: none; -webkit-appearance: none;
  position: fixed; right: 30px; bottom: 30px; z-index: 1000;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff; font-size: 24px;
  background: rgba(18,110,73,.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 12px 35px rgba(0,0,0,.25), 0 0 30px rgba(17,120,73,.25);
  text-decoration: none;
  cursor: pointer;
  transition: .35s ease;
}
.floating-fatihah-btn:hover {
  transform: translateY(-6px) scale(1.08);
  background: rgba(18,110,73,.6);
  box-shadow: 0 18px 45px rgba(0,0,0,.35), 0 0 40px rgba(17,120,73,.45);
  color: #fff;
}
.floating-fatihah-btn svg { width: 34px; height: 34px; transition: .35s; }
.floating-fatihah-btn:hover svg { transform: rotate(-10deg); }

[data-lang] { display: none; }
[data-lang].active { display: block; }
span[data-lang] { display: none; }
span[data-lang].active { display: inline; }
