/* ╔══════════════════════════════════════════════════════════════╗
   ║  DAWAH360 — COSMIC CSS-ONLY DESIGN  ·  NO IMAGES           ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ═══ DESIGN TOKENS ═══ */
:root {
  --bg: #06080f;
  --bg2: #0a0e1a;
  --surface: rgba(255,255,255,.03);
  --surface2: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.07);
  --border2: rgba(255,255,255,.14);
  --txt: #eef2ff;
  --txt2: #94a3b8;
  --txt3: #64748b;
  --emerald: #10b981;
  --emerald-l: #6ee7b7;
  --emerald-d: #065f46;
  --gold: #f5c842;
  --gold-d: #b8941e;
  --teal: #2dd4bf;
  --purple: #a78bfa;
  --ff-d: 'Outfit', system-ui, sans-serif;
  --ff-b: 'Inter', system-ui, sans-serif;
  --ff-ar: 'Amiri', 'Noto Naskh Arabic', serif;
  --ease: cubic-bezier(.16,1,.3,1);
  --r: 1rem; --r-xl: 1.5rem; --r-2xl: 2rem; --r-pill: 9999px;
}

/* ═══ RESET ═══ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;font-size:16px}
body{font-family:var(--ff-b);background:var(--bg);color:var(--txt);line-height:1.6;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul,ol{list-style:none}
button{font-family:inherit;cursor:pointer}
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 2rem}

/* ═══ ANIMATED MESH BACKGROUND ═══ */
.mesh-bg{
  position:fixed;inset:0;z-index:-2;overflow:hidden;
  background:var(--bg);
}
.mesh-orb{
  position:absolute;border-radius:50%;filter:blur(120px);
  animation:orbit 20s ease-in-out infinite;
  will-change:transform;
}
.mesh-orb:nth-child(1){width:600px;height:600px;background:rgba(16,185,129,.12);top:-10%;left:-10%;animation-duration:22s;}
.mesh-orb:nth-child(2){width:500px;height:500px;background:rgba(245,200,66,.08);top:30%;right:-15%;animation-duration:18s;animation-delay:-5s;}
.mesh-orb:nth-child(3){width:700px;height:700px;background:rgba(45,212,191,.06);bottom:-20%;left:30%;animation-duration:25s;animation-delay:-10s;}
.mesh-orb:nth-child(4){width:400px;height:400px;background:rgba(167,139,250,.06);top:60%;left:-5%;animation-duration:20s;animation-delay:-3s;}

@keyframes orbit{
  0%,100%{transform:translate(0,0) scale(1)}
  25%{transform:translate(80px,-60px) scale(1.1)}
  50%{transform:translate(-40px,80px) scale(.9)}
  75%{transform:translate(60px,40px) scale(1.05)}
}

/* Subtle grain overlay */
.mesh-bg::after{
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.015'/%3E%3C/svg%3E");
  opacity:.5;pointer-events:none;
}

/* ═══ ISLAMIC GEOMETRIC PATTERN ═══ */
.geo-pattern{
  position:absolute;inset:0;pointer-events:none;opacity:.03;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M50 0L100 50 50 100 0 50z' fill='none' stroke='%2310b981' stroke-width='.5'/%3E%3Cpath d='M25 25h50v50H25z' fill='none' stroke='%23f5c842' stroke-width='.3' transform='rotate(45 50 50)'/%3E%3Ccircle cx='50' cy='50' r='18' fill='none' stroke='%232dd4bf' stroke-width='.4'/%3E%3Ccircle cx='50' cy='50' r='8' fill='none' stroke='%2310b981' stroke-width='.3'/%3E%3C/svg%3E");
  background-size:100px;
}

/* ═══ GLOW UTILITIES ═══ */
.glow-line{
  height:1px;
  background:linear-gradient(90deg,transparent,var(--emerald),var(--gold),var(--teal),transparent);
  opacity:.3;
}
.glow-dot{
  width:6px;height:6px;border-radius:50%;
  background:var(--emerald);
  box-shadow:0 0 12px var(--emerald),0 0 40px rgba(16,185,129,.3);
}

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal{opacity:0;transform:translateY(60px);transition:opacity .9s var(--ease),transform .9s var(--ease)}
.reveal.vis{opacity:1;transform:none}
.reveal-l{opacity:0;transform:translateX(-80px);transition:opacity .9s var(--ease),transform .9s var(--ease)}
.reveal-l.vis{opacity:1;transform:none}
.reveal-r{opacity:0;transform:translateX(80px);transition:opacity .9s var(--ease),transform .9s var(--ease)}
.reveal-r.vis{opacity:1;transform:none}
.reveal-s{opacity:0;transform:scale(.85);transition:opacity .9s var(--ease),transform .9s var(--ease)}
.reveal-s.vis{opacity:1;transform:none}

/* stagger */
.stagger>:nth-child(1){transition-delay:.05s}
.stagger>:nth-child(2){transition-delay:.15s}
.stagger>:nth-child(3){transition-delay:.25s}

/* ═══ GRADIENT TEXT ═══ */
.grad{
  background:linear-gradient(135deg,var(--emerald-l),var(--gold),var(--teal));
  background-size:200% auto;
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.grad-shimmer{animation:shimmer 5s linear infinite}
@keyframes shimmer{to{background-position:200% center}}

/* ═══ NAVBAR ═══ */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:1rem 0;
  transition:all .4s var(--ease);
}
.nav.stuck{
  background:rgba(6,8,15,.85);
  backdrop-filter:blur(28px) saturate(1.8);
  -webkit-backdrop-filter:blur(28px) saturate(1.8);
  border-bottom:1px solid var(--border);
}
.nav .container{display:flex;align-items:center;justify-content:space-between}

.brand{display:flex;align-items:center;gap:.6rem}
.brand-icon{
  width:40px;height:40px;border-radius:50%;
  background:#fff;
  padding:4px;
  object-fit:contain;
  box-shadow:0 0 20px rgba(255,255,255,.1),0 2px 8px rgba(0,0,0,.2);
}
.footer-logo{
  width:28px;height:28px;border-radius:50%;
  background:#fff;padding:3px;object-fit:contain;
}
.brand-name{
  font-family:var(--ff-d);font-size:1.3rem;font-weight:700;
  color:var(--emerald-l);
}

.menu{display:flex;align-items:center;gap:2.5rem}
.menu a{font-size:.88rem;font-weight:500;color:var(--txt2);position:relative;transition:color .3s}
.menu a:hover{color:var(--txt)}
.menu a::after{
  content:'';position:absolute;bottom:-4px;left:0;width:0;height:2px;
  background:linear-gradient(90deg,var(--emerald),var(--teal));
  border-radius:2px;transition:width .4s var(--ease);
}
.menu a:hover::after{width:100%}

.btn-glow{
  padding:.55rem 1.5rem;font-size:.85rem;font-weight:600;
  color:var(--txt);border:none;
  background:linear-gradient(135deg,var(--emerald-d),var(--emerald));
  border-radius:var(--r-pill);
  box-shadow:0 0 24px rgba(16,185,129,.3),inset 0 1px 0 rgba(255,255,255,.15);
  transition:all .35s var(--ease);
  position:relative;overflow:hidden;
}
.btn-glow::before{
  content:'';position:absolute;top:-50%;left:-50%;width:200%;height:200%;
  background:conic-gradient(from 0deg,transparent 0%,rgba(255,255,255,.1) 10%,transparent 20%);
  animation:spin 3s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}
.btn-glow:hover{transform:translateY(-2px);box-shadow:0 0 40px rgba(16,185,129,.5)}

.hamburger{display:none;background:none;border:none;padding:.5rem}
.hamburger span{display:block;width:22px;height:2px;background:var(--txt);margin:5px 0;border-radius:2px;transition:all .3s var(--ease)}

/* ═══ HERO ═══ */
.hero{
  position:relative;min-height:100vh;
  display:flex;align-items:center;
  overflow:hidden;padding:8rem 0 4rem;
}

/* Animated rings */
.hero-rings{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  pointer-events:none;z-index:0;
}
.hero-ring{
  position:absolute;left:50%;top:50%;
  border-radius:50%;
  border:1px solid rgba(16,185,129,.06);
  animation:ring-pulse 6s ease-in-out infinite;
}
.hero-ring:nth-child(1){width:400px;height:400px;margin:-200px 0 0 -200px;animation-delay:0s}
.hero-ring:nth-child(2){width:600px;height:600px;margin:-300px 0 0 -300px;animation-delay:-1s;border-color:rgba(245,200,66,.04)}
.hero-ring:nth-child(3){width:800px;height:800px;margin:-400px 0 0 -400px;animation-delay:-2s;border-color:rgba(45,212,191,.03)}
.hero-ring:nth-child(4){width:1000px;height:1000px;margin:-500px 0 0 -500px;animation-delay:-3s;border-color:rgba(16,185,129,.02)}
@keyframes ring-pulse{
  0%,100%{transform:scale(1);opacity:.5}
  50%{transform:scale(1.08);opacity:1}
}

/* Floating stars */
.hero-stars{position:absolute;inset:0;pointer-events:none;z-index:0}
.star{
  position:absolute;border-radius:50%;background:#fff;
  animation:twinkle 3s ease-in-out infinite alternate;
}
@keyframes twinkle{
  0%{opacity:.05;transform:scale(.5)}
  100%{opacity:.7;transform:scale(1.2)}
}

.hero .container{position:relative;z-index:2}
.hero-inner{display:flex;flex-direction:column;align-items:center;text-align:center;gap:2rem}

/* Bismillah */
.bismillah{
  font-family:var(--ff-ar);font-size:clamp(1.8rem,4.5vw,3.2rem);
  color:var(--gold);letter-spacing:.02em;
  text-shadow:0 0 60px rgba(245,200,66,.2),0 0 120px rgba(245,200,66,.1);
  animation:glow-pulse 4s ease-in-out infinite alternate;
}
@keyframes glow-pulse{
  0%{text-shadow:0 0 30px rgba(245,200,66,.15),0 0 80px rgba(245,200,66,.05)}
  100%{text-shadow:0 0 60px rgba(245,200,66,.3),0 0 140px rgba(245,200,66,.1)}
}

/* Decorative line */
.bismillah-line{
  display:flex;align-items:center;gap:1rem;margin-top:.5rem;
}
.bismillah-line span{
  height:1px;width:80px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  opacity:.4;
}
.bismillah-line .glow-dot{background:var(--gold);box-shadow:0 0 12px var(--gold)}

.hero-title{
  font-family:var(--ff-d);
  font-size:clamp(3rem,8vw,5.5rem);
  font-weight:800;line-height:1.02;letter-spacing:-.04em;
  margin-top:.5rem;
}

.hero-sub{
  font-size:clamp(1rem,2vw,1.25rem);color:var(--txt2);
  max-width:560px;line-height:1.8;
}

.hero-btns{display:flex;align-items:center;gap:1rem;flex-wrap:wrap;justify-content:center;margin-top:.5rem}

.btn-main{
  display:inline-flex;align-items:center;gap:.7rem;
  padding:1.05rem 2.4rem;font-size:1rem;font-weight:600;
  color:var(--txt);border:none;
  border-radius:var(--r-xl);position:relative;overflow:hidden;
  transition:all .4s var(--ease);
}
.btn-main.fill{
  background:linear-gradient(135deg,var(--emerald-d),var(--emerald));
  box-shadow:0 0 40px rgba(16,185,129,.3),0 8px 32px rgba(0,0,0,.3),inset 0 1px 0 rgba(255,255,255,.12);
}
.btn-main.fill:hover{transform:translateY(-3px) scale(1.02);box-shadow:0 0 60px rgba(16,185,129,.45),0 16px 48px rgba(0,0,0,.3)}

.btn-main.ghost{
  background:var(--surface);border:1px solid var(--border);
  backdrop-filter:blur(12px);
}
.btn-main.ghost:hover{background:var(--surface2);border-color:var(--border2);transform:translateY(-2px)}

.btn-main span,.btn-main svg{position:relative;z-index:1}

/* Hero crescent moon — pure CSS */
.hero-crescent{
  position:relative;width:220px;height:220px;margin:1rem auto 0;
}
.crescent{
  position:absolute;inset:0;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold-d));
  box-shadow:0 0 80px rgba(245,200,66,.15),0 0 160px rgba(245,200,66,.05);
  animation:moon-float 6s ease-in-out infinite;
}
.crescent::after{
  content:'';position:absolute;
  width:180px;height:180px;
  background:var(--bg);
  border-radius:50%;
  top:10px;right:-30px;
  box-shadow:0 0 40px rgba(6,8,15,.8);
}
@keyframes moon-float{
  0%,100%{transform:translateY(0) rotate(-5deg)}
  50%{transform:translateY(-16px) rotate(5deg)}
}
/* stars around crescent */
.crescent-star{
  position:absolute;
  width:4px;height:4px;background:var(--gold);border-radius:50%;
  box-shadow:0 0 8px var(--gold);
  animation:twinkle 2s ease-in-out infinite alternate;
}
.crescent-star:nth-child(2){top:15%;left:10%;animation-delay:.3s}
.crescent-star:nth-child(3){top:8%;left:40%;width:3px;height:3px;animation-delay:.7s}
.crescent-star:nth-child(4){top:25%;right:5%;animation-delay:1s}
.crescent-star:nth-child(5){bottom:20%;left:5%;width:3px;height:3px;animation-delay:.5s}
.crescent-star:nth-child(6){bottom:10%;right:15%;animation-delay:1.3s}

/* Stats */
.hero-stats{
  display:flex;gap:3.5rem;justify-content:center;flex-wrap:wrap;
  padding-top:2.5rem;margin-top:1rem;
  border-top:1px solid var(--border);
}
.stat-item{text-align:center}
.stat-num{
  font-family:var(--ff-d);font-size:2rem;font-weight:700;
}
.stat-lbl{font-size:.75rem;color:var(--txt3);text-transform:uppercase;letter-spacing:.1em;margin-top:2px}

/* ═══ SECTIONS COMMON ═══ */
.section{padding:7rem 0;position:relative}

.eyebrow{
  display:inline-flex;align-items:center;gap:.6rem;
  font-family:var(--ff-d);font-size:.72rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.2em;color:var(--gold);
  margin-bottom:1rem;
}
.eyebrow::before{
  content:'';width:30px;height:2px;
  background:linear-gradient(90deg,var(--gold),transparent);
}

.heading{
  font-family:var(--ff-d);font-size:clamp(2rem,5vw,3.4rem);
  font-weight:700;line-height:1.1;letter-spacing:-.02em;
  margin-bottom:1rem;
}

.desc{font-size:1.05rem;color:var(--txt2);max-width:520px;line-height:1.75}

.section-header{text-align:center;max-width:650px;margin:0 auto 4.5rem}
.section-header .eyebrow{justify-content:center}
.section-header .desc{margin:0 auto}

/* ═══ FEATURE CARDS — 3D GLASS ═══ */
.feat-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
  perspective:1200px;
}
.feat-card{
  position:relative;
  padding:2.5rem 2rem;
  border-radius:var(--r-2xl);
  border:1px solid var(--border);
  background:linear-gradient(135deg,rgba(255,255,255,.03),rgba(255,255,255,.008));
  backdrop-filter:blur(6px);
  transition:all .5s var(--ease);
  transform-style:preserve-3d;
  cursor:default;overflow:hidden;
}
/* animated gradient border on hover */
.feat-card::before{
  content:'';position:absolute;inset:-1px;border-radius:inherit;padding:1px;
  background:conic-gradient(from var(--angle,0deg),transparent 30%,var(--emerald) 50%,var(--gold) 60%,var(--teal) 70%,transparent 90%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;
  opacity:0;transition:opacity .5s;
  animation:border-spin 4s linear infinite;
}
@property --angle{syntax:'<angle>';initial-value:0deg;inherits:false}
@keyframes border-spin{to{--angle:360deg}}

.feat-card:hover{
  transform:translateY(-8px) rotateX(2deg);
  box-shadow:0 24px 64px rgba(0,0,0,.4),0 0 40px rgba(16,185,129,.08);
  border-color:transparent;
}
.feat-card:hover::before{opacity:1}

.feat-card>*{position:relative;z-index:1}

/* icon */
.feat-icon{
  width:64px;height:64px;
  display:flex;align-items:center;justify-content:center;
  border-radius:var(--r);margin-bottom:1.5rem;font-size:1.7rem;
  background:linear-gradient(135deg,rgba(16,185,129,.12),rgba(245,200,66,.06));
  border:1px solid rgba(16,185,129,.1);
  box-shadow:0 0 24px rgba(16,185,129,.08);
  transition:all .4s var(--ease);
}
.feat-card:hover .feat-icon{
  box-shadow:0 0 40px rgba(16,185,129,.2);
  transform:scale(1.1) translateZ(20px);
}

.feat-card h3{
  font-family:var(--ff-d);font-size:1.25rem;font-weight:600;margin-bottom:.5rem;
}
.feat-card p{font-size:.9rem;color:var(--txt2);line-height:1.75}

/* ═══ SHOWCASE SECTIONS ═══ */
.showcase-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;
}
.showcase-grid.flip{direction:rtl}
.showcase-grid.flip>*{direction:ltr}

/* CSS-only phone mockup */
.phone-css{
  width:260px;height:520px;margin:0 auto;
  border-radius:36px;
  border:3px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,rgba(16,185,129,.06) 0%,rgba(6,8,15,.95) 100%);
  position:relative;overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.5),0 0 60px rgba(16,185,129,.08),inset 0 1px 0 rgba(255,255,255,.08);
  transition:transform .6s var(--ease);
}
.phone-css:hover{transform:rotate(-2deg) scale(1.03)}

/* notch */
.phone-css::before{
  content:'';position:absolute;top:10px;left:50%;transform:translateX(-50%);
  width:90px;height:22px;background:var(--bg);border-radius:20px;z-index:10;
}
/* screen content */
.phone-screen{
  position:absolute;inset:0;padding:46px 16px 16px;
  display:flex;flex-direction:column;align-items:center;
  overflow:hidden;
}

/* Prayer phone */
.phone-prayer .phone-header{
  text-align:center;padding:1rem 0;width:100%;
}
.phone-prayer .phone-header h4{font-family:var(--ff-d);font-size:.85rem;color:var(--emerald-l)}
.phone-prayer .phone-header .time{
  font-family:var(--ff-d);font-size:2.2rem;font-weight:800;
  background:linear-gradient(135deg,var(--emerald-l),var(--teal));
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.phone-prayer .phone-header .loc{font-size:.65rem;color:var(--txt3);margin-top:2px}
.prayer-row{
  display:flex;justify-content:space-between;align-items:center;
  width:100%;padding:.6rem .8rem;margin:.2rem 0;
  border-radius:10px;border:1px solid var(--border);
  background:var(--surface);font-size:.75rem;
}
.prayer-row .name{font-weight:600;color:var(--txt)}
.prayer-row .ptime{color:var(--emerald-l);font-weight:500;font-family:var(--ff-d)}
.prayer-row.active{background:rgba(16,185,129,.12);border-color:rgba(16,185,129,.25)}

/* Quran phone */
.phone-quran .quran-header{
  width:100%;text-align:center;
  padding:.6rem;margin-bottom:.5rem;
  background:linear-gradient(135deg,var(--emerald-d),rgba(16,185,129,.3));
  border-radius:10px;
}
.phone-quran .quran-header h4{font-family:var(--ff-ar);font-size:1rem;color:var(--gold)}
.phone-quran .quran-header small{font-size:.6rem;color:var(--emerald-l)}
.quran-ayah{
  font-family:var(--ff-ar);font-size:1.05rem;
  text-align:right;direction:rtl;
  line-height:2.4;color:var(--txt);
  padding:.5rem 0;
  border-bottom:1px solid var(--border);
}
.quran-ayah .num{
  display:inline-flex;align-items:center;justify-content:center;
  width:18px;height:18px;border-radius:50%;font-size:.5rem;
  border:1px solid var(--gold);color:var(--gold);font-family:var(--ff-b);
  margin:0 4px;vertical-align:middle;
}

/* Qibla phone */
.phone-qibla .compass-ring{
  width:180px;height:180px;margin:1.5rem auto;
  border-radius:50%;position:relative;
  border:2px solid rgba(245,200,66,.2);
  background:radial-gradient(circle,rgba(16,185,129,.04),transparent 70%);
  animation:compass-spin 12s linear infinite;
}
@keyframes compass-spin{to{transform:rotate(360deg)}}
.compass-ring::after{
  content:'';position:absolute;left:50%;top:50%;
  width:3px;height:70px;margin-left:-1.5px;margin-top:-55px;
  background:linear-gradient(180deg,var(--gold),transparent);
  transform-origin:bottom center;
  border-radius:2px;
}
.compass-dir{
  position:absolute;font-size:.6rem;font-weight:700;color:var(--txt2);
}
.compass-dir.n{top:8px;left:50%;transform:translateX(-50%);color:var(--gold)}
.compass-dir.s{bottom:8px;left:50%;transform:translateX(-50%)}
.compass-dir.e{right:10px;top:50%;transform:translateY(-50%)}
.compass-dir.w{left:10px;top:50%;transform:translateY(-50%)}
.qibla-label{
  text-align:center;margin-top:.8rem;
  font-family:var(--ff-d);font-size:1.3rem;font-weight:700;
  color:var(--gold);
}
.qibla-sub{text-align:center;font-size:.65rem;color:var(--txt3);margin-top:2px}

/* Showcase text */
.showcase-text .desc{margin-bottom:2rem}
.check-list{display:flex;flex-direction:column;gap:.7rem}
.check-item{
  display:flex;align-items:flex-start;gap:.8rem;
  padding:.85rem 1rem;border-radius:var(--r);
  background:var(--surface);border:1px solid var(--border);
  transition:all .3s;
}
.check-item:hover{background:var(--surface2);border-color:var(--border2);transform:translateX(4px)}
.check-mark{
  width:22px;height:22px;min-width:22px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;font-size:.65rem;color:var(--emerald-l);
  background:rgba(16,185,129,.12);margin-top:2px;
}
.check-item h4{font-size:.9rem;font-weight:600;margin-bottom:2px}
.check-item p{font-size:.8rem;color:var(--txt3);line-height:1.5}

/* ═══ REVIEWS ═══ */
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.review-card{
  padding:2rem;border-radius:var(--r-xl);
  background:linear-gradient(135deg,rgba(255,255,255,.03),rgba(255,255,255,.01));
  border:1px solid var(--border);
  transition:all .4s var(--ease);position:relative;overflow:hidden;
}
.review-card::after{
  content:'"';position:absolute;top:.5rem;right:1.2rem;
  font-family:Georgia,serif;font-size:4rem;
  color:rgba(16,185,129,.06);line-height:1;
}
.review-card:hover{transform:translateY(-6px);border-color:rgba(16,185,129,.2);box-shadow:0 20px 56px rgba(0,0,0,.3)}
.review-stars{color:var(--gold);font-size:.8rem;letter-spacing:2px;margin-bottom:.8rem}
.review-body{font-size:.9rem;color:var(--txt2);line-height:1.75;font-style:italic;margin-bottom:1.5rem}
.review-who{display:flex;align-items:center;gap:.8rem}
.review-av{
  width:40px;height:40px;border-radius:50%;
  background:linear-gradient(135deg,var(--emerald-d),var(--emerald));
  display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:.9rem;
  box-shadow:0 0 16px rgba(16,185,129,.2);
}
.review-name{font-weight:600;font-size:.88rem}
.review-role{font-size:.72rem;color:var(--txt3)}

/* ═══ CTA ═══ */
.cta-section{padding:7rem 0}
.cta-box{
  position:relative;text-align:center;
  padding:5rem 2rem;border-radius:var(--r-2xl);overflow:hidden;
  background:linear-gradient(135deg,rgba(6,95,70,.35),rgba(6,8,15,.85));
  border:1px solid rgba(16,185,129,.15);
}
/* animated border */
.cta-box::before{
  content:'';position:absolute;inset:-2px;border-radius:inherit;
  background:conic-gradient(from var(--angle,0deg),transparent 60%,var(--emerald) 75%,var(--gold) 80%,transparent 95%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;mask-composite:exclude;
  padding:1px;
  animation:border-spin 6s linear infinite;
  opacity:.5;
}
/* radial glow */
.cta-box::after{
  content:'';position:absolute;top:-50%;left:50%;transform:translateX(-50%);
  width:600px;height:400px;
  background:radial-gradient(ellipse,rgba(16,185,129,.12),transparent 70%);
  pointer-events:none;
}
.cta-inner{position:relative;z-index:1}
.cta-bismillah{
  font-family:var(--ff-ar);font-size:2rem;color:var(--gold);
  margin-bottom:1.5rem;opacity:.9;
  text-shadow:0 0 40px rgba(245,200,66,.15);
}
.cta-box .heading{margin-bottom:1rem}
.cta-box .desc{margin:0 auto 2.5rem;text-align:center}

.btn-store{
  display:inline-flex;align-items:center;gap:.8rem;
  padding:.95rem 2.2rem;
  background:#fff;color:#111;border:none;
  border-radius:var(--r);font-family:var(--ff-b);font-weight:600;
  transition:all .4s var(--ease);
  box-shadow:0 8px 32px rgba(0,0,0,.25),0 0 40px rgba(255,255,255,.05);
}
.btn-store:hover{transform:translateY(-3px);box-shadow:0 16px 48px rgba(0,0,0,.3),0 0 60px rgba(255,255,255,.08)}
.btn-store svg{width:24px;height:24px}
.btn-store-text{text-align:left}
.btn-store-text small{font-size:.6rem;font-weight:400;color:#666;text-transform:uppercase;letter-spacing:.04em;display:block}
.btn-store-text strong{font-size:1.05rem;display:block;margin-top:-1px}

/* ═══ FOOTER ═══ */
.footer{padding:2.5rem 0 1.5rem;border-top:1px solid var(--border)}
.footer-row{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem}
.footer-brand{display:flex;align-items:center;gap:.5rem}
.footer-brand span{font-family:var(--ff-d);font-weight:600;color:var(--txt2);font-size:.9rem}
.footer-links{display:flex;gap:1.5rem}
.footer-links a{font-size:.82rem;color:var(--txt3);transition:color .3s}
.footer-links a:hover{color:var(--emerald-l)}
.footer-copy{font-size:.72rem;color:var(--txt3)}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1024px){
  .feat-grid{grid-template-columns:1fr;max-width:480px;margin:0 auto}
  .showcase-grid,.showcase-grid.flip{grid-template-columns:1fr;text-align:center;direction:ltr;gap:3rem}
  .showcase-grid.flip>*{direction:ltr}
  .showcase-text{display:flex;flex-direction:column;align-items:center}
  .showcase-text .desc{text-align:center}
  .check-list{max-width:420px;margin:0 auto}
  .showcase-visual{order:-1}
  .reviews-grid{grid-template-columns:1fr;max-width:480px;margin:0 auto}
}
@media(max-width:768px){
  html{font-size:15px}
  .container{padding:0 1.5rem}
  .menu{
    display:none;position:fixed;inset:0;
    background:rgba(6,8,15,.97);backdrop-filter:blur(24px);
    flex-direction:column;justify-content:center;gap:2rem;z-index:999;
  }
  .menu.open{display:flex}
  .menu a{font-size:1.4rem;font-weight:600}
  .hamburger{display:block;z-index:1001}
  .hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
  .hamburger.active span:nth-child(2){opacity:0}
  .hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
  .hero-crescent{width:160px;height:160px}
  .crescent::after{width:130px;height:130px;right:-25px}
  .phone-css{width:220px;height:440px;border-radius:28px}
  .phone-css::before{width:70px;height:18px}
  .phone-screen{padding:36px 12px 12px}
  .hero-stats{gap:2rem}
  .footer-row{flex-direction:column;text-align:center}
  .footer-links{flex-wrap:wrap;justify-content:center}
}
@media(max-width:480px){
  .hero-btns{flex-direction:column;width:100%}
  .btn-main{width:100%;justify-content:center}
  .hero-stats{flex-direction:column;gap:1rem}
  .hero-crescent{width:130px;height:130px}
  .crescent::after{width:105px;height:105px;right:-20px;top:8px}
  .phone-css{width:200px;height:400px;border-radius:24px}
}
