/* Soneware marketing site — soneware/apps/site */

:root {
  --bg-deep: #0a0c0f;
  --bg-elevated: #12161c;
  --bg-card: #161b22;
  --border-subtle: rgba(212, 175, 55, 0.12);
  --gold: #d4af37;
  --gold-dim: #9a7b2c;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --text: #e8eaed;
  --text-muted: #8b919a;
  --cream: #f4f1ea;
  --radius: 12px;
  --radius-lg: 20px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  /* Noori Nastaleeq: prefer locally installed Jameel Noori / Noori; web fallback Noto Nastaliq Urdu */
  --font-ur: "Jameel Noori Nastaleeq", "Noori Nastaleeq", "Noto Nastaliq Urdu", "Geeza Pro", serif;
  --font-display: "Fraunces", Georgia, serif;
  --max: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[data-lang="ur"] body {
  font-family: var(--font-ur);
  font-size: 1.05rem;
  line-height: 1.75;
}

html[data-lang="ur"] .enova-wordmark {
  font-family: var(--font-display);
}

html[data-lang="ur"] .section-label,
html[data-lang="ur"] .footer-col h4 {
  text-transform: none;
  letter-spacing: 0.04em;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: 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='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 9999;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Layout ---------- */
.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(10, 12, 15, 0.85);
  backdrop-filter: blur(16px);
}

.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  row-gap: 0.65rem;
  width: 100%;
  max-width: min(100% - 1.25rem, var(--max));
}

@media (min-width: 480px) {
  .site-header .wrap {
    max-width: min(100% - 2.5rem, var(--max));
    gap: 1rem 1.25rem;
  }
}

.header-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
  flex: 1 1 auto;
  max-width: 100%;
}

@media (min-width: 880px) {
  .header-brand {
    flex: 0 1 auto;
  }
}

@media (min-width: 520px) {
  .header-brand {
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
  }
}

.header-enova {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
  color: inherit;
}

.header-enova:hover {
  color: inherit;
}

.header-enova-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.header-enova:hover .header-enova-name {
  color: var(--cream);
}

.header-enova-url {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-dim);
}

.header-enova:hover .header-enova-url {
  color: var(--gold);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream);
  text-decoration: none;
}

.logo:hover {
  color: var(--cream);
}

.logo-img {
  height: clamp(1.75rem, 5vw, 2.25rem);
  width: auto;
  max-width: min(9rem, 42vw);
  object-fit: contain;
}

.footer-brand .logo-img {
  height: 2.35rem;
  max-width: 10rem;
}

.logo .logo-tag {
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
}

.nav-main {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-mobile {
  position: relative;
  margin-inline-end: auto;
}

@media (min-width: 880px) {
  .nav-mobile {
    display: none;
  }
}

.nav-mobile-toggle {
  list-style: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: transparent;
}

.nav-mobile-toggle::-webkit-details-marker {
  display: none;
}

.nav-mobile[open] .nav-mobile-toggle {
  color: var(--gold);
  border-color: rgba(212, 175, 55, 0.35);
}

.nav-mobile-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  inset-inline-start: 0;
  min-width: 200px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  z-index: 110;
}

.nav-mobile-panel a {
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-mobile-panel a:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold);
}

@media (min-width: 880px) {
  .nav-main {
    display: flex;
    flex-shrink: 1;
    min-width: 0;
    gap: clamp(0.65rem, 1.5vw, 2rem);
  }
}

@media (min-width: 880px) and (max-width: 1100px) {
  .nav-main a {
    font-size: 0.82rem;
  }
}

.nav-main a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-main a:hover {
  color: var(--cream);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem 0.55rem;
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 879px) {
  .header-actions {
    flex: 1 1 100%;
    justify-content: flex-end;
    order: 3;
    /* Don’t stretch to full height of the logo column — keeps lang switch vertically centred */
    align-self: center;
  }

  /* Physical right in RTL: main axis starts on the right */
  [dir="rtl"] .header-actions {
    justify-content: flex-start;
  }

  .site-header .header-actions > .btn.btn-primary {
    display: none;
  }

  .nav-mobile {
    order: 2;
    margin-inline-end: 0;
    flex: 0 0 auto;
    align-self: center;
  }

  .header-brand {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 7.5rem);
    align-self: center;
  }
}

/* Phones: hide hamburger — use in-page anchors + footer */
@media (max-width: 767px) {
  .nav-mobile {
    display: none !important;
  }

  .site-header .wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.85rem;
    row-gap: 0.65rem;
  }

  .header-brand {
    max-width: 100%;
    grid-column: 1;
    grid-row: 1;
    order: unset;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    flex: unset;
    width: auto;
    min-width: 0;
    justify-self: end;
    align-self: center;
    order: unset;
  }

  [dir="rtl"] .header-actions {
    justify-self: start;
  }
}

@media (min-width: 880px) {
  .header-actions {
    flex: 0 1 auto;
    gap: 0.5rem 0.75rem;
  }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 2px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.2);
}

.site-header .btn {
  padding: 0.5rem 0.85rem;
  font-size: 0.8rem;
  white-space: nowrap;
}

@media (min-width: 480px) {
  .site-header .btn {
    padding: 0.65rem 1.15rem;
    font-size: 0.9rem;
  }
}

.lang-switch__btn {
  padding: 0.35rem 0.55rem;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text-muted);
  background: transparent;
  transition: color 0.15s ease, background 0.15s ease;
}

.lang-switch__btn:hover {
  color: var(--cream);
}

.lang-switch__btn.is-active {
  color: #0a0c0f;
  background: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8922a 100%);
  color: #0a0c0f;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 4px 24px var(--gold-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 6px 32px var(--gold-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.06);
}

/* Urdu: buttons must use Nastaliq stack ( .btn sets DM Sans otherwise ) */
html[data-lang="ur"] .btn,
html[data-lang="ur"] .lang-switch__btn {
  font-family: var(--font-ur);
  font-weight: 600;
}

html[data-lang="ur"] .btn-primary {
  font-weight: 700;
}

html[data-lang="ur"] .nav-mobile-toggle {
  font-family: var(--font-ur);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(100vh, 1080px);
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: clamp(4rem, 10vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 879px) {
  .hero {
    padding-top: max(6.75rem, calc(var(--header-h) + 3.25rem));
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(212, 175, 55, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 20%, rgba(180, 140, 50, 0.12), transparent),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(50, 65, 95, 0.35), transparent),
    linear-gradient(180deg, #0c0f14 0%, var(--bg-deep) 45%, #080a0d 100%);
}

.hero-mesh {
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  background:
    conic-gradient(from 120deg at 70% 40%, rgba(212, 175, 55, 0.08), transparent 40%, rgba(100, 140, 200, 0.06), transparent 75%),
    radial-gradient(circle at 30% 60%, rgba(212, 175, 55, 0.06), transparent 45%);
  opacity: 0.85;
  animation: hero-mesh-drift 18s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-mesh-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate(-2%, 1%) scale(1.03);
    opacity: 0.95;
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 50%, transparent);
  pointer-events: none;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.hero-orb--1 {
  width: min(480px, 90vw);
  height: min(480px, 90vw);
  background: rgba(212, 175, 55, 0.35);
  top: -12%;
  right: -8%;
  animation: hero-orb-pulse 12s ease-in-out infinite;
}

.hero-orb--2 {
  width: min(360px, 70vw);
  height: min(360px, 70vw);
  background: rgba(80, 120, 200, 0.2);
  bottom: 5%;
  left: -10%;
  animation: hero-orb-pulse 14s ease-in-out infinite 2s;
}

.hero-orb--3 {
  width: min(280px, 50vw);
  height: min(280px, 50vw);
  background: rgba(212, 175, 55, 0.15);
  top: 40%;
  left: 35%;
  filter: blur(100px);
  opacity: 0.3;
}

@keyframes hero-orb-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mesh,
  .hero-orb--1,
  .hero-orb--2 {
    animation: none;
  }

  .hero-badge__dot {
    animation: none;
  }

  .hero-visual-frame {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .hero-visual:hover .hero-visual-frame {
    transform: none;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
  box-sizing: border-box;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.hero-copy-inner {
  max-width: 34rem;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem 0.45rem 0.65rem;
  margin-bottom: 1.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  background: rgba(10, 12, 15, 0.5);
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 8px 32px rgba(212, 175, 55, 0.12);
}

html[data-lang="ur"] .hero-badge {
  text-transform: none;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.hero-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8a6a20);
  box-shadow: 0 0 14px var(--gold-glow);
  flex-shrink: 0;
  animation: hero-dot-glow 2.5s ease-in-out infinite;
}

@keyframes hero-dot-glow {
  0%,
  100% {
    box-shadow: 0 0 10px var(--gold-glow);
  }
  50% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.55);
  }
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.75rem, 6.5vw, 4.15rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--cream);
  max-width: 16ch;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

html[data-lang="ur"] .hero h1 {
  font-family: var(--font-ur);
  font-weight: 600;
  max-width: 22ch;
  letter-spacing: 0;
  line-height: 1.22;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.4);
}

html[data-lang="ur"] section h2,
html[data-lang="ur"] .feature-card h3 {
  font-family: var(--font-ur);
  font-weight: 600;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(115deg, #fff8e7 0%, var(--gold) 42%, var(--gold-dim) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title-line {
  width: min(5rem, 28vw);
  height: 4px;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.15), transparent);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
}

[dir="rtl"] .hero-title-line {
  margin-inline-start: auto;
  transform: scaleX(-1);
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: 38rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  color: #a8b0bc;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-bottom: 0;
}

.btn-hero-primary {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 4px 24px var(--gold-glow),
    0 12px 40px rgba(212, 175, 55, 0.2);
}

.btn-hero-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16) inset,
    0 8px 36px var(--gold-glow),
    0 16px 48px rgba(212, 175, 55, 0.25);
}

.btn-hero-secondary {
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
}

.btn-hero-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
  max-width: none;
  margin-top: 1.75rem;
  padding: 0;
  border: none;
}

@media (min-width: 640px) {
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

@media (min-width: 1200px) {
  .hero-metrics {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .hero-metric {
    padding: 0.85rem 0.55rem;
    gap: 0.55rem;
  }

  .hero-metric__icon {
    width: 36px;
    height: 36px;
  }

  .hero-metric strong {
    font-size: 0.88rem;
  }

  .hero-metric__text > span:last-child {
    font-size: 0.68rem;
    line-height: 1.4;
  }
}

.hero-metric {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background: linear-gradient(145deg, rgba(22, 27, 34, 0.9) 0%, rgba(12, 15, 20, 0.65) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-metric:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero-metric__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-metric__text {
  min-width: 0;
}

.hero-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

html[data-lang="ur"] .hero-metric strong {
  font-family: var(--font-ur);
  font-size: 1.05rem;
}

.hero-metric__text > span:last-child {
  display: block;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
}

/* Hero visual: framed product shot */
.hero-visual {
  margin-top: 2.5rem;
  position: relative;
  perspective: 1400px;
}

.hero-visual-glow {
  position: absolute;
  inset: 8% -8% 12% -8%;
  z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(212, 175, 55, 0.45), transparent 70%);
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-visual-frame {
  position: relative;
  z-index: 1;
  transform: rotateX(4deg) rotateY(-5deg);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  animation: hero-float-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hero-float-in {
  from {
    opacity: 0;
    transform: rotateX(8deg) rotateY(-8deg) translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: rotateX(4deg) rotateY(-5deg) translateY(0) scale(1);
  }
}

.hero-visual:hover .hero-visual-frame {
  transform: rotateX(2deg) rotateY(-3deg) scale(1.02);
}

@media (max-width: 1023px) {
  .hero-visual {
    display: none;
  }

  .hero-metrics {
    margin-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: calc(var(--header-h) + 2.5rem);
  }

  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: clamp(1.75rem, 4vw, 3.5rem);
    row-gap: clamp(1.35rem, 2.5vw, 2.25rem);
    padding-inline: clamp(1.5rem, 5vw, 4rem);
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    padding-inline-end: clamp(0.5rem, 2vw, 1.25rem);
    min-width: 0;
    position: relative;
    z-index: 2;
  }

  .hero-visual {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin-top: 0;
    min-width: 0;
    position: relative;
    z-index: 1;
  }

  .hero-metrics {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: none;
    margin-top: 0;
  }
}

.hero-dashboard {
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #f8f8f9 0%, #e8e8ea 100%);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.25),
    0 0 60px rgba(212, 175, 55, 0.12),
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.06) inset;
  overflow: hidden;
  line-height: 0;
}

.hero-dashboard__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ---------- Sections ---------- */
section {
  padding-block: 5rem;
  position: relative;
}

.section-label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--cream);
}

.section-intro {
  margin: 0 0 3rem;
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Features */
.features {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border-subtle);
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  font-size: 1.25rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Modules */
.modules-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.module-pill {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
}

.module-pill:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
}

/* Split */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split.reverse .split-copy {
    order: 2;
  }

  .split.reverse .split-visual {
    order: 1;
  }
}

.split-visual {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-subtle);
}

.split-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.split-quote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
}

html[data-lang="ur"] .split-quote {
  font-family: var(--font-ur);
  font-size: 1.2rem;
  line-height: 1.55;
}

.split-quote-note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.split-list li {
  position: relative;
  padding-inline-start: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.split-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* Pricing teaser */
.pricing-teaser {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border-subtle);
}

.pricing-teaser h2 {
  max-width: 20ch;
  margin-inline: auto;
}

html[data-lang="ur"] .pricing-teaser h2 {
  max-width: 28ch;
}

.pricing-teaser .section-intro {
  margin-inline: auto;
}

/* CTA band */
.cta-band {
  padding-block: 4rem;
  margin-inline: auto;
  width: min(100% - 2rem, 900px);
  text-align: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(18, 22, 28, 0.9) 50%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid var(--border-subtle);
}

.cta-band h2 {
  margin-bottom: 0.75rem;
}

.cta-band p {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
}

.contact-by-enova {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin-inline: auto;
}

.contact-by-enova strong {
  color: var(--cream);
  font-weight: 600;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    align-items: start;
  }
}

.footer-brand p {
  margin: 0.75rem 0 0;
  max-width: 28ch;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-built-by {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 32ch;
}

.footer-built-by a {
  font-weight: 600;
  color: var(--gold);
}

.footer-built-by a:hover {
  color: var(--cream);
}

.enova-wordmark {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.enova-wordmark:hover {
  text-decoration: none;
}

.enova-word {
  color: var(--cream);
}

.enova-devs {
  color: var(--gold);
}

.footer-enova-tagline {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 22ch;
}

.footer-col-enova {
  padding-top: 0.25rem;
}

.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom a {
  font-weight: 600;
  color: var(--gold);
}

.footer-bottom a:hover {
  color: var(--cream);
}

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
