*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #c9a84c;
  --gold-20: rgba(201, 168, 76, 0.2);
  --gold-10: rgba(201, 168, 76, 0.1);
  --black: #0b0b0b;
  --bg2: #141416;
  --gray: #1c1c1c;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.nav-logo span {
  font-family: Georgia, serif;
  font-size: 22px;
  letter-spacing: 6px;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover {
  opacity: 0.85;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Arabic geometric pattern background */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='rgba(201,168,76,0.04)' stroke-width='1'%3E%3Cpolygon points='40,5 75,27.5 75,52.5 40,75 5,52.5 5,27.5'/%3E%3Cpolygon points='40,18 62,31 62,49 40,62 18,49 18,31'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(46px, 7vw, 76px);
  letter-spacing: 16px;
  color: var(--gold);
  font-weight: normal;
  line-height: 1;
  margin-bottom: 32px;
  text-indent: 16px;
}

.hero-divider {
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 32px;
  opacity: 0.7;
}

.hero-sub {
  font-size: clamp(18px, 3vw, 24px);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 48px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  color: var(--gold);
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(201, 168, 76, 0.5);

  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary:hover {
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  opacity: 0.4;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── SCREENSHOTS ── */
.screenshots-section {
  padding: 80px 20px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.screenshots-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  text-align: center;
}

.screenshots-row {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: center;
}

.phone-frame {
  width: 220px;
  height: 476px;
  border-radius: 36px;
  border: 2px solid rgba(201, 168, 76, 0.2);
  box-shadow:
    0 0 40px rgba(201, 168, 76, 0.07),
    0 32px 64px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: #000;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.phone-frame:nth-child(1) {
  transform: rotate(-4deg) translateY(20px);
}
.phone-frame:nth-child(2) {
  transform: rotate(-1.5deg) translateY(6px);
}
.phone-frame:nth-child(3) {
  transform: rotate(1.5deg) translateY(6px);
}
.phone-frame:nth-child(4) {
  transform: rotate(4deg) translateY(20px);
}

.phone-frame:hover {
  transform: rotate(0deg) translateY(-8px) !important;
  box-shadow:
    0 0 60px rgba(201, 168, 76, 0.14),
    0 48px 80px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  z-index: 10;
}

@media (max-width: 900px) {
  .screenshots-row {
    gap: 16px;
  }
  .phone-frame {
    width: 180px;
    height: 390px;
    border-radius: 28px;
  }
  .phone-frame:nth-child(1),
  .phone-frame:nth-child(4) {
    display: none;
  }
  .phone-frame:nth-child(2),
  .phone-frame:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 520px) {
  .phone-frame {
    width: 150px;
    height: 325px;
    border-radius: 24px;
  }
}

/* ── SECTION SHARED ── */
section {
  padding: 100px 20px;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  line-height: 1.7;
}

/* ── FEATURES ── */
.features-section {
  background: var(--bg2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 36px 30px;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.feature-card:hover {
  border-color: var(--gold-20);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--gold);
}

.feature-card h3 {
  font-family: Georgia, serif;
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how-section {
  max-width: 1000px;
  margin: 0 auto;
}
.how-section > .content {
  display: flex;
  gap: 80px;
  align-items: center;
  flex-wrap: wrap;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  min-width: 260px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.step-body h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}
.step-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ── DIVIDER ── */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ── QUOTE SECTION ── */
.quote-section {
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.quote-mark {
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 0.6;
  display: block;
  margin-bottom: 16px;
}

blockquote {
  font-family: Georgia, serif;
  font-size: clamp(22px, 4vw, 36px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.4;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.quote-source {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* ── CTA ── */
.cta-section {
  background: var(--bg2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  padding: 100px 20px;
}

.cta-section h2 {
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.store-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 28px;
  text-decoration: none;
  color: var(--white);
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.store-btn:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.store-btn-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.store-btn-text {
  text-align: left;
}
.store-btn-text small {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.store-btn-text strong {
  font-size: 17px;
  font-weight: 600;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

/* ── CENTER UTILITY ── */
.centered {
  text-align: center;
}
.max-w {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── SCROLL-INTO-VIEW ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Fix anchor scroll behind fixed nav */
section[id] {
  scroll-margin-top: 80px;
}

/* ── HAMBURGER ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
  transform-origin: center;
}
nav.nav-open .nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.nav-open .nav-burger span:nth-child(2) {
  opacity: 0;
}
nav.nav-open .nav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-burger {
    display: flex;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 8px 0 16px;
    order: 3;
  }
  .nav-links a {
    display: block;
    padding: 12px 4px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  nav.nav-open .nav-links {
    display: flex;
  }
  .how-section > .content {
    flex-direction: column;
    gap: 40px;
  }
  section {
    padding: 60px 20px;
  }
  .quote-section {
    padding: 60px 20px;
  }
  .hero h1 {
    letter-spacing: 8px;
    text-indent: 8px;
  }
}

@media (max-width: 380px) {
  .phone-frame {
    width: 130px;
    height: 282px;
    border-radius: 22px;
  }
  .screenshots-row {
    gap: 10px;
  }
}

/* ── FADE-IN ANIMATION ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.8s ease both;
}
.fade-up-1 {
  animation-delay: 0.1s;
}
.fade-up-2 {
  animation-delay: 0.25s;
}
.fade-up-3 {
  animation-delay: 0.4s;
}
.fade-up-4 {
  animation-delay: 0.55s;
}

/* ── CONTACT PAGE ── */
.contact-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
}

.contact-section h1 {
  font-family: Georgia, serif;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: 10px;
  color: var(--gold);
  font-weight: normal;
  margin-bottom: 24px;
  text-indent: 10px;
}

.contact-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 32px;
  opacity: 0.6;
}

.contact-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 14px 32px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 10px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.contact-email:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.contact-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.3px;
}

/* ── LEGAL PAGES (privacy & terms) ── */
.page-hero {
  padding: 140px 20px 60px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 6px;
  color: var(--gold);
  font-weight: normal;
  margin-bottom: 12px;
}

.page-hero .updated {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 20px 100px;
}

.legal-content h2 {
  font-family: Georgia, serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: normal;
  margin: 48px 0 16px;
  letter-spacing: 1px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-content a {
  color: var(--gold);
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}
