:root {
  --orange-700: #c2410c;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --orange-100: #ffedd5;
  --ink: #111827;
  --muted: #5f6673;
  --line: #eceff3;
  --paper: #ffffff;
  --soft: #fff8f2;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.1);
  --shadow-soft: 0 16px 42px rgba(249, 115, 22, 0.13);
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 8%, rgba(251, 146, 60, 0.18), transparent 31rem),
    radial-gradient(circle at 88% 20%, rgba(249, 115, 22, 0.12), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #fffaf6 52%, #fff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--orange-600);
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(236, 239, 243, 0.8);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  box-shadow: 0 10px 26px rgba(249, 115, 22, 0.26);
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a[aria-current="page"] {
  color: var(--orange-700);
}

.hero {
  padding: 86px 0 56px;
  text-align: center;
}

.rating-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 18px;
  border: 1px solid rgba(249, 115, 22, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  color: #2b2f36;
  font-weight: 750;
}

.stars {
  color: var(--orange-500);
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
}

h3 {
  font-size: 1.2rem;
  font-weight: 850;
}

.hero-copy {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.store-button {
  display: inline-flex;
  min-width: 184px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 22px;
  border-radius: 999px;
  color: #fff;
  background: #020617;
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(2, 6, 23, 0.2);
}

.store-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.store-text {
  display: grid;
  text-align: left;
  line-height: 1.05;
}

.store-text small {
  font-size: 0.68rem;
  opacity: 0.78;
}

.store-text strong {
  font-size: 1.08rem;
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 470px;
  margin-top: 64px;
  place-items: center;
}

.phone-glow {
  position: absolute;
  inset: 16% 8% 0;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.13), rgba(255, 255, 255, 0.64));
  filter: blur(4px);
}

.phone {
  position: relative;
  width: min(290px, 76vw);
  min-height: 560px;
  padding: 16px;
  border: 9px solid #09090b;
  border-radius: 48px;
  background: linear-gradient(180deg, #ffb25c, #f97316 50%, #fb7a21);
  box-shadow: var(--shadow);
}

.phone::before {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 96px;
  height: 26px;
  border-radius: 999px;
  background: #050505;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  display: grid;
  height: 100%;
  min-height: 510px;
  align-content: start;
  gap: 18px;
  padding-top: 42px;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-card {
  min-height: 112px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 22px rgba(194, 65, 12, 0.12);
  text-align: left;
}

.mini-card strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
}

.mini-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.urdu-mark {
  display: grid;
  width: 118px;
  height: 118px;
  margin: 10px auto 4px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 900;
}

.feature-section,
.download-section {
  padding: 72px 0;
}

.section-head {
  max-width: 690px;
  margin-bottom: 30px;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card,
.policy-card,
.download-card {
  border: 1px solid rgba(236, 239, 243, 0.86);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  min-height: 210px;
  padding: 26px;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  color: #fff;
  font-weight: 900;
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.download-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  overflow: hidden;
}

.download-card p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.06rem;
}

.orange-panel {
  min-height: 300px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 255, 255, 0.36), transparent 9rem),
    linear-gradient(145deg, #ffb25c, var(--orange-500));
  box-shadow: 0 26px 58px rgba(249, 115, 22, 0.22);
}

.legal-hero {
  padding: 72px 0 24px;
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4.9rem);
}

.legal-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.policy-card {
  margin: 34px 0 72px;
  padding: clamp(24px, 5vw, 56px);
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--muted);
}

.meta-pill {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.92rem;
}

.policy-card h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.policy-card p,
.policy-card li {
  color: #3f4652;
}

.policy-card a {
  color: var(--orange-700);
  font-weight: 750;
}

.policy-table {
  width: 100%;
  margin-top: 22px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.policy-table th,
.policy-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  background: var(--soft);
  color: #2f3540;
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  width: min(420px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner p {
  margin: 0 0 14px;
  color: var(--muted);
}

.button-row {
  display: flex;
  gap: 10px;
}

.pill {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.pill.primary {
  color: #fff;
  background: var(--orange-500);
}

.pill.secondary {
  color: var(--ink);
  background: var(--orange-100);
}

@media (max-width: 860px) {
  .nav,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .nav-links,
  .footer-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .hero {
    padding-top: 56px;
  }

  .feature-grid,
  .download-card {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 420px;
    margin-top: 42px;
  }

  .phone {
    min-height: 492px;
  }

  .phone-screen {
    min-height: 442px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .store-button {
    width: 100%;
  }

  .feature-card {
    min-height: 180px;
  }

  .policy-card {
    border-radius: 20px;
  }

  .policy-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
