/* =========================================
   TAYYIBAT WEBSITE – MASTER STYLESHEET
   ========================================= */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Cairo', system-ui, sans-serif;
  background: #f8faf5;
  color: #1a2e1a;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Design Tokens ── */
:root {
  --green-50:  #f0fdf0;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --cream:     #f8faf5;
  --cream-dark: #f0f4ec;
  --text-main: #1a2e1a;
  --text-mid:  #3d5a3d;
  --text-soft: #6b7c6b;
  --white:     #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(22,163,74,.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --nav-h:     72px;
}

/* ── Container ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ─────────────── NAVBAR ─────────────── */
.nav {
  position: fixed; top: 0; right: 0; left: 0; z-index: 999;
  height: var(--nav-h);
  background: rgba(248,250,245,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(22,163,74,.08);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.25rem; font-weight: 800; color: var(--green-800);
}
.nav-icon { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-weight: 600; font-size: .95rem;
}
.nav-links a { color: var(--text-mid); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--green-700); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px;
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: .95rem;
  cursor: pointer; border: none; transition: all .25s; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(22,163,74,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  box-shadow: 0 6px 24px rgba(22,163,74,.45);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--green-600);
  color: var(--green-700);
  background: transparent;
}
.btn-outline:hover { background: var(--green-600); color: var(--white); }
.btn-ghost {
  color: var(--text-mid); background: transparent; padding: 10px 16px;
}
.btn-ghost:hover { color: var(--green-700); }
.btn-white {
  background: var(--white); color: var(--green-800);
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-sm { padding: 8px 18px; font-size: .88rem; }

/* ── Hamburger ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--green-800); border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: rgba(248,250,245,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(22,163,74,.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 24px; font-weight: 600; color: var(--text-mid);
  border-bottom: 1px solid rgba(22,163,74,.07);
  transition: background .2s, color .2s;
}
.mobile-menu a:hover { background: var(--green-50); color: var(--green-700); }

/* ─────────────── HERO ─────────────── */
.hero {
  min-height: 100vh; padding-top: var(--nav-h);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #f0fdf0 0%, #f8faf5 50%, #e8f5e8 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35;
  animation: floatBlob 8s ease-in-out infinite;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #4ade80, #22c55e);
  top: -100px; left: -100px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #86efac, #4ade80);
  top: 50%; right: -80px;
  animation-delay: -3s;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #bbf7d0, #86efac);
  bottom: 0; left: 30%;
  animation-delay: -5s;
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-30px) scale(1.08); }
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 80px 24px 60px;
  position: relative; z-index: 2;
}
.hero-text { max-width: 540px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(22,163,74,.12); color: var(--green-700);
  padding: 6px 16px; border-radius: 50px;
  font-size: .85rem; font-weight: 700; margin-bottom: 20px;
  border: 1px solid rgba(22,163,74,.2);
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900; line-height: 1.2;
  color: var(--text-main); margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-mid); line-height: 1.8;
  margin-bottom: 36px; font-weight: 400;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Hero trust badges & stars ── */
.hero-badges {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid rgba(22,163,74,.15);
  padding: 6px 14px; border-radius: 50px;
  font-size: .82rem; font-weight: 600; color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}
.hero-stars {
  display: flex; align-items: center; gap: 10px; margin-top: 20px;
}
.stars-row { font-size: 1.1rem; }
.hero-stars span { font-size: .85rem; color: var(--text-soft); font-weight: 500; }

/* ── Hero Visual (image) ── */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-showcase-img {
  width: 100%; max-width: 460px;
  border-radius: var(--radius-xl);
  filter: drop-shadow(0 30px 60px rgba(22,163,74,.2));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ─────────────── SCREENSHOTS SECTION ─────────────── */
.screenshots-section { background: var(--cream-dark); }

.screenshots-track-wrapper {
  overflow-x: auto; overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -24px 40px;
  padding: 0 24px 16px;
  cursor: grab;
}
.screenshots-track-wrapper::-webkit-scrollbar { display: none; }
.screenshots-track-wrapper.grabbing { cursor: grabbing; }

.screenshots-track {
  display: flex; gap: 20px;
  width: max-content;
}

.screenshot-slide {
  flex: 0 0 auto; width: 240px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(22,163,74,.08);
  transition: transform .3s, box-shadow .3s;
}
.screenshot-slide:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.screenshot-slide img {
  width: 100%; display: block;
  object-fit: cover;
  min-height: 200px;
  background: var(--green-50);
}
.slide-label {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
}
.slide-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; flex-shrink: 0;
}
.slide-label div strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text-main); }
.slide-label div p { font-size: .76rem; color: var(--text-soft); margin: 0; }

.showcase-wide {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); margin-bottom: 24px;
  border: 1px solid rgba(22,163,74,.1);
}
.showcase-wide img { width: 100%; display: block; }

.screenshots-note {
  text-align: center; color: var(--text-soft); font-size: .88rem;
  padding: 16px; background: var(--white); border-radius: var(--radius-md);
  border: 1px dashed rgba(22,163,74,.25);
}
.upload-note {
  display: block; margin-top: 4px; font-size: .78rem; color: var(--text-soft);
  opacity: .7;
}
.upload-note code {
  background: var(--green-50); color: var(--green-700);
  padding: 1px 6px; border-radius: 4px; font-size: .76rem;
}

/* CTA extras */
.cta-icon-row { font-size: 2.5rem; margin-bottom: 12px; }
.cta-stars { font-size: 1.3rem; margin: 16px 0; }

/* ── Hero Wave ── */
.hero-wave { position: relative; margin-top: 40px; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ─────────────── STATS BAND ─────────────── */
.stats-band {
  background: var(--cream-dark); padding: 32px 0;
  border-top: 1px solid rgba(22,163,74,.08);
  border-bottom: 1px solid rgba(22,163,74,.08);
}
.stats-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 16px 48px;
}
.stat-num {
  font-size: 2rem; font-weight: 900; color: var(--green-700);
  line-height: 1;
}
.stat-label { font-size: .88rem; color: var(--text-soft); font-weight: 500; }
.stat-divider {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, rgba(22,163,74,.25), transparent);
}

/* ─────────────── FEATURES ─────────────── */
.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--text-main); margin: 14px 0 16px;
}
.section-header p {
  font-size: 1.05rem; color: var(--text-soft); max-width: 540px;
  margin: 0 auto; line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 24px; position: relative; overflow: hidden;
  border: 1px solid rgba(22,163,74,.08);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-large {
  grid-column: 1 / 3; grid-row: 1;
  background: linear-gradient(135deg, var(--green-50), var(--white));
  border-color: rgba(22,163,74,.15);
}
.feature-large h3 { font-size: 1.3rem; }
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.feature-card p { color: var(--text-soft); font-size: .92rem; line-height: 1.7; }
.feature-tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--green-600); color: var(--white);
  font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px;
}
.feature-cta-card { display: flex; flex-direction: column; gap: 12px; justify-content: space-between; }

/* ─────────────── HOW IT WORKS ─────────────── */
.how { background: var(--cream-dark); }
.steps-list {
  display: flex; flex-direction: column; align-items: flex-start;
  max-width: 600px; margin: 0 auto; gap: 0;
}
.step-item { display: flex; align-items: flex-start; gap: 20px; }
.step-num {
  min-width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(22,163,74,.35);
}
.step-content { padding-top: 10px; }
.step-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--text-main); }
.step-content p { color: var(--text-soft); line-height: 1.8; font-size: .95rem; }
.step-connector {
  width: 2px; height: 48px; margin-right: 25px;
  background: linear-gradient(180deg, var(--green-300,#86efac), transparent);
}

/* ─────────────── CTA BANNER ─────────────── */
.cta-card {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-xl); padding: 64px 48px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-blob {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.06); top: -80px; right: -80px;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900; color: var(--white); margin-bottom: 14px;
}
.cta-content p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 32px; }

/* ─────────────── FOOTER ─────────────── */
.footer { background: var(--text-main); color: var(--white); padding: 60px 0 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px; flex-wrap: wrap; padding-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-icon { width: 48px; height: 48px; border-radius: 12px; }
.footer-name { font-size: 1.2rem; font-weight: 800; color: var(--white); }
.footer-tagline { color: rgba(255,255,255,.5); font-size: .88rem; }
.footer-links-group { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-weight: 700; color: rgba(255,255,255,.5); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.footer-col a { color: rgba(255,255,255,.75); font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--green-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px; text-align: center;
  color: rgba(255,255,255,.4); font-size: .85rem;
}

/* ─────────────── LEGAL PAGES ─────────────── */
.legal-page { background: var(--cream); }

.legal-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: linear-gradient(160deg, #f0fdf0 0%, #f8faf5 100%);
  text-align: center;
  border-bottom: 1px solid rgba(22,163,74,.1);
}
.legal-hero-terms {
  background: linear-gradient(160deg, #f0f4ff 0%, #f8faf5 100%);
}
.legal-hero-icon { font-size: 3rem; margin-bottom: 16px; }
.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--text-main); margin-bottom: 12px;
}
.legal-hero p {
  font-size: 1.05rem; color: var(--text-soft); max-width: 500px; margin: 0 auto 20px;
}
.legal-meta {
  display: flex; gap: 12px; justify-content: center; align-items: center;
  color: var(--text-soft); font-size: .9rem; flex-wrap: wrap;
}
.legal-meta a { color: var(--green-700); font-weight: 600; }

.legal-container {
  display: grid; grid-template-columns: 240px 1fr; gap: 48px;
  align-items: start;
}

/* Table of Contents */
.legal-toc {
  background: var(--white); border-radius: var(--radius-md);
  padding: 24px; position: sticky; top: calc(var(--nav-h) + 20px);
  border: 1px solid rgba(22,163,74,.1); box-shadow: var(--shadow-sm);
}
.legal-toc h3 {
  font-size: .88rem; font-weight: 700; color: var(--text-soft);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px;
}
.legal-toc ul { display: flex; flex-direction: column; gap: 4px; }
.legal-toc li a {
  display: block; padding: 7px 10px; border-radius: var(--radius-sm);
  color: var(--text-mid); font-size: .88rem; font-weight: 500;
  transition: all .2s;
}
.legal-toc li a:hover { background: var(--green-50); color: var(--green-700); }

/* Legal Sections */
.legal-body { display: flex; flex-direction: column; gap: 28px; }
.legal-section {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid rgba(22,163,74,.08);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.legal-section-icon {
  font-size: 1.5rem; margin-bottom: 12px;
}
.legal-section h2 {
  font-size: 1.2rem; font-weight: 800; color: var(--text-main);
  margin-bottom: 14px;
}
.legal-section p {
  color: var(--text-mid); line-height: 1.9; font-size: .97rem; margin-bottom: 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-list { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.legal-list li {
  color: var(--text-mid); font-size: .97rem; line-height: 1.7;
  padding-right: 16px; position: relative;
}
.legal-list li::before {
  content: '▸'; color: var(--green-600); position: absolute; right: 0; top: 0;
}

/* Highlight boxes */
.legal-highlight {
  background: var(--green-50); border: 1px solid var(--green-200);
  border-radius: var(--radius-md); padding: 18px 20px; margin-top: 14px;
}
.legal-highlight ul { gap: 8px; }
.legal-highlight li { font-size: .92rem; }
.legal-highlight li::before { display: none; }
.legal-highlight p { margin-bottom: 8px; font-size: .92rem; }
.legal-highlight-info {
  background: #eff6ff; border-color: #bfdbfe;
}
.legal-warning {
  background: #fffbeb; border: 1px solid #fcd34d;
  border-radius: var(--radius-md); padding: 18px 20px; margin-bottom: 16px;
  color: #92400e; font-size: .95rem; line-height: 1.7;
}

/* Rights Grid */
.rights-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px;
}
.right-item {
  background: var(--cream); border-radius: var(--radius-md);
  padding: 16px; border: 1px solid rgba(22,163,74,.08);
}
.right-icon { font-size: 1.4rem; display: block; margin-bottom: 6px; }
.right-item strong { display: block; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.right-item p { font-size: .85rem; margin: 0; }

/* Contact Card */
.contact-card { margin-top: 12px; }
.contact-link {
  display: flex; align-items: center; gap: 16px;
  background: var(--green-50); border: 1px solid var(--green-200);
  border-radius: var(--radius-md); padding: 18px 20px;
  transition: all .2s;
}
.contact-link:hover { background: var(--green-100); transform: translateX(-4px); }
.contact-icon { font-size: 1.6rem; }
.contact-link div { display: flex; flex-direction: column; gap: 2px; }
.contact-link strong { font-weight: 700; color: var(--text-main); font-size: .95rem; }
.contact-link span { color: var(--green-700); font-size: .88rem; }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 60px 24px 40px; }
  .hero-text { max-width: 100%; }
  .hero-cta { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-frame { width: 200px; height: 400px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: 1; grid-row: auto; }
  .legal-container { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .rights-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; gap: 16px; }
  .stat-divider { width: 80px; height: 1px; }
  .footer-inner { flex-direction: column; }
  .footer-links-group { gap: 32px; }
  .cta-card { padding: 48px 24px; }
}

@media (max-width: 600px) {
  .hero-inner { padding: 40px 16px 30px; }
  h1 { font-size: 2rem; }
  .section { padding: 64px 0; }
  .stat-item { padding: 12px 24px; }
  .section-header h2 { font-size: 1.7rem; }
}

/* ─────────────── ANIMATIONS ─────────────── */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ─────────────── APP DOWNLOAD MODAL ─────────────── */
.app-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.app-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.app-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 26, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.app-modal-content {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(22, 163, 74, 0.15);
  box-shadow: 0 20px 50px rgba(22, 163, 74, 0.12);
  width: 90%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}
.app-modal.open .app-modal-content {
  transform: scale(1) translateY(0);
}
.app-modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(22, 163, 74, 0.08);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-mid);
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s;
}
.app-modal-close:hover {
  background: rgba(22, 163, 74, 0.15);
  color: var(--green-800);
}
.app-modal-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.app-modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.25);
}
.app-modal-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}
.app-modal-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}
.btn-modal-download {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 1rem;
}
