/* ============ LANDING PAGE STYLES ============ */
/* Uses same color vars from style.css */
/* Watermark & preview-phone protection moved to style.css (shared) */

/* ---- FLOATING EMOJI OVERLAY ---- */
.floating-emojis {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-emoji {
  position: absolute;
  bottom: -40px;
  animation: emojiFloatUp 10s linear infinite;
  opacity: 0;
}

@keyframes emojiFloatUp {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  8%   { opacity: 0.12; }
  85%  { opacity: 0.12; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

@media (max-width: 768px) {
  .floating-emoji {
    animation-name: emojiFloatUpMobile;
  }
  @keyframes emojiFloatUpMobile {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
    8%   { opacity: 0.07; }
    85%  { opacity: 0.07; }
    100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
  }
}

.screen-shield {
  display: none;
  position: fixed; inset: 0; z-index: 999999;
  background: #fff;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px 30px;
  animation: shieldIn 0.2s ease;
}
@keyframes shieldIn { 0% { opacity: 0; } 100% { opacity: 1; } }
.screen-shield .shield-emoji { font-size: 64px; margin-bottom: 20px; }
.screen-shield .shield-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px;
}
.screen-shield .shield-arabic {
  font-family: 'Amiri', serif; font-size: 20px;
  color: #c8a44e; direction: rtl; margin-bottom: 6px;
}
.screen-shield .shield-hadith {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-style: italic; color: #666;
  margin-bottom: 20px; line-height: 1.6;
}
.screen-shield .shield-text {
  font-family: 'Nunito', sans-serif;
  font-size: 13px; color: #999; line-height: 1.7; max-width: 300px;
}
.screen-shield .shield-cta {
  margin-top: 24px; padding: 10px 28px;
  border-radius: 100px; border: 1.5px solid #c8a44e;
  background: transparent; color: #c8a44e;
  font-family: 'Nunito', sans-serif; font-size: 12px; font-weight: 700;
  cursor: pointer; text-decoration: none; letter-spacing: 0.05em;
}

/* ---- NAVBAR ---- */
.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11,22,40,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,164,78,0.06);
  transition: background 0.3s;
}

.landing-nav .nav-logo {
  font-family: 'Amiri', serif;
  font-size: 26px;
  color: var(--gold);
  text-decoration: none;
  text-shadow: 0 0 20px var(--gold-glow);
}

.landing-nav .nav-logo-sub {
  font-size: 10px;
  color: var(--text3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-left: 10px;
  display: none;
}

.landing-nav .nav-cta {
  padding: 10px 24px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1200;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.landing-nav .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200,164,78,0.3);
}

@media (min-width: 500px) {
  .landing-nav .nav-logo-sub { display: inline; }
}

/* ---- HERO ---- */
.landing-hero {
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 24px 30px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,164,78,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(200,164,78,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    text-align: left;
    gap: 48px;
  }
}

.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--gold-dim);
  border: 1px solid rgba(200,164,78,0.15);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
}

.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle { margin-left: 0; margin-right: 0; margin-bottom: 24px; }
}

.hero-delivery-note {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.6;
  margin: 12px auto 0;
  text-align: center;
  max-width: 440px;
}

@media (min-width: 768px) {
  .hero-delivery-note { text-align: left; margin-left: 0; }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-ctas {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
}

.hero-cta-primary {
  padding: 13px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1200;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,164,78,0.3);
}

.hero-cta-secondary {
  padding: 13px 24px;
  border-radius: 12px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text2);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-cta-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Hero phone inline (mobile only) */
.hero-phone-inline {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.hero-phone-inline .hero-phone {
  width: 150px;
}

/* Hero phone mockup (desktop side-by-side) */
.hero-phone-wrap {
  flex-shrink: 0;
  width: 240px;
  display: none;
}

@media (min-width: 768px) {
  .hero-phone-inline { display: none; }
  .hero-phone-wrap { display: block; }
}

.hero-phone {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 24px;
  background: linear-gradient(170deg, #0f1e37, #0b1628, #0f1e37);
  border: 2px solid rgba(200,164,78,0.12);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.5),
    0 0 40px rgba(200,164,78,0.06);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  text-align: center;
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-phone .hp-arabic {
  font-family: 'Amiri', serif;
  font-size: 28px;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(200,164,78,0.3);
  direction: rtl;
  margin-bottom: 6px;
  animation: glowPulse 3s ease-in-out infinite;
}

.hero-phone .hp-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--text2);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.hero-phone .hp-envelope {
  font-size: 52px;
  animation: envelopeBeat 1.2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(200,164,78,0.3));
}

.hero-phone .hp-hint {
  font-size: 9px;
  color: var(--text3);
  margin-top: 12px;
}

@media (min-width: 768px) {
  .hero-phone-wrap {
    width: 240px;
  }
  .hero-phone {
    max-height: 70vh;
    border-radius: 28px;
    padding: 30px 20px;
  }
  .hero-phone .hp-arabic { font-size: 42px; margin-bottom: 8px; }
  .hero-phone .hp-sub { font-size: 16px; margin-bottom: 20px; }
  .hero-phone .hp-envelope { font-size: 80px; }
  .hero-phone .hp-hint { font-size: 11px; margin-top: 16px; }
}

/* Floating decorations */
.hero-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
  font-size: 24px;
  animation: decoFloat 8s ease-in-out infinite;
}

.hero-deco:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; font-size: 20px; }
.hero-deco:nth-child(2) { top: 25%; right: 12%; animation-delay: 1.5s; font-size: 28px; }
.hero-deco:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 3s; font-size: 18px; }
.hero-deco:nth-child(4) { bottom: 30%; right: 8%; animation-delay: 4.5s; font-size: 22px; }
.hero-deco:nth-child(5) { top: 40%; left: 3%; animation-delay: 2s; font-size: 16px; }

@keyframes decoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
  50% { transform: translateY(-20px) rotate(10deg); opacity: 0.25; }
}

/* ---- SOCIAL PROOF ---- */
.landing-proof {
  padding: 30px 24px;
  text-align: center;
  border-top: 1px solid rgba(200,164,78,0.06);
  border-bottom: 1px solid rgba(200,164,78,0.06);
}

.proof-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text3);
}

.proof-item .pi-icon {
  font-size: 18px;
}

.proof-item strong {
  color: var(--gold);
  font-weight: 700;
}

/* ---- SOCIAL PROOF BUBBLE ---- */
.social-proof-bubble {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 100px;
  background: var(--card, #1e2a3a);
  border: 1px solid var(--border, rgba(200,164,78,0.15));
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  color: var(--text, #fff);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  max-width: calc(100vw - 48px);
}

.social-proof-bubble.visible {
  opacity: 1;
  transform: translateY(0);
}

.spb-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.spb-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 600px) {
  .social-proof-bubble {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
    justify-content: center;
  }
}

/* ---- EMOTIONAL HOOK ---- */
.landing-hook {
  padding: 80px 24px 60px;
  position: relative;
}

.hook-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.hook-pain {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--gold);
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.hook-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.hook-tagline {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text2);
  font-style: italic;
  opacity: 0.7;
}

/* ---- World Map Illustration ---- */
.hook-map-wrap {
  max-width: 900px;
  margin: 48px auto 0;
  position: relative;
  overflow: visible;
}

.hook-map-svg {
  width: 100%;
  height: auto;
  display: block;
  min-height: 250px;
}

@media (max-width: 600px) {
  .hook-map-wrap {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }
}

/* Continent dots */
.hook-dots circle {
  fill: var(--gold);
  opacity: 0.38;
}

/* Arrow glow (background layer) */
.hook-arrow-glow {
  stroke: var(--gold);
  opacity: 0.12;
}

/* Arrow dashed path */
.hook-arrow-path {
  stroke: var(--gold);
  stroke-dasharray: 12 8;
  animation: hookArrowFlow 1.8s linear infinite;
}

@keyframes hookArrowFlow {
  from { stroke-dashoffset: 40; }
  to { stroke-dashoffset: 0; }
}

/* Arrow head */
.hook-arrow-head {
  fill: var(--gold);
}

/* Origin dot */
.hook-origin-dot {
  fill: var(--gold);
  opacity: 0.9;
}

.hook-origin-pulse {
  fill: var(--gold);
  opacity: 0.25;
  animation: hookPulse 2.5s ease-out infinite;
}

/* Destination pulse */
.hook-dest-pulse {
  fill: var(--gold);
  opacity: 0.12;
  animation: hookPulse 2.5s ease-out infinite 0.8s;
}

/* Staggered arrow animations */
.hook-arrow-delay1 { animation-delay: 0.5s; }
.hook-arrow-delay2 { animation-delay: 1s; }
.hook-arrow-delay3 { animation-delay: 1.5s; }
.hook-arrow-delay4 { animation-delay: 2s; }

@keyframes hookPulse {
  0% { transform: scale(1); opacity: 0.25; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Destination envelope icon */
.hook-dest-icon {
  animation: hookEnvelopeBounce 2s ease-in-out infinite;
}

@keyframes hookEnvelopeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .landing-hook {
    padding: 60px 16px 20px;
  }
  .hook-map-wrap {
    margin-top: 24px;
    margin-bottom: -20px;
  }
}

/* ---- HOW IT WORKS ---- */
.landing-section {
  padding: 80px 24px;
  position: relative;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text2);
  text-align: center;
  max-width: 500px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  padding: 30px 24px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.step-card:hover {
  border-color: rgba(200,164,78,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.step-number {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card-icon {
  font-size: 40px;
  margin-bottom: 14px;
}

.step-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step-card-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
}

/* ---- FEATURES ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.mobile-only {
  display: block;
}
@media (min-width: 768px) {
  .mobile-only { display: none; }
}

.feature-card {
  padding: 24px 20px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgba(200,164,78,0.2);
  background: var(--card2);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 12px;
  color: var(--text3);
  line-height: 1.5;
}

/* ---- THEMES SHOWCASE ---- */
.themes-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.theme-pill {
  padding: 12px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s;
  cursor: pointer;
}

.theme-pill:hover {
  border-color: rgba(200,164,78,0.3);
  transform: translateY(-2px);
}

.theme-pill.active {
  border-color: var(--gold);
  background: var(--gold-dim);
  box-shadow: 0 0 20px var(--gold-glow);
}

.theme-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
}

/* ---- PRICING ---- */
.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 36px 30px;
  border-radius: 24px;
  background: var(--card);
  border: 1.5px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.pricing-amount {
  font-family: 'Nunito', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Shimmer sweep on pricing (same effect as card preview) */
.pricing-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, #fff 50%, var(--gold-light) 60%, var(--gold) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pricingShimmer 3s ease-in-out infinite;
  text-shadow: none;
}

@keyframes pricingShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.pricing-label {
  font-size: 14px;
  color: var(--text2);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid rgba(200,164,78,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li .pf-check {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.pricing-options {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.pricing-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text2);
}

.pricing-option-price {
  color: var(--gold);
  font-weight: 700;
}

.pricing-option-tag {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gold);
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 16px;
  margin-top: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1200;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,164,78,0.3);
}

/* ---- FORM SECTION ---- */
.landing-form-section {
  padding: 80px 0 40px;
  position: relative;
}

.landing-form-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}

.form-section-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
}

/* ---- REFERRAL / PARRAINAGE ---- */
.referral-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid rgba(200,164,78,0.15);
  background: rgba(200,164,78,0.03);
}

.referral-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.referral-step {
  text-align: center;
}

.referral-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1200;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.referral-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text1);
  margin: 0 0 6px;
}

.referral-step p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
  margin: 0;
}

.referral-step p strong {
  color: var(--gold);
}

.referral-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 14px;
  background: rgba(200,164,78,0.06);
  border: 1px solid rgba(200,164,78,0.12);
}

.referral-percent {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
}

.referral-highlight p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  margin: 0;
}

.referral-highlight p strong {
  color: var(--gold);
}

@media (max-width: 600px) {
  .referral-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .referral-highlight {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ---- FAQ ---- */
.faq-list {
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--gold); }

.faq-arrow {
  font-size: 12px;
  color: var(--text3);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 800px;
  padding-bottom: 18px;
}

/* ---- FOOTER ---- */
.landing-footer {
  border-top: 1px solid rgba(200,164,78,0.08);
  margin-top: 20px;
  /* Break out of .app max-width constraint on /create */
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 24px 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1.2fr 2fr;
    gap: 48px;
  }
}

/* Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  font-family: 'Amiri', serif;
  font-size: 28px;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
}

.footer-tagline {
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  margin-top: 8px;
  max-width: 260px;
}

/* Columns */
.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 400px) {
  .footer-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.3s;
  line-height: 1.4;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-company {
  font-size: 11px;
  color: var(--text3);
  line-height: 1.6;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(200,164,78,0.06);
  padding: 18px 24px;
  text-align: center;
}

.footer-copy {
  font-size: 11px;
  color: var(--text3);
}

/* ---- DIVIDER ---- */
.landing-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,164,78,0.15), transparent);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Overrides: scale down form inside landing ---- */

/* Preview phone must fit viewport */
.landing-form-section .preview-phone {
  max-width: 280px;
  max-height: 65vh;
  border-radius: 26px;
}

.landing-form-section .prev-scene {
  padding: 20px 16px;
}

.landing-form-section .pv-arabic,
.landing-form-section .pv-doua-arabic {
  font-size: 26px;
}

.landing-form-section .pv-doua-fr {
  font-size: 14px;
}

.landing-form-section .pv-doua-hands {
  font-size: 60px;
  margin-top: 16px;
}

.landing-form-section .pv-amount {
  font-size: 48px;
}

.landing-form-section .pv-hand {
  font-size: 56px;
}

.landing-form-section .pv-card {
  padding: 20px 14px;
}

.landing-form-section .pv2-envelope {
  font-size: 72px;
}

/* Compact form on desktop */
.landing-form-section .app {
  max-width: 440px;
}

.landing-form-section .header {
  padding: 24px 0 12px;
}

.landing-form-section .logo {
  font-size: 26px;
}

.landing-form-section .step-title {
  font-size: 22px;
}

.landing-form-section .step-desc {
  font-size: 13px;
  margin-bottom: 18px;
}

.landing-form-section .choice {
  padding: 12px 10px;
}

.landing-form-section .choice-icon {
  font-size: 22px;
  margin-bottom: 4px;
}

.landing-form-section .choice-label {
  font-size: 12px;
}

.landing-form-section .music-card {
  padding: 10px 12px;
  margin-bottom: 8px;
}

.landing-form-section .music-name {
  font-size: 13px;
}

.landing-form-section .doua-card {
  padding: 14px;
  margin-bottom: 8px;
}

.landing-form-section .doua-arabic {
  font-size: 18px;
}

.landing-form-section .btn-row {
  margin-top: 20px;
  padding-bottom: 20px;
}

.landing-form-section .btn {
  padding: 12px 16px;
  font-size: 14px;
}

.landing-form-section .field input,
.landing-form-section .field textarea,
.landing-form-section .field select {
  padding: 11px 14px;
  font-size: 14px;
}

/* Compact landing sections on larger screens */
@media (min-width: 768px) {
  .landing-section {
    padding: 60px 24px;
  }

  .section-title {
    font-size: clamp(24px, 3.5vw, 34px);
  }

  .section-subtitle {
    margin-bottom: 36px;
  }

  .landing-form-section {
    padding: 60px 0 30px;
  }

  .form-section-header {
    margin-bottom: 24px;
  }
}

/* ---- HONESTY / PREMIÈRE ÉDITION ---- */
.honesty-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
}

.honesty-icon {
  font-size: 40px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.honesty-text {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin: 0 0 14px;
}

.honesty-cta {
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
  margin: 20px 0 0;
  line-height: 1.6;
}

/* ============ ARABIC / RTL ============ */
html[lang="ar"] .hero-content {
  text-align: right;
}
@media (min-width: 768px) {
  html[lang="ar"] .hero-content {
    flex-direction: row-reverse;
    text-align: right;
  }
}
html[lang="ar"] .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  html[lang="ar"] .hero-subtitle { margin-right: 0; margin-left: auto; }
  html[lang="ar"] .hero-delivery-note { text-align: right; margin-right: 0; margin-left: auto; }
}
html[lang="ar"] .hero-ctas {
  align-items: center;
}
@media (min-width: 768px) {
  html[lang="ar"] .hero-ctas { align-items: flex-end; }
}
html[lang="ar"] .hero-title {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
html[lang="ar"] .nav-logo {
  font-family: 'Amiri', serif !important;
}
html[lang="ar"] .footer-logo {
  font-family: 'Amiri', serif !important;
}
