﻿/* Distribution Life — monday.com-inspired SaaS design */

:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f6f7fb;
  --color-bg-muted: #eef0f6;
  --color-surface: #ffffff;
  --color-navy: #1a1a1a;
  --color-navy-dark: #0d0d0d;
  --color-accent: #c4161c;
  --color-accent-hover: #a31217;
  --color-accent-soft: #fde8e9;
  --color-muted: #676879;
  --shadow-soft: 0 4px 24px -4px rgba(15, 23, 42, 0.08);
  --shadow-lift: 0 24px 60px -20px rgba(15, 23, 42, 0.18);
  --shadow-product: 0 40px 80px -24px rgba(15, 23, 42, 0.22);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-reveal-y: 52px;
  --motion-duration: 1.05s;
  --motion-stagger: 130ms;
  --motion-hover-lift: -5px;
  --motion-img-zoom: 1.105;
  --section-gap: clamp(4.5rem, 9vw, 7rem);
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  /* Homepage-style blended canvas (coral / sand / indigo) */
  --surface-hero:
    radial-gradient(ellipse 80% 60% at 15% 0%, rgba(196, 22, 28, 0.1), transparent 55%),
    radial-gradient(ellipse 70% 50% at 88% 8%, rgba(255, 183, 77, 0.15), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(99, 102, 241, 0.08), transparent 55%),
    #fff;
  --surface-page:
    radial-gradient(ellipse 75% 45% at 10% -8%, rgba(196, 22, 28, 0.09), transparent 55%),
    radial-gradient(ellipse 65% 40% at 95% 5%, rgba(255, 183, 77, 0.13), transparent 50%),
    radial-gradient(ellipse 50% 35% at 70% 45%, rgba(99, 102, 241, 0.06), transparent 60%),
    radial-gradient(ellipse 55% 30% at 15% 85%, rgba(196, 22, 28, 0.045), transparent 55%),
    linear-gradient(180deg, #fff 0%, #fdf8f6 32%, #f6f7fb 68%, #f8f9fc 100%);
  --surface-section:
    radial-gradient(ellipse 55% 45% at 92% 12%, rgba(196, 22, 28, 0.045), transparent 58%),
    radial-gradient(ellipse 50% 40% at 8% 88%, rgba(255, 183, 77, 0.07), transparent 55%),
    #fff;
  --surface-soft:
    radial-gradient(ellipse 60% 50% at 6% 10%, rgba(196, 22, 28, 0.07), transparent 55%),
    radial-gradient(ellipse 55% 45% at 96% 75%, rgba(99, 102, 241, 0.07), transparent 55%),
    radial-gradient(ellipse 45% 35% at 55% 40%, rgba(255, 183, 77, 0.06), transparent 60%),
    var(--color-bg-soft);
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background: var(--color-bg);
  overflow-x: hidden;
  color: #323338;
}

/* Inner-page canvas — same blended texture language as the homepage hero */
body > main.flex-1 {
  background: var(--surface-page);
}

body.is-loading {
  overflow: hidden;
}

/* ─── Page loader ─── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: #fff;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__logo {
  width: 3rem;
  height: 3rem;
  animation: loader-pulse 1.2s ease-in-out infinite;
}

.page-loader__bar {
  width: 8rem;
  height: 3px;
  background: #eef0f6;
  border-radius: 999px;
  overflow: hidden;
}

.page-loader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--color-accent), #ff6b6b);
  border-radius: inherit;
  animation: loader-slide 1s var(--ease-out-expo) infinite;
}

@keyframes loader-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}

@keyframes loader-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ─── Header ─── */
/* Default (no promo bar): flush to the viewport edges */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border: none;
  padding: 0;
  transition: padding 0.35s var(--ease-out-expo);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 7.5rem;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 90% at 70% 0%, rgba(196, 22, 28, 0.12), transparent 62%),
    radial-gradient(ellipse 50% 80% at 18% 0%, rgba(255, 107, 107, 0.08), transparent 55%);
}

.site-header > nav,
.site-header__shell {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 1.25rem !important;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: none;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  transition:
    background 0.35s var(--ease-out-expo),
    box-shadow 0.35s var(--ease-out-expo),
    border-color 0.35s ease,
    border-radius 0.35s var(--ease-out-expo),
    max-width 0.35s var(--ease-out-expo),
    transform 0.35s var(--ease-out-expo);
}

@media (min-width: 768px) {
  .site-header__shell {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-inline: clamp(1.25rem, 4vw, 2rem) !important;
  }

  .site-header__brand {
    justify-self: start;
  }

  .site-header__links {
    justify-self: center;
  }

  .site-header__actions {
    justify-self: end;
  }
}

.site-header.is-scrolled > nav,
.site-header.is-scrolled .site-header__shell {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(215, 219, 228, 0.95);
  box-shadow:
    0 10px 28px -18px rgba(15, 23, 42, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

/* With promo bar: floating pill nav below the announcement */
body:has(.azadi-announce:not(.is-hiding)) .site-header {
  padding: 0.85rem 1rem 0;
}

body:has(.azadi-announce:not(.is-hiding)) .site-header.is-scrolled {
  padding-top: 0.55rem;
}

body:has(.azadi-announce:not(.is-hiding)) .site-header > nav,
body:has(.azadi-announce:not(.is-hiding)) .site-header__shell {
  max-width: 72rem;
  width: auto;
  margin: 0 auto;
  padding: 0.55rem 0.65rem 0.55rem 0.95rem !important;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 9999px;
  box-shadow:
    0 10px 36px -16px rgba(15, 23, 42, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

body:has(.azadi-announce:not(.is-hiding)) .site-header.is-scrolled > nav,
body:has(.azadi-announce:not(.is-hiding)) .site-header.is-scrolled .site-header__shell {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(215, 219, 228, 0.95);
  box-shadow:
    0 14px 40px -18px rgba(15, 23, 42, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  text-decoration: none;
}

.site-header__brand img {
  height: 2rem;
  width: 2rem;
  border-radius: 0.55rem;
  transition: transform 0.3s var(--ease-out-expo);
}

.site-header__brand:hover img {
  transform: scale(1.06);
}

.site-header__brand-name {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-accent);
}

.site-header__links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

@media (min-width: 768px) {
  .site-header__links {
    display: flex;
  }
}

.site-header__links .nav-link,
.site-header > nav .nav-link {
  position: relative;
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.site-header__links .nav-link:hover,
.site-header > nav .nav-link:hover {
  color: var(--color-navy);
  background: rgba(246, 247, 251, 0.95);
}

.site-header__links .nav-link:focus-visible,
.site-header > nav .nav-link:focus-visible {
  outline: 2px solid rgba(196, 22, 28, 0.4);
  outline-offset: 2px;
}

.nav-link::after {
  display: none;
}

.site-header__actions {
  display: none;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .site-header__actions {
    display: flex;
  }
}

.site-header__lang {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border-radius: 9999px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.7);
}

.site-header__lang .lang-btn {
  border-radius: 9999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.site-header__lang .lang-btn:hover,
.site-header__lang .lang-btn[aria-pressed='true'] {
  color: var(--color-navy);
  background: #fff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

.site-header__lang .lang-btn:focus-visible {
  outline: 2px solid rgba(196, 22, 28, 0.4);
  outline-offset: 2px;
}

/* Secondary navbar action — below primary CTA */
.site-header__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: 0.65rem;
  border: 1px solid transparent;
  background: transparent;
  color: #374151;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.site-header__login:hover {
  color: var(--color-navy);
  background: rgba(246, 247, 251, 0.98);
  border-color: rgba(226, 232, 240, 0.95);
}

.site-header__login:active {
  background: #eef1f6;
  border-color: rgba(215, 219, 228, 0.95);
}

.site-header__login:focus-visible {
  outline: 2px solid rgba(196, 22, 28, 0.4);
  outline-offset: 2px;
}

.site-header__login--mobile {
  width: 100%;
  justify-content: flex-start;
  min-height: 2.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.05rem !important;
  border-radius: 9999px;
  border: 1px solid rgba(196, 22, 28, 0.22);
  background: #fff;
  color: var(--color-navy) !important;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.site-header__cta:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff !important;
  box-shadow: 0 6px 16px -8px rgba(196, 22, 28, 0.42);
  transform: translateY(-1px);
}

.site-header__cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px -4px rgba(196, 22, 28, 0.32);
}

.site-header__cta:focus-visible {
  outline: 2px solid rgba(196, 22, 28, 0.45);
  outline-offset: 2px;
}

.site-header__cta-icon {
  display: inline-grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  color: inherit;
  flex-shrink: 0;
}

.site-header__cta-icon svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

.site-header__menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.8);
  color: #4b5563;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-header__menu-btn:hover {
  background: #fff;
  color: var(--color-navy);
}

@media (min-width: 768px) {
  .site-header__menu-btn {
    display: none;
  }
}

.site-header #mobile-menu,
.site-header__mobile {
  max-width: 72rem;
  margin: 0.55rem auto 0;
  padding: 0.75rem !important;
  border: 1px solid rgba(226, 232, 240, 0.95) !important;
  border-radius: 1.35rem !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px -20px rgba(15, 23, 42, 0.2);
}

.site-header #mobile-menu a,
.site-header__mobile a {
  border-radius: 0.85rem;
}

.btn-primary {
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s ease, background 0.2s ease;
}

.btn-primary:hover {
  box-shadow: 0 8px 24px -6px rgba(196, 22, 28, 0.45);
}

/* ─── Typography ─── */
.section-label {
  letter-spacing: 0.12em;
}

.saas-display {
  font-size: clamp(2.15rem, 5.2vw, 3.65rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  text-wrap: balance;
}

.saas-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-navy);
}

.saas-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--color-muted);
}

/* ─── Hero (monday-style light) ─── */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  background: var(--surface-hero);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-mesh__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
}

.hero-mesh__blob--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: rgba(196, 22, 28, 0.15);
  animation: mesh-float-1 22s ease-in-out infinite;
}

.hero-mesh__blob--2 {
  width: 360px;
  height: 360px;
  top: 40%;
  left: -100px;
  background: rgba(255, 200, 120, 0.2);
  animation: mesh-float-2 26s ease-in-out infinite;
}

.hero-mesh__blob--3 {
  width: 280px;
  height: 280px;
  bottom: -60px;
  right: 20%;
  background: rgba(147, 197, 253, 0.18);
  animation: mesh-float-3 20s ease-in-out infinite;
}

@keyframes mesh-float-1 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-18px, 22px, 0); }
}

@keyframes mesh-float-2 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(24px, -16px, 0); }
}

@keyframes mesh-float-3 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-14px, -20px, 0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e6e9ef;
  box-shadow: var(--shadow-soft);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

.hero-trust-note {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  border: 1px solid #c5c7d0;
  background: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn-ghost:hover {
  border-color: #9699a6;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.btn-primary.btn-pill {
  border-radius: 999px;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--color-navy);
  background: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease-out-expo);
  white-space: nowrap;
}

.btn-outline-pill:hover {
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

/* ─── Product mockup ─── */
.product-showcase {
  position: relative;
  max-width: 920px;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
}

.product-showcase__glow {
  position: absolute;
  inset: 10% 5% -5%;
  background: radial-gradient(ellipse, rgba(196, 22, 28, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.product-mockup {
  position: relative;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(230, 232, 240, 0.95);
  background: #fff;
  box-shadow: var(--shadow-product);
  overflow: hidden;
  animation: mockup-float 6s ease-in-out infinite;
}

.product-mockup--glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 40px 80px -28px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset,
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: visible;
}

.product-mockup--glass .glass-stage {
  border-radius: 0 0 calc(var(--radius-2xl) - 2px) calc(var(--radius-2xl) - 2px);
  overflow: hidden;
}

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

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, #f6f7fb 0%, #eef0f6 100%);
  border-bottom: 1px solid #e6e9ef;
}

.browser-chrome--glass {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.browser-chrome__dots {
  display: flex;
  gap: 0.35rem;
}

.browser-chrome__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d4e4;
}

.browser-chrome__dots span:nth-child(1) { background: #ff5f57; }
.browser-chrome__dots span:nth-child(2) { background: #febc2e; }
.browser-chrome__dots span:nth-child(3) { background: #28c840; }

.browser-chrome__url {
  flex: 1;
  margin-left: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid #e6e9ef;
  font-size: 0.75rem;
  color: #9699a6;
  text-align: center;
}

.browser-chrome--glass .browser-chrome__url {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-mockup picture,
.product-mockup img {
  display: block;
  width: 100%;
  height: auto;
}

/* ─── Glass stage + floating panels ─── */
.glass-stage {
  position: relative;
}

.glass-panel {
  position: absolute;
  z-index: 4;
  min-width: 7.5rem;
  padding: 0.7rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 18px 40px -18px rgba(15, 23, 42, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
  color: #0f172a;
  pointer-events: none;
  animation: glass-float 5.5s ease-in-out infinite;
}

.glass-panel--tl {
  top: 12%;
  left: 4%;
}

.glass-panel--tr {
  top: 10%;
  right: 5%;
  animation-delay: -1.2s;
}

.glass-panel--br {
  right: 5%;
  bottom: 12%;
  animation-delay: -2.1s;
}

.glass-panel--hero-a {
  left: 4%;
  bottom: 14%;
}

.glass-panel--hero-b {
  right: 5%;
  top: 18%;
  animation-delay: -1.8s;
}

.glass-panel__label {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
}

.glass-panel__value {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.glass-panel__value--accent {
  color: var(--color-accent);
}

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

@media (max-width: 640px) {
  .glass-panel--hero-a,
  .glass-panel--hero-b,
  .glass-panel--tl,
  .glass-panel--tr {
    display: none;
  }

  .glass-panel--br {
    right: 3%;
    bottom: 8%;
    min-width: 6.5rem;
    padding: 0.55rem 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glass-panel {
    animation: none;
  }
}

/* ─── Marquee strip (monday.com-style moving line) ─── */
.marquee-strip {
  position: relative;
  overflow: hidden;
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  border-block: 1px solid #e6e9ef;
  background: #fff;
  padding: 1.125rem 0;
  /* Soft fade at edges — items dissolve instead of hard-clipping */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

/* Legacy edge overlays — replaced by mask-image */
.marquee-strip__edge {
  display: none;
}

.marquee-strip__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
  will-change: transform;
}

.marquee-strip:hover .marquee-strip__track {
  animation-play-state: paused;
}

.marquee-strip__group {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-right: clamp(2rem, 5vw, 3.5rem);
  flex-shrink: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  white-space: nowrap;
}

.marquee-item__chip {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.marquee-item__chip--coral { background: linear-gradient(135deg, #ff6b6b, #c4161c); }
.marquee-item__chip--sky { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.marquee-item__chip--mint { background: linear-gradient(135deg, #6ee7b7, #059669); }
.marquee-item__chip--sand { background: linear-gradient(135deg, #fcd34d, #f59e0b); }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

html[dir='rtl'] .marquee-strip__track {
  animation-name: marquee-scroll-rtl;
}

@keyframes marquee-scroll-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-strip {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .marquee-strip__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    gap: 1rem 2rem;
    padding: 0 1rem;
  }

  .marquee-strip__group:last-child {
    display: none;
  }

  .marquee-item {
    white-space: normal;
  }
}

/* ─── Trusted by (logo stripe) ─── */
.trusted-by {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  background: #f9f9f9;
  border-bottom: 1px solid #eef0f4;
  overflow: hidden;
}

.trusted-by__inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.trusted-by__label {
  margin: 0 0 1.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
}

.trusted-by__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Match feature ticker: soft fade at both edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.trusted-by__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: trusted-marquee 38s linear infinite;
  will-change: transform;
}

.trusted-by__marquee:hover .trusted-by__track {
  animation-play-state: paused;
}

.trusted-by__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  padding-inline: clamp(1.25rem, 3vw, 2.25rem);
}

.trusted-by__stage {
  position: relative;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 12.5rem;
  min-height: 3.5rem;
  overflow: hidden;
}

.trusted-by__slide {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(22px);
  pointer-events: none;
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.trusted-by__slide.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  pointer-events: auto;
}

.trusted-by__slide.is-leaving {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-20px);
}

.trusted-by__logo--img {
  display: block;
  height: auto;
  width: auto;
  max-height: 2.5rem;
  max-width: 10rem;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;
  opacity: 0.9;
}

.trusted-by__wordmark {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #4b5563;
  white-space: nowrap;
  flex-shrink: 0;
}

.trusted-by__brand {
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #4b5563;
  white-space: nowrap;
  flex-shrink: 0;
}

.trusted-by__note {
  margin: 1.5rem 0 0;
  font-size: 0.8125rem;
  color: #9ca3af;
}

.trusted-by__disclaimer {
  margin: 0.65rem auto 0;
  max-width: 40rem;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: #b0b5bf;
}

body.lang-ur .trusted-by__label {
  letter-spacing: 0.06em;
  font-family: 'Noto Nastaliq Urdu', Inter, sans-serif;
  font-size: 0.8rem;
  line-height: 1.8;
}

body.lang-ur .trusted-by__note,
body.lang-ur .trusted-by__disclaimer {
  font-family: 'Noto Nastaliq Urdu', Inter, sans-serif;
  line-height: 1.85;
}

@keyframes trusted-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-by__track {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .trusted-by__group[aria-hidden='true'] {
    display: none;
  }

  .trusted-by__group {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1rem;
  }

  .trusted-by__marquee {
    -webkit-mask-image: none;
    mask-image: none;
    padding-inline: 1.25rem;
  }

  .trusted-by__slide {
    transition: opacity 0.2s ease;
    filter: none !important;
    transform: none !important;
  }
}

/* ─── Partner showcase (Coca-Cola + Shafqat Traders) ─── */
.partner-showcase {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: linear-gradient(180deg, #fff 0%, #fdf8f8 45%, #f6f7fb 100%);
  border-top: 1px solid #e6e9ef;
  overflow: hidden;
}

.partner-showcase__glow {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(640px, 90vw);
  height: min(420px, 60vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(196, 22, 28, 0.1) 0%, transparent 68%);
  pointer-events: none;
}

.partner-showcase__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partner-showcase__label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

.partner-showcase__logo-wrap {
  display: block;
  margin-top: 1.75rem;
}

.partner-showcase__logo {
  display: block;
  width: min(280px, 72vw);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(196, 22, 28, 0.12));
}

.partner-showcase__details {
  margin-top: 2rem;
  max-width: 36rem;
}

.partner-showcase__name {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.partner-showcase__role {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
}

.partner-showcase__regional {
  margin-top: 0.75rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-navy);
}

.partner-showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(196, 22, 28, 0.08);
  border: 1px solid rgba(196, 22, 28, 0.15);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-accent);
}

.partner-showcase__badge-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}

.partner-showcase__disclaimer {
  margin-top: 2.5rem;
  max-width: 40rem;
  font-size: 0.6875rem;
  line-height: 1.7;
  color: #94a3b8;
}

/* ─── Stats row ─── */
.stats-row {
  padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  background: var(--color-bg-soft);
  border-bottom: 1px solid #e6e9ef;
}

/* ─── Results & Impact ─── */
.impact-section {
  padding-block: var(--section-gap);
  background: #fff;
  border-bottom: 1px solid #eef0f6;
}

.impact-intro {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.impact-stats {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

@media (min-width: 1024px) {
  .impact-stats {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.125rem;
  }
}

.impact-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo),
    border-color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .impact-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
  }
}

.impact-stat--coral { background: linear-gradient(145deg, #fff 0%, #fff5f5 100%); border-color: #ffd6d6; }
.impact-stat--sky { background: linear-gradient(145deg, #fff 0%, #eef6ff 100%); border-color: #cce5ff; }
.impact-stat--mint { background: linear-gradient(145deg, #fff 0%, #eefbf3 100%); border-color: #c8efd8; }
.impact-stat--sand { background: linear-gradient(145deg, #fff 0%, #fff8ee 100%); border-color: #ffe8c8; }
.impact-stat--violet { background: linear-gradient(145deg, #fff 0%, #f3f0ff 100%); border-color: #ddd6fe; }

.impact-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-accent);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.impact-stat__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.impact-stat__value {
  font-size: clamp(1.75rem, 4vw, 2.125rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  font-variant-numeric: tabular-nums;
}

.impact-stat__value.is-counting {
  opacity: 0.75;
}

.impact-stat__label {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-muted);
}

.impact-roi {
  display: grid;
  gap: 2.5rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .impact-roi {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.impact-roi__title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.impact-roi__desc {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #475569;
}

.impact-compare {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .impact-compare {
    grid-template-columns: 1fr 1fr;
  }
}

.impact-compare__col {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e6e9ef;
}

.impact-compare__col--before {
  background: #fafafa;
}

.impact-compare__col--after {
  background: linear-gradient(145deg, #fff5f5 0%, #fff 100%);
  border-color: rgba(196, 22, 28, 0.15);
}

.impact-compare__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-navy);
}

.impact-compare__col--before .impact-compare__heading {
  color: #64748b;
}

.impact-compare__col--after .impact-compare__heading {
  color: var(--color-accent);
}

.impact-compare__list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.impact-compare__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
}

.impact-compare__list li + li {
  margin-top: 0.5rem;
}

.impact-compare__list li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
}

.impact-compare__col--after .impact-compare__list li::before {
  content: '\2713';
  color: #059669;
  font-weight: 800;
}

.impact-roi__visual {
  position: relative;
}

.impact-roi__glow {
  position: absolute;
  inset: 8% 0 -5%;
  background: radial-gradient(ellipse, rgba(196, 22, 28, 0.1) 0%, transparent 68%);
  pointer-events: none;
}

.impact-roi__mockup {
  position: relative;
  border-radius: var(--radius-2xl);
  border: 1px solid #e6e9ef;
  background: #fff;
  box-shadow: var(--shadow-product);
  overflow: hidden;
  animation: impact-mockup-float 7s ease-in-out infinite;
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo);
}

@media (hover: hover) and (pointer: fine) {
  .impact-roi__mockup:hover {
    transform: scale(1.02);
    box-shadow: 0 48px 90px -28px rgba(15, 23, 42, 0.28);
  }
}

@keyframes impact-mockup-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (hover: hover) and (pointer: fine) {
  .impact-roi__mockup:hover {
    animation-play-state: paused;
  }
}

.impact-roi__mockup picture,
.impact-roi__mockup img {
  display: block;
  width: 100%;
  height: auto;
}

.impact-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin: clamp(3rem, 6vw, 4rem) 0 0;
  padding: 1.25rem 1.5rem;
  list-style: none;
  border-radius: var(--radius-xl);
  background: var(--color-bg-soft);
  border: 1px solid #e6e9ef;
}

@media (min-width: 768px) {
  .impact-trust {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1rem;
  }
}

.impact-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  white-space: nowrap;
}

.impact-trust__check {
  color: #059669;
  font-weight: 800;
}

body.lang-ur .impact-roi__desc,
body.lang-ur .impact-compare__list li,
body.lang-ur .impact-stat__label {
  line-height: 1.9;
}

@media (prefers-reduced-motion: reduce) {
  .impact-roi__mockup {
    animation: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .impact-stat:hover,
  .impact-roi__mockup:hover {
    transform: none;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  min-height: 7rem;
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo),
    border-color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
  }

  .stat-card--coral:hover { border-color: #ffb8b8; }
  .stat-card--sky:hover { border-color: #a8d4ff; }
  .stat-card--mint:hover { border-color: #9fe0bc; }
  .stat-card--sand:hover { border-color: #ffd699; }
}

.stat-card__value {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  transition: opacity 0.35s ease;
}

.stat-card__value.is-counting {
  opacity: 0.72;
}

.stat-card__label {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-muted);
  max-width: 9rem;
}

.stat-card--coral { background: #fff0f0; border-color: #ffd6d6; }
.stat-card--sky { background: #eef6ff; border-color: #cce5ff; }
.stat-card--mint { background: #eefbf3; border-color: #c8efd8; }
.stat-card--sand { background: #fff8ee; border-color: #ffe8c8; }

/* ─── Projects gallery — sized shots + hover glass ─── */
.projects-section {
  position: relative;
  background: #f3f4f7;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}

.projects-section__watermark {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  z-index: 0;
  margin: 0;
  font-size: clamp(5rem, 18vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.85;
  color: rgba(15, 23, 42, 0.055);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.projects-section__inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.projects-section__lead {
  max-width: 28rem;
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  font-size: 0.95rem;
  line-height: 1.55;
  color: #6b7280;
}

.projects-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .projects-bento {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 11.5rem;
    gap: 1.1rem;
    grid-template-areas:
      'a a a a a a a b b b b b'
      'a a a a a a a b b b b b'
      'c c c c c c d d d d d d'
      'e e e e e e e e f f f f'
      'e e e e e e e e f f f f';
  }

  .projects-card--lg { grid-area: a; }
  .projects-card--tall { grid-area: b; }
  .projects-card--md:nth-of-type(3) { grid-area: c; }
  .projects-card--md:nth-of-type(4) { grid-area: d; }
  .projects-card--wide { grid-area: e; }
  .projects-card--sm { grid-area: f; }
}

.projects-card {
  position: relative;
  margin: 0;
  border-radius: 1.4rem;
  overflow: hidden;
  min-height: 16rem;
  background: #d8dee8;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 40px -24px rgba(15, 23, 42, 0.3);
  cursor: default;
}

@media (min-width: 768px) {
  .projects-card {
    min-height: 0;
    height: 100%;
  }
}

.projects-card > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s var(--ease-out-expo);
}

@media (min-width: 768px) {
  .projects-card > img {
    min-height: 0;
    position: absolute;
    inset: 0;
  }
}

.projects-card__hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.9rem;
  background: rgba(15, 23, 42, 0.18);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out-expo);
  pointer-events: none;
}

.projects-card__panel {
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 16px 36px -16px rgba(15, 23, 42, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
  transform: translateY(12px);
  transition: transform 0.35s var(--ease-out-expo);
}

.projects-card__tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.projects-card__name {
  margin: 0.3rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.projects-card__desc {
  margin: 0.3rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34ch;
}

@media (hover: hover) and (pointer: fine) {
  .projects-card:hover > img {
    transform: scale(1.04);
  }

  .projects-card:hover .projects-card__hover {
    opacity: 1;
  }

  .projects-card:hover .projects-card__panel {
    transform: translateY(0);
  }
}

/* Touch / no-hover: keep glass panel visible */
@media (hover: none), (pointer: coarse) {
  .projects-card__hover {
    opacity: 1;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.35) 100%);
  }

  .projects-card__panel {
    transform: none;
  }

  .projects-card__desc {
    display: none;
  }
}

body.lang-ur .projects-section__lead,
body.lang-ur .projects-card__name,
body.lang-ur .projects-card__desc {
  font-family: 'Noto Nastaliq Urdu', Inter, sans-serif;
  line-height: 1.75;
}

@media (prefers-reduced-motion: reduce) {
  .projects-card > img,
  .projects-card__hover {
    transition: none;
  }
}
.product-tour {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  transition: box-shadow 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo);
}

.product-tour--glass {
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 28px 70px -24px rgba(15, 23, 42, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
  overflow: visible;
}

@media (hover: hover) and (pointer: fine) {
  .product-tour:hover {
    box-shadow: 0 32px 70px -22px rgba(15, 23, 42, 0.24);
  }

  .product-tour--glass:hover {
    box-shadow:
      0 36px 80px -22px rgba(15, 23, 42, 0.28),
      0 1px 0 rgba(255, 255, 255, 0.8) inset;
  }
}

.product-tour__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.75rem;
  background: var(--color-bg-soft);
  border-bottom: 1px solid #e6e9ef;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.product-tour--glass .product-tour__tabs {
  background: rgba(246, 247, 251, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

.product-tour__tab {
  flex: 1 1 auto;
  min-width: fit-content;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted);
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.product-tour__tab:hover {
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.7);
}

.product-tour__tab.is-active {
  background: #fff;
  color: var(--color-navy);
  border-color: #e6e9ef;
  box-shadow: var(--shadow-soft);
}

.product-tour--glass .product-tour__tab.is-active {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.7);
}

.product-tour__tab.is-active[data-tour-tab='login'] {
  border-color: #ffd6d6;
  background: #fff5f5;
}

.product-tour__tab.is-active[data-tour-tab='dashboard'] {
  border-color: #cce5ff;
  background: #eef6ff;
}

.product-tour__tab.is-active[data-tour-tab='guide'] {
  border-color: #c8efd8;
  background: #eefbf3;
}

.product-tour__viewport {
  position: relative;
  padding: 1.25rem 1.25rem 1.5rem;
}

.product-tour--glass .product-tour__viewport {
  overflow: visible;
}

.product-tour__panel {
  display: none;
  animation: tour-fade-in 0.4s var(--ease-out-expo);
}

.product-tour__panel.is-active {
  display: block;
}

@keyframes tour-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-tour__frame {
  box-shadow: none;
}

.product-tour__caption {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #676879;
}

.product-tour--glass .product-tour__caption {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  .product-tour__panel {
    animation: none;
  }
}

/* ─── Sections ─── */
.section-panel {
  padding-block: var(--section-gap);
}

.section-alt {
  position: relative;
  background: var(--surface-soft);
  overflow: hidden;
}

.section-alt::before,
.section-alt::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(48px);
  opacity: 0.85;
  animation: ambient-drift 28s ease-in-out infinite;
}

.section-alt::before {
  width: min(480px, 70vw);
  height: min(480px, 70vw);
  top: -18%;
  right: -8%;
  background: radial-gradient(circle, rgba(196, 22, 28, 0.14) 0%, transparent 68%);
}

.section-alt::after {
  width: min(420px, 58vw);
  height: min(420px, 58vw);
  bottom: -12%;
  left: -6%;
  background: radial-gradient(circle, rgba(255, 183, 77, 0.16) 0%, transparent 68%);
  animation-duration: 34s;
  animation-direction: reverse;
}

@keyframes ambient-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-24px, 18px, 0); }
}

.section-alt > * {
  position: relative;
  z-index: 1;
}

.section-intro {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

/* ─── SaaS cards ─── */
.saas-card {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo);
}

.saas-card:hover {
  transform: translateY(var(--motion-hover-lift));
  box-shadow: var(--shadow-lift);
}

.saas-card--problem {
  background: linear-gradient(145deg, #fff 0%, #fafafa 100%);
}

.saas-card--solution {
  background: linear-gradient(145deg, #fff5f5 0%, #fff 100%);
  border-color: rgba(196, 22, 28, 0.12);
}

.feature-card {
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid transparent;
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo),
    border-color 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lift);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.06);
}

.feature-card--coral { background: #fff0f0; border-color: #ffd6d6; }
.feature-card--sky { background: #eef6ff; border-color: #cce5ff; }
.feature-card--mint { background: #eefbf3; border-color: #c8efd8; }
.feature-card--sand { background: #fff8ee; border-color: #ffe8c8; }
.feature-card--violet { background: #f3f0ff; border-color: #ddd6fe; }
.feature-card--ice { background: #eef8fb; border-color: #c5e8f0; }

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  transition: transform 0.4s var(--ease-out-expo);
}

/* ─── Process steps ─── */
.process-step {
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 1.75rem;
  left: calc(50% + 1.75rem);
  width: calc(100% - 3.5rem);
  height: 2px;
  background: linear-gradient(90deg, rgba(196, 22, 28, 0.35), rgba(196, 22, 28, 0.08));
  display: none;
}

@media (min-width: 768px) {
  .process-step:not(:last-child)::before {
    display: block;
  }
}

html[dir='rtl'] .process-step::before {
  left: auto;
  right: calc(50% + 1.75rem);
  background: linear-gradient(270deg, rgba(196, 22, 28, 0.35), rgba(196, 22, 28, 0.08));
}

.step-card {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo),
    border-color 0.35s ease;
}

.step-card:hover {
  transform: translateY(var(--motion-hover-lift));
  box-shadow: var(--shadow-lift);
  border-color: #d8dbe8;
}

.step-card:hover .step-num {
  transform: scale(1.05);
}

.step-num {
  box-shadow: 0 6px 20px -4px rgba(196, 22, 28, 0.45);
  transition: transform 0.4s var(--ease-out-expo);
}

/* ─── Screen frames ─── */
.screen-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #e6e9ef;
  background: #fff;
  box-shadow: var(--shadow-lift);
}

.screen-frame--glass {
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 20px 50px -24px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.screen-frame picture,
.screen-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.reveal-media img {
  transition: transform 1.35s var(--ease-out-expo);
}

/* ─── Customer card ─── */
.customer-card {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: var(--radius-2xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lift);
  text-align: center;
}

.customer-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--color-accent-soft);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
}

/* ─── Customer success (monday.com style) ─── */
.success-section__head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .success-section__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.success-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .success-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.success-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 320px;
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo);
}

@media (hover: hover) and (pointer: fine) {
  .success-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
  }

  .success-card:hover .reveal-media img {
    transform: scale(1.03);
  }
}

.success-card--metric {
  background: linear-gradient(145deg, #ede9fe 0%, #e8e4f8 100%);
  padding: 1.5rem;
}

.success-card--quote {
  background: var(--color-navy-dark);
  color: #fff;
  padding: 1.5rem;
}

.success-card__tag {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 0.35rem;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-navy);
}

.success-card__metric-body,
.success-card__quote-body {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
  height: calc(100% - 2rem);
}

@media (min-width: 640px) {
  .success-card__metric-body,
  .success-card__quote-body {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1rem;
  }
}

.success-card__stat {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-navy);
  transition: opacity 0.35s ease;
}

.success-card__stat.is-counting {
  opacity: 0.75;
}

.success-card__stat-label {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-navy);
  max-width: 12rem;
}

.success-card__link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.success-card__link:hover {
  color: var(--color-accent);
}

.success-card__visual-frame {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 18px 40px -18px rgba(15, 23, 42, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.success-card--metric .success-card__visual-frame {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.45);
}

.success-card__visual-frame picture,
.success-card__visual-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.success-card__visual--tall .success-card__visual-frame {
  max-height: 260px;
}

.success-card__visual--tall img {
  object-fit: cover;
  object-position: top;
  max-height: 260px;
}

.success-card__marks {
  display: block;
  font-size: 4rem;
  line-height: 0.8;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.success-card__quote {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
}

.success-card__quote strong {
  color: #ff8a8f;
  font-weight: 700;
}

.success-card__author {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}

.success-quotes {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .success-quotes {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.success-card--quote-solo {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.success-card--quote-solo .success-card__quote {
  margin-top: 0.35rem;
}

.success-card--quote-solo .success-card__author {
  margin-top: auto;
  padding-top: 1.25rem;
}

html[dir='rtl'] .success-card__link span,
html[dir='rtl'] .btn-outline-pill span {
  display: inline-block;
  transform: scaleX(-1);
}

/* ─── FAQ ─── */
.faq-panel {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.faq-item.open {
  background: var(--color-bg-soft);
}

.faq-toggle {
  transition: background 0.2s ease;
}

.faq-toggle:hover {
  background: rgba(246, 247, 251, 0.8);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}

.faq-answer__inner {
  padding: 0 1.25rem 1rem;
}

/* ─── FAQ pages ─── */
.faq-layout__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .faq-layout__grid {
    grid-template-columns: minmax(220px, 280px) 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

.faq-sidebar {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

@media (min-width: 1024px) {
  .faq-sidebar {
    position: sticky;
    top: 5.5rem;
    max-height: calc(100vh - 7rem);
    overflow: auto;
  }
}

.faq-sidebar__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  padding: 0.25rem 0.5rem 0.75rem;
}

.faq-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-sidebar__link {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: #475569;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s var(--ease-out-expo);
}

.faq-sidebar__link:hover {
  background: var(--color-bg-soft);
  color: var(--color-navy);
  transform: translateX(3px);
}

.faq-sidebar__link.is-active {
  background: rgba(196, 22, 28, 0.08);
  color: var(--color-accent);
  font-weight: 600;
}

.faq-back {
  text-decoration: none;
}

.faq-article__body p + p {
  margin-top: 1rem;
}

.faq-pager {
  display: grid;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eef0f6;
}

@media (min-width: 640px) {
  .faq-pager {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-pager__link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid #e6e9ef;
  border-radius: 0.75rem;
  background: var(--color-bg-soft);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.25s ease,
    transform 0.25s var(--ease-out-expo);
}

.faq-pager__link:hover {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.faq-pager__link--next {
  text-align: right;
}

.faq-pager__dir {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.faq-home-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-home-list li + li {
  border-top: 1px solid #eef0f6;
}

.faq-home-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-navy);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    padding 0.25s var(--ease-out-expo);
}

.faq-home-link:hover {
  background: var(--color-bg-soft);
  color: var(--color-accent);
  padding-left: 1.4rem;
}

.faq-home-link__arrow {
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.25s var(--ease-out-expo), color 0.2s ease;
}

.faq-home-link:hover .faq-home-link__arrow {
  transform: translateX(4px);
  color: var(--color-accent);
}

html[dir='rtl'] .faq-sidebar__link:hover {
  transform: translateX(-3px);
}

html[dir='rtl'] .faq-home-link:hover {
  padding-left: 1.25rem;
  padding-right: 1.4rem;
}

html[dir='rtl'] .faq-home-link:hover .faq-home-link__arrow {
  transform: translateX(-4px);
}

html[dir='rtl'] .faq-pager__link--next {
  text-align: left;
}

body.lang-ur .faq-sidebar__link,
body.lang-ur .faq-home-link,
body.lang-ur .faq-article__body {
  line-height: 1.9;
}

/* ─── Collections autofill demo (monday.com style) ─── */
.autofill-demo {
  overflow: hidden;
}

.autofill-stage {
  position: relative;
  min-height: 520px;
  padding: 2rem 1rem 2.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #eef0f6 0%, #f6f7fb 55%, #fff 100%);
  border: 1px solid #e6e9ef;
  box-shadow: var(--shadow-soft);
}

.autofill-stage__desk {
  position: absolute;
  inset: 1.25rem 1.25rem auto;
  opacity: 0.45;
  pointer-events: none;
}

.autofill-stage__desk-bar {
  display: block;
  height: 0.65rem;
  width: 38%;
  border-radius: 999px;
  background: #cbd5e1;
  margin-bottom: 0.75rem;
}

.autofill-stage__desk-row {
  display: block;
  height: 0.5rem;
  border-radius: 999px;
  background: #e2e8f0;
  margin-bottom: 0.45rem;
}

.autofill-stage__desk-row--short {
  width: 72%;
}

.autofill-modal {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: 0 auto;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  box-shadow: 0 24px 60px -20px rgba(15, 23, 42, 0.28);
  overflow: hidden;
}

.autofill-modal__head {
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid #e5e7eb;
  background: #fafafa;
}

.autofill-modal__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-navy);
}

.autofill-form {
  padding: 0.85rem 1.15rem 0.5rem;
}

.autofill-section {
  margin: 0.65rem 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-accent);
}

.autofill-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0;
}

.autofill-row--pack {
  align-items: center;
}

.autofill-row__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
}

.autofill-input {
  min-height: 2rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  background: #fff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.autofill-input--sm {
  min-height: 1.85rem;
  min-width: 3.5rem;
}

.autofill-input__text {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-navy);
  min-height: 1.1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.autofill-pack {
  display: flex;
  gap: 0.45rem;
}

.autofill-row.is-active .autofill-input {
  border-color: #579bfc;
  box-shadow: 0 0 0 3px rgba(87, 155, 252, 0.22);
}

.autofill-row.is-filled .autofill-input {
  border-color: #00c875;
  background: rgba(0, 200, 117, 0.07);
}

.autofill-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: #00c875;
  color: #fff;
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.35s var(--ease-out-expo),
    transform 0.35s var(--ease-out-expo),
    max-width 0.35s var(--ease-out-expo),
    padding 0.35s var(--ease-out-expo);
}

.autofill-status.is-show {
  min-width: 4.75rem;
  max-width: 6.5rem;
  padding: 0.2rem 0.45rem;
  opacity: 1;
  transform: scale(1);
}

.autofill-modal__foot {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem 1rem;
  border-top: 1px solid #e5e7eb;
  background: #fafafa;
}

.autofill-btn {
  padding: 0.45rem 0.9rem;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.autofill-btn--ghost {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #475569;
}

.autofill-btn--save {
  border: none;
  background: #2563eb;
  color: #fff;
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.autofill-save.is-ready {
  box-shadow: 0 0 0 3px rgba(0, 200, 117, 0.35);
  transform: scale(1.03);
}

.autofill-float {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem;
  background: #fff;
  border: 2px solid #ff158a;
  border-radius: 0.55rem;
  box-shadow: 0 10px 28px -8px rgba(15, 23, 42, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s var(--ease-out-expo),
    transform 0.4s var(--ease-out-expo);
  pointer-events: none;
}

.autofill-float.is-show {
  opacity: 1;
  transform: translateY(0);
}

.autofill-float--1 { left: -2%; top: 34%; }
.autofill-float--2 { right: -4%; top: 46%; }
.autofill-float--3 { left: 0; bottom: 22%; }
.autofill-float--4 { right: 2%; bottom: 12%; }

.autofill-float__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #ff158a;
  flex-shrink: 0;
}

.autofill-float__dot--sky { background: #579bfc; }
.autofill-float__dot--mint { background: #00c875; }
.autofill-float__dot--green { background: #037f4c; }

.autofill-float__text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-navy);
  white-space: nowrap;
}

.autofill-cursor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(196, 22, 28, 0.25);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
}

.autofill-cursor::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.35rem;
  width: 0;
  height: 0;
  border-left: 0.35rem solid transparent;
  border-right: 0.35rem solid transparent;
  border-top: 0.45rem solid var(--color-accent);
  transform: translateX(-50%);
}

.autofill-cursor.is-visible {
  opacity: 1;
}

body.lang-ur .autofill-row {
  grid-template-columns: 6.5rem 1fr auto;
}

@media (max-width: 640px) {
  .autofill-stage {
    min-height: auto;
    padding: 1.25rem 0.75rem 1.5rem;
  }

  .autofill-row {
    grid-template-columns: 5.5rem 1fr;
    grid-template-rows: auto auto;
  }

  .autofill-status {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.15rem;
  }

  .autofill-float {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .autofill-cursor {
    display: none;
  }
}

/* ─── Save PDF report pop demo ─── */
.pdf-demo__wrap {
  position: relative;
}

.pdf-stage {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #eef0f6 0%, #f8f9fc 100%);
  border: 1px solid #e6e9ef;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.reports-mock {
  position: relative;
  z-index: 2;
  background: #fff;
  margin: 1.25rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 12px 32px -16px rgba(15, 23, 42, 0.2);
  transition: filter 0.45s ease, transform 0.45s ease;
}

.pdf-stage.is-exporting .reports-mock {
  filter: brightness(0.96);
}

.pdf-stage.is-done .reports-mock {
  filter: brightness(0.72);
  transform: scale(0.985);
}

.reports-mock__titlebar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
}

.reports-mock__app-icon {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 0.2rem;
  background: var(--color-accent);
}

.reports-mock__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid #eef0f6;
  font-size: 0.6875rem;
  color: #64748b;
}

.reports-mock__nav .is-active {
  color: var(--color-navy);
  font-weight: 700;
}

.reports-mock__head {
  padding: 1rem 1rem 0.35rem;
}

.reports-mock__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-navy);
}

.reports-mock__sub {
  margin-top: 0.15rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.reports-mock__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem 1rem;
  padding: 0.85rem 1rem 1rem;
  border-bottom: 1px solid #eef0f6;
}

.reports-mock__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
}

.reports-mock__select {
  min-width: 11rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.3rem;
  background: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-navy);
}

.reports-mock__actions {
  display: flex;
  gap: 0.45rem;
  margin-left: auto;
}

.reports-mock__btn {
  padding: 0.4rem 0.85rem;
  border-radius: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.reports-mock__btn--ghost {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #475569;
}

.reports-mock__btn--save {
  border: none;
  background: var(--color-accent);
  color: #fff;
}

.pdf-save-btn.is-pressed {
  transform: scale(0.94);
}

.pdf-save-btn.is-armed {
  box-shadow: 0 0 0 3px rgba(196, 22, 28, 0.28);
  animation: pdf-btn-pulse 1.2s ease-in-out infinite;
}

@keyframes pdf-btn-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(196, 22, 28, 0.28); }
  50% { box-shadow: 0 0 0 6px rgba(196, 22, 28, 0.12); }
}

.reports-mock__canvas {
  min-height: 140px;
  background:
    linear-gradient(180deg, #fafafa 0%, #f3f4f6 100%);
}

.pdf-popup {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.pdf-popup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pdf-stage.is-done .pdf-popup {
  opacity: 1;
  pointer-events: auto;
}

.pdf-stage.is-done .pdf-popup::before {
  opacity: 1;
}

.pdf-popup__sheet {
  position: relative;
  z-index: 1;
  width: min(340px, 78vw);
  transform: translateY(28px) scale(0.88) rotate(-1deg);
  opacity: 0;
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

.pdf-stage.is-done .pdf-popup__sheet {
  transform: translateY(0) scale(1) rotate(0deg);
  opacity: 1;
}

.pdf-popup__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.35rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 28px 60px -20px rgba(15, 23, 42, 0.45);
  background: #fff;
}

.pdf-popup__tag {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.pdf-float {
  position: absolute;
  right: 8%;
  top: 18%;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  background: #fff;
  border: 2px solid #00c875;
  border-radius: 0.55rem;
  box-shadow: 0 10px 28px -8px rgba(15, 23, 42, 0.2);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s var(--ease-out-expo),
    transform 0.4s var(--ease-out-expo);
}

.pdf-float.is-show {
  opacity: 1;
  transform: translateY(0);
}

.pdf-float__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #00c875;
}

.pdf-float__text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #037f4c;
  white-space: nowrap;
}

.pdf-cursor {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(196, 22, 28, 0.22);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
}

.pdf-cursor::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.3rem;
  border-left: 0.3rem solid transparent;
  border-right: 0.3rem solid transparent;
  border-top: 0.4rem solid var(--color-accent);
  transform: translateX(-50%);
}

.pdf-cursor.is-visible {
  opacity: 1;
}

@media (max-width: 640px) {
  .reports-mock__actions {
    margin-left: 0;
    width: 100%;
  }

  .reports-mock__btn {
    flex: 1;
  }

  .pdf-float {
    right: 4%;
    top: 10%;
  }

  .pdf-popup__sheet {
    width: min(300px, 88vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pdf-save-btn.is-armed {
    animation: none;
  }

  .pdf-cursor {
    display: none;
  }

  .pdf-popup__sheet {
    transition: none;
  }
}

/* ─── Product story (Apple-style sticky scroll) ─── */
.product-story {
  --story-ease: cubic-bezier(0.16, 1, 0.3, 1);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(196, 22, 28, 0.05), transparent 55%),
    linear-gradient(180deg, #fff 0%, #f5f6fa 42%, #eef0f6 100%);
  overflow: clip;
}

.product-story__track {
  position: relative;
  height: 520vh;
  content-visibility: auto;
  contain-intrinsic-size: 1px 520vh;
}

.product-story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 560px;
  max-height: 960px;
  display: grid;
  align-content: center;
  gap: clamp(1.25rem, 3vh, 2.25rem);
  padding: clamp(5.5rem, 10vh, 7rem) 1.25rem 1.75rem;
  overflow: hidden;
}

.product-story__glow {
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(720px, 90vw);
  height: min(420px, 55vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(196, 22, 28, 0.1) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.product-story__copy {
  position: relative;
  z-index: 2;
  width: min(40rem, 100%);
  margin-inline: auto;
  text-align: center;
}

.product-story__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 0.85rem;
}

.product-story__chapters {
  position: relative;
  min-height: 8.5rem;
}

.product-story__chapter {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.985);
  pointer-events: none;
  transition:
    opacity 0.45s var(--story-ease),
    transform 0.55s var(--story-ease);
}

.product-story__chapter.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.product-story__chapter h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 750;
  letter-spacing: -0.038em;
  line-height: 1.12;
  color: var(--color-navy);
  max-width: 16ch;
}

.product-story__chapter p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: var(--color-muted);
  max-width: 34rem;
}

.product-story__progress {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
}

.product-story__progress span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.14);
  transition:
    width 0.4s var(--story-ease),
    background-color 0.35s ease;
}

.product-story__progress span.is-active {
  width: 1.55rem;
  background: var(--color-accent);
}

.product-story__stage {
  position: relative;
  z-index: 1;
  width: min(68rem, 100%);
  margin-inline: auto;
}

.product-story__device {
  position: relative;
  border-radius: 1.05rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #eceff4;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 28px 70px -28px rgba(15, 23, 42, 0.45),
    0 10px 28px -16px rgba(15, 23, 42, 0.22);
  overflow: hidden;
  contain: layout paint style;
  transform: translateZ(0);
}

.product-story__chrome {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  background: linear-gradient(180deg, #f8f9fc 0%, #eef1f6 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.product-story__traffic {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.product-story__traffic span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #d0d4e4;
}

.product-story__traffic span:nth-child(1) { background: #ff5f57; }
.product-story__traffic span:nth-child(2) { background: #febc2e; }
.product-story__traffic span:nth-child(3) { background: #28c840; }

.product-story__chrome p {
  margin: 0;
  justify-self: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #8b93a1;
}

.product-story__frames {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #f4f6f9;
}

.product-story__frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 0.4s var(--story-ease),
    transform 0.45s var(--story-ease),
    visibility 0s linear 0.4s;
  pointer-events: none;
}

.product-story__frame.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  z-index: 1;
  transition-delay: 0s;
  pointer-events: auto;
}

.product-story__frame picture,
.product-story__frame img,
.product-story__frame video {
  width: 100%;
  height: 100%;
  display: block;
}

.product-story__frame img,
.product-story__frame video {
  object-fit: cover;
  object-position: top center;
  content-visibility: auto;
}

@media (min-width: 980px) {
  .product-story__sticky {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-inline: clamp(1.5rem, 4vw, 3.5rem);
  }

  .product-story__copy {
    margin-inline: 0;
    text-align: left;
    width: 100%;
  }

  .product-story__chapter {
    align-items: flex-start;
  }

  .product-story__chapter h2 {
    max-width: 11ch;
  }

  .product-story__progress {
    justify-content: flex-start;
  }

  .product-story__stage {
    width: 100%;
  }

  [dir="rtl"] .product-story__copy {
    text-align: right;
  }

  [dir="rtl"] .product-story__chapter {
    align-items: flex-end;
  }

  [dir="rtl"] .product-story__progress {
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .product-story__track {
    height: 420vh;
  }

  .product-story__sticky {
    padding: 5rem 1rem 1.25rem;
    gap: 1.35rem;
    min-height: 0;
    max-height: none;
  }

  .product-story__chapters {
    min-height: 7.25rem;
  }

  .product-story__chapter h2 {
    max-width: 14ch;
  }

  .product-story__device {
    border-radius: 0.85rem;
  }

  .product-story__frames {
    aspect-ratio: 16 / 11;
  }

  .product-story__glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-story__track {
    height: auto;
  }

  .product-story__sticky {
    position: relative;
    height: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-block: var(--section-gap);
  }

  .product-story__chapters {
    min-height: 0;
  }

  .product-story__chapter {
    position: relative;
    inset: auto;
    opacity: 0;
    transform: none;
    transition: none;
    display: none;
  }

  .product-story__chapter.is-active {
    display: flex;
    opacity: 1;
  }

  .product-story__frame {
    transition: none;
  }

  .product-story__device {
    transform: none;
  }

  .sales-hero__blob,
  .sales-cta-band__orb {
    animation: none;
  }

  .sales-timeline__step::before {
    transition: none;
  }
}

/* ─── Contact Sales page ─── */
.sales-hero {
  position: relative;
  background: var(--surface-hero);
  border-bottom: 1px solid rgba(230, 233, 239, 0.8);
  overflow: hidden;
}

.sales-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sales-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.75;
  animation: sales-blob-drift 14s ease-in-out infinite;
}

.sales-hero__blob--1 {
  width: 460px;
  height: 460px;
  top: -120px;
  right: -80px;
  background: rgba(196, 22, 28, 0.22);
}

.sales-hero__blob--2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: -60px;
  background: rgba(255, 183, 77, 0.28);
  animation-delay: -6s;
}

@keyframes sales-blob-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -16px); }
}

.sales-section {
  position: relative;
  padding-block: var(--section-gap);
  background: var(--surface-section);
  overflow: hidden;
}

.sales-section--soft {
  background: var(--surface-soft);
  border-block: 1px solid rgba(230, 233, 239, 0.85);
}

.sales-section--soft::before,
.sales-section--soft::after,
.pricing-section--soft::before,
.pricing-section--soft::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(52px);
  opacity: 0.8;
  z-index: 0;
}

.sales-section--soft::before,
.pricing-section--soft::before {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(196, 22, 28, 0.12) 0%, transparent 70%);
}

.sales-section--soft::after,
.pricing-section--soft::after {
  width: min(360px, 48vw);
  height: min(360px, 48vw);
  bottom: -18%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 183, 77, 0.14) 0%, transparent 70%);
}

.sales-section > *,
.pricing-section > * {
  position: relative;
  z-index: 1;
}

.sales-why-grid {
  display: grid;
  gap: 1.125rem;
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
}

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

.sales-why-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid #e6e9ef;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo);
}

@media (hover: hover) and (pointer: fine) {
  .sales-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
  }
}

.sales-why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.sales-why-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.sales-why-card__icon--coral { background: #fff0f0; color: var(--color-accent); }
.sales-why-card__icon--sky { background: #eef6ff; color: #2563eb; }
.sales-why-card__icon--mint { background: #eefbf3; color: #059669; }

.sales-why-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-navy);
}

.sales-why-card__body {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.sales-form-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .sales-form-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}

.sales-form-panel {
  padding: 1.75rem;
  border-radius: var(--radius-2xl);
  border: 1px solid #e6e9ef;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .sales-form-panel {
    padding: 2rem 2.25rem;
  }
}

.sales-form-panel__title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.sales-form {
  margin-top: 1.5rem;
}

.sales-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.sales-form-error {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid #fecaca;
  background: #fef2f2;
  font-size: 0.875rem;
  color: #b91c1c;
}

.sales-form__submit.is-loading {
  opacity: 0.75;
  cursor: wait;
}

.sales-form__grid {
  display: grid;
  gap: 1rem;
}

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

.sales-field--full {
  grid-column: 1 / -1;
}

.sales-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.sales-required {
  color: var(--color-accent);
}

.sales-input,
.sales-select,
.sales-textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-navy);
  background: #fff;
  border: 1px solid #d8dee8;
  border-radius: var(--radius-md);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.sales-input:focus,
.sales-select:focus,
.sales-textarea:focus {
  outline: none;
  border-color: rgba(196, 22, 28, 0.45);
  box-shadow: 0 0 0 3px rgba(196, 22, 28, 0.1);
}

.sales-input.is-invalid,
.sales-select.is-invalid,
.sales-textarea.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.sales-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.25rem;
}

.sales-textarea {
  resize: vertical;
  min-height: 7rem;
}

.sales-field-error {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: #dc2626;
}

.sales-form__submit {
  margin-top: 1.25rem;
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.5rem;
}

@media (min-width: 640px) {
  .sales-form__submit {
    width: auto;
  }
}

.sales-form-success {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-2xl);
  border: 1px solid #c8efd8;
  background: linear-gradient(145deg, #f0fdf4 0%, #fff 100%);
  text-align: center;
}

.sales-form-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #059669;
  color: #fff;
}

.sales-form-success__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.sales-form-success__title {
  margin-top: 1rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-navy);
}

.sales-form-success__body {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
  max-width: 28rem;
  margin-inline: auto;
}

.sales-form-success__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.sales-form-success__feedback {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #059669;
}

.sales-sidebar {
  padding: 1.75rem;
  border-radius: var(--radius-2xl);
  border: 1px solid #e6e9ef;
  background: linear-gradient(160deg, #fafbfc 0%, #fff 100%);
  box-shadow: var(--shadow-soft);
}

.sales-sidebar__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
}

.sales-sidebar__desc {
  margin-top: 0.65rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
}

.sales-sidebar__list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.sales-sidebar__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
}

.sales-sidebar__list li + li {
  margin-top: 0.75rem;
}

.sales-sidebar__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1rem;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.12);
  color: #059669;
  flex-shrink: 0;
}

.sales-sidebar__check svg {
  width: 0.75rem;
  height: 0.75rem;
}

.sales-timeline {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  counter-reset: sales-step;
}

@media (min-width: 768px) {
  .sales-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.sales-timeline__step {
  position: relative;
  padding: 1.25rem 1rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e6e9ef;
  background: #fff;
  text-align: center;
}

@media (min-width: 768px) {
  .sales-timeline__step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: -0.55rem;
    width: calc(100% - 2rem);
    height: 2px;
    background: linear-gradient(90deg, rgba(196, 22, 28, 0.35), rgba(196, 22, 28, 0.08));
    z-index: 0;
    transform-origin: left center;
    transform: translateX(50%) scaleX(0);
    transition: transform 0.8s var(--ease-out-expo);
  }

  .sales-timeline__step.is-visible:not(:last-child)::after {
    transform: translateX(50%) scaleX(1);
  }
}

.sales-timeline__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(196, 22, 28, 0.1);
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 800;
}

.sales-timeline__text {
  margin-top: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
  font-weight: 500;
}

.sales-cta-band {
  position: relative;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 45%, #2a1214 100%);
  overflow: hidden;
}

.sales-cta-band__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sales-cta-band__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: sales-blob-drift 16s ease-in-out infinite;
}

.sales-cta-band__orb--1 {
  width: 360px;
  height: 360px;
  top: -80px;
  left: 10%;
  background: rgba(196, 22, 28, 0.25);
}

.sales-cta-band__orb--2 {
  width: 280px;
  height: 280px;
  bottom: -60px;
  right: 8%;
  background: rgba(99, 102, 241, 0.15);
  animation-delay: -8s;
}

.sales-cta-band .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.sales-cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

/* ─── Pricing page ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pricing-hero {
  position: relative;
  background: var(--surface-hero);
  border-bottom: 1px solid rgba(230, 233, 239, 0.8);
  overflow: hidden;
}

.pricing-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pricing-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.75;
  animation: sales-blob-drift 14s ease-in-out infinite;
}

.pricing-hero__blob--1 {
  width: 440px;
  height: 440px;
  top: -100px;
  left: -80px;
  background: rgba(196, 22, 28, 0.22);
}

.pricing-hero__blob--2 {
  width: 360px;
  height: 360px;
  bottom: -80px;
  right: -60px;
  background: rgba(255, 183, 77, 0.28);
  animation-delay: -7s;
}

.pricing-section {
  position: relative;
  padding-block: var(--section-gap);
  background: var(--surface-section);
  overflow: hidden;
}

.pricing-section--soft {
  background: var(--surface-soft);
  border-block: 1px solid rgba(230, 233, 239, 0.85);
}

.pricing-included-grid {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
}

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

.pricing-included-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e6e9ef;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo);
}

@media (hover: hover) and (pointer: fine) {
  .pricing-included-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
  }
}

.pricing-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.12);
  flex-shrink: 0;
}

.pricing-check::after {
  content: '';
  display: block;
  width: 0.28rem;
  height: 0.5rem;
  border: solid #059669;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -0.12rem;
}

.pricing-cards {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid #e6e9ef;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo);
}

@media (hover: hover) and (pointer: fine) {
  .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
  }
}

.pricing-card--free {
  background: linear-gradient(180deg, #fafbfc 0%, #fff 42%);
}

.pricing-card--featured {
  border-color: rgba(196, 22, 28, 0.28);
  background: linear-gradient(160deg, #fff 0%, #fff8f8 100%);
  box-shadow: 0 20px 50px -20px rgba(196, 22, 28, 0.2);
  z-index: 1;
}

.pricing-azadi-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 1.75rem;
  max-width: 52rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(1, 65, 28, 0.18);
  background:
    linear-gradient(135deg, rgba(1, 65, 28, 0.08) 0%, rgba(20, 120, 60, 0.12) 45%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: 0 12px 32px -18px rgba(1, 65, 28, 0.35);
}

.pricing-azadi-banner__flag {
  width: 4.5rem;
  height: auto;
  border-radius: 0.35rem;
  box-shadow: 0 4px 14px rgba(1, 65, 28, 0.25);
  flex-shrink: 0;
}

.pricing-azadi-banner__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #01411c;
}

.pricing-azadi-banner__title {
  margin-top: 0.2rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #013417;
  line-height: 1.3;
}

.pricing-card--azadi {
  border-color: rgba(1, 65, 28, 0.35);
  background: linear-gradient(165deg, #f3faf5 0%, #ffffff 48%, #eef8f1 100%);
  box-shadow: 0 22px 48px -22px rgba(1, 65, 28, 0.35);
}

.pricing-card__badge--azadi {
  background: #01411c;
  color: #fff;
}

.pricing-card__amount--free {
  color: #01411c;
}

.pricing-card__was {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.pricing-card__was s {
  color: #94a3b8;
  text-decoration-thickness: 1.5px;
}

.pricing-card__was-label {
  margin-inline-end: 0.3rem;
  font-weight: 600;
}

.pricing-card__cta--azadi {
  background: #01411c !important;
  color: #fff !important;
  box-shadow: 0 8px 22px -8px rgba(1, 65, 28, 0.55);
}

.pricing-card__cta--azadi:hover {
  background: #02692d !important;
  color: #fff !important;
  box-shadow: 0 10px 26px -8px rgba(1, 65, 28, 0.6);
}

.pricing-card__teaser--azadi {
  border-color: rgba(1, 65, 28, 0.2);
  background: linear-gradient(135deg, rgba(1, 65, 28, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.pricing-card__flag {
  width: 2.5rem;
  height: auto;
  border-radius: 0.25rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(1, 65, 28, 0.2);
}

.pricing-card__teaser--azadi .pricing-card__teaser-title {
  color: #01411c;
}

@media (max-width: 640px) {
  .pricing-azadi-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .pricing-card--featured {
    transform: scale(1.02);
  }

  @media (hover: hover) and (pointer: fine) {
    .pricing-card--featured:hover {
      transform: scale(1.02) translateY(-4px);
    }
  }
}

.pricing-card__badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

html[dir='rtl'] .pricing-card__badge {
  right: auto;
  left: 1.1rem;
}

.pricing-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  padding-right: 5.5rem;
}

html[dir='rtl'] .pricing-card__name {
  padding-right: 0;
  padding-left: 5.5rem;
}

.pricing-card--free .pricing-card__name,
.pricing-card--enterprise .pricing-card__name {
  padding-right: 0;
  padding-left: 0;
}

.pricing-card__price {
  margin-top: 0.65rem;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.55rem;
}

.pricing-card__amount {
  display: inline-block;
}

.pricing-card__price-note {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0;
}

.pricing-card__seats,
.pricing-card__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
  min-height: 2.7em;
}

.pricing-card__cta {
  margin-top: 1.75rem;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.pricing-card__cta--early {
  margin-top: 1.15rem;
  margin-bottom: 0;
}

.pricing-card__teaser {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1.15rem;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e6e9ef;
  background: #fff;
}

.pricing-card__teaser--locked {
  background: #f4f5f8;
  border-color: transparent;
  color: #64748b;
}

.pricing-card__teaser--pro {
  border-color: rgba(196, 22, 28, 0.18);
  background: linear-gradient(135deg, #fff8f8 0%, #fff 100%);
}

.pricing-card__teaser--ent {
  background: #f8fafc;
}

.pricing-card__teaser-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  color: #64748b;
  background: rgba(100, 116, 139, 0.1);
}

.pricing-card__teaser--pro .pricing-card__teaser-icon {
  color: var(--color-accent);
  background: rgba(196, 22, 28, 0.1);
}

.pricing-card__teaser--ent .pricing-card__teaser-icon {
  color: var(--color-navy);
  background: rgba(26, 26, 26, 0.08);
}

.pricing-card__teaser-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}

.pricing-card__teaser--locked .pricing-card__teaser-title {
  color: #64748b;
}

.pricing-card__teaser-body {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #64748b;
}

.pricing-card__includes {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-navy);
}

.pricing-card__features {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pricing-card__features li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
}

.pricing-card__features li + li {
  margin-top: 0.55rem;
}

.pricing-card__features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 800;
}

html[dir='rtl'] .pricing-card__features li {
  padding-left: 0;
  padding-right: 1.35rem;
}

html[dir='rtl'] .pricing-card__features li::before {
  left: auto;
  right: 0;
}

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid #e6e9ef;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.pricing-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.pricing-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  color: var(--color-navy);
  background: var(--color-bg-soft);
  border-bottom: 1px solid #e6e9ef;
}

.pricing-table thead th:not(:first-child) {
  text-align: center;
  width: 8rem;
}

.pricing-table tbody th {
  padding: 0.85rem 1.25rem;
  text-align: left;
  font-weight: 500;
  color: #475569;
  border-bottom: 1px solid #eef0f6;
}

.pricing-table tbody td {
  padding: 0.85rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid #eef0f6;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table__yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-inline: auto;
}

.pricing-table__yes::after {
  content: '';
  display: block;
  width: 0.3rem;
  height: 0.55rem;
  border: solid #059669;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -0.1rem;
}

.pricing-table__no {
  display: inline-block;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
}

.pricing-table__no::after {
  content: '\2014';
}

.pricing-roi-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .pricing-roi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.pricing-roi-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid #e6e9ef;
}

.pricing-roi-card--before {
  background: #fafafa;
}

.pricing-roi-card--after {
  background: linear-gradient(145deg, #fff5f5 0%, #fff 100%);
  border-color: rgba(196, 22, 28, 0.12);
}

.pricing-roi-card__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-roi-card--before .pricing-roi-card__heading {
  color: #64748b;
}

.pricing-roi-card--after .pricing-roi-card__heading {
  color: var(--color-accent);
}

.pricing-roi-card__list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.pricing-roi-card__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
}

.pricing-roi-card__list li + li {
  margin-top: 0.5rem;
}

.pricing-roi-card--before .pricing-roi-card__list li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
}

.pricing-roi-card--after .pricing-roi-card__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 800;
}

html[dir='rtl'] .pricing-roi-card__list li {
  padding-left: 0;
  padding-right: 1.35rem;
}

html[dir='rtl'] .pricing-roi-card__list li::before {
  left: auto;
  right: 0;
}

body.lang-ur .pricing-card__desc,
body.lang-ur .pricing-card__seats,
body.lang-ur .pricing-card__teaser-body,
body.lang-ur .pricing-included-card,
body.lang-ur .pricing-roi-card__list li {
  line-height: 1.9;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-hero__blob {
    animation: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .pricing-included-card:hover,
  .pricing-card:hover,
  .pricing-card--featured {
    transform: none;
  }
}

body.lang-ur .sales-why-card__body,
body.lang-ur .sales-sidebar__desc,
body.lang-ur .sales-timeline__text,
body.lang-ur .sales-form-success__body {
  line-height: 1.9;
}

@media (hover: none), (pointer: coarse) {
  .sales-why-card:hover {
    transform: none;
  }
}

/* ─── Footer (premium SaaS close) ─── */
.site-footer {
  position: relative;
  margin-top: 0;
  padding-top: 0;
  /* Soft blend from page into footer — submerged, not a hard cut */
  background:
    linear-gradient(
      180deg,
      #eef0f6 0%,
      #c5c8d1 7%,
      #3a3a40 16%,
      #1a1a1a 26%,
      var(--color-navy-dark) 34%,
      var(--color-navy-dark) 100%
    );
  overflow: hidden;
  color: #94a3b8;
}

.footer-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-atmosphere__glow {
  position: absolute;
  left: 50%;
  top: 6%;
  width: min(48rem, 88vw);
  height: 20rem;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(196, 22, 28, 0.18) 0%,
    rgba(196, 22, 28, 0.05) 40%,
    transparent 72%
  );
  filter: blur(12px);
}

.footer-atmosphere__grid {
  position: absolute;
  inset: 0;
  top: 12%;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 68% 46% at 50% 16%, #000 12%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 68% 46% at 50% 16%, #000 12%, transparent 70%);
}

.footer-shell {
  position: relative;
  z-index: 1;
  max-width: 68rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 1.5rem;
}

/* CTA bridge — wide & elegant, not tall */
.footer-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.045);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.055) 0%,
      rgba(255, 255, 255, 0.018) 38%,
      rgba(255, 255, 255, 0.01) 100%
    ),
    rgba(12, 12, 14, 0.42);
  box-shadow:
    0 28px 56px -36px rgba(0, 0, 0, 0.7),
    0 8px 24px -16px rgba(0, 0, 0, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 -1px 0 rgba(0, 0, 0, 0.25) inset;
  overflow: hidden;
  isolation: isolate;
}

@media (min-width: 800px) {
  .footer-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.75rem 2.5rem;
  }
}

/* Soft radial red glow inside the card */
.footer-cta__glow {
  position: absolute;
  left: 18%;
  bottom: -55%;
  z-index: 0;
  width: min(28rem, 70%);
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(196, 22, 28, 0.28) 0%,
    rgba(196, 22, 28, 0.08) 42%,
    transparent 72%
  );
  filter: blur(28px);
  pointer-events: none;
}

/* Soft top light — physical object under overhead light */
.footer-cta__sheen {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(255, 255, 255, 0.02) 18%,
      transparent 42%
    ),
    radial-gradient(
      ellipse 80% 55% at 50% -10%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 60%
    );
}

/* Tiny grain / noise */
.footer-cta__grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* Oversized wordmark — subtle texture, clipped at edges */
.footer-cta__mega {
  position: absolute;
  top: 50%;
  left: -2%;
  z-index: 0;
  margin: 0;
  padding: 0;
  transform: translate3d(0, -50%, 0);
  font-size: clamp(5.25rem, 10.5vw, 7.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.045);
  filter: blur(0.4px);
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 78%,
    transparent 96%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 78%,
    transparent 96%
  );
  animation: footer-mega-drift 32s ease-in-out infinite;
  will-change: transform;
}

@keyframes footer-mega-drift {
  0%,
  100% {
    transform: translate3d(0, -50%, 0);
  }
  50% {
    transform: translate3d(10px, -50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-cta__mega {
    animation: none;
  }
}

.footer-cta__copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  flex: 1 1 auto;
}

.footer-cta__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.28;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.footer-cta__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-inline-start: 0;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 4px 16px -8px rgba(0, 0, 0, 0.35);
  transition:
    transform 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    color 300ms ease;
}

@media (min-width: 800px) {
  .footer-cta__btn {
    align-self: center;
  }
}

.footer-cta__btn:hover {
  background: var(--color-accent);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 12px 28px -14px rgba(196, 22, 28, 0.55),
    0 4px 12px -6px rgba(196, 22, 28, 0.35);
}

.footer-cta__btn-arrow {
  transition: transform 300ms ease;
}

.footer-cta__btn:hover .footer-cta__btn-arrow {
  transform: translateX(3px);
}

/* Main grid */
.footer-main {
  display: grid;
  gap: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

@media (min-width: 900px) {
  .footer-main {
    grid-template-columns: minmax(13rem, 0.95fr) minmax(0, 1.35fr);
    gap: 2rem 3rem;
    align-items: start;
  }
}

.footer-brand__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: opacity 300ms ease;
}

.footer-brand__link:hover {
  opacity: 0.92;
}

.footer-brand__logo {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  transition: transform 300ms ease;
}

.footer-brand__link:hover .footer-brand__logo {
  transform: scale(1.05);
}

.footer-brand__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-brand__tagline {
  margin: 0.75rem 0 0;
  max-width: 17rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #7b8798;
}

.footer-brand__ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  padding: 0.375rem 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #cbd5e1;
  text-decoration: none;
  transition: color 300ms ease, gap 300ms ease;
}

.footer-brand__ghost::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.footer-brand__ghost:hover {
  color: #fff;
  gap: 0.5rem;
}

.footer-brand__ghost:hover::after {
  transform: scaleX(1);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.5rem;
}

@media (min-width: 640px) {
  .footer-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2rem;
  }
}

.footer-col__title {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.footer-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.625rem;
}

.footer-col__list a {
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 450;
  color: #7b8798;
  text-decoration: none;
  transition: color 300ms ease;
}

.footer-col__list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.footer-col__list a:hover {
  color: #e8eef6;
}

.footer-col__list a:hover::after {
  transform: scaleX(1);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.footer-bottom__copy {
  margin: 0;
  font-size: 0.75rem;
  color: #7b8798;
  white-space: nowrap;
}

.footer-bottom__disclaimer {
  margin: 0;
  max-width: 30rem;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: #556070;
}

body.lang-ur .footer-cta__title,
body.lang-ur .footer-brand__tagline,
body.lang-ur .footer-col__title,
body.lang-ur .footer-col__list a,
body.lang-ur .footer-bottom {
  font-family: 'Noto Nastaliq Urdu', Inter, sans-serif;
  line-height: 1.85;
}

body.lang-ur .footer-bottom__copy {
  white-space: normal;
}

/* Legacy CTA band (other pages) */
.footer-cta-band {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1518 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta-band .btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.footer-cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

/* ─── Download page ─── */
.dl-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 15% 0%, rgba(196, 22, 28, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 5%, rgba(255, 183, 77, 0.16), transparent 50%),
    radial-gradient(ellipse 55% 40% at 50% 70%, rgba(99, 102, 241, 0.08), transparent 55%);
}

.dl-card {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.45s var(--ease-out-expo), transform 0.45s var(--ease-out-expo);
}

.dl-card:hover {
  box-shadow: var(--shadow-lift);
}

/* ─── Scroll reveal & motion ─── */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translate3d(0, var(--motion-reveal-y), 0);
    transition:
      opacity var(--motion-duration) var(--ease-out-expo),
      transform var(--motion-duration) var(--ease-out-expo);
    transition-delay: var(--d, 0ms);
  }

  [data-reveal='scale'] {
    transform: translate3d(0, var(--motion-reveal-y), 0) scale(0.955);
  }

  [data-reveal='zoom'] {
    transform: translate3d(0, var(--motion-reveal-y), 0) scale(0.975);
    overflow: hidden;
  }

  [data-reveal='fade'] {
    transform: none;
  }

  [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  [data-reveal='scale'].is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  [data-reveal='zoom'].is-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }

  [data-reveal='zoom'] img,
  .reveal-media {
    overflow: hidden;
  }

  [data-reveal='zoom'] img,
  .reveal-media img {
    transform: scale(var(--motion-img-zoom));
    transition: transform 1.35s var(--ease-out-expo);
    transition-delay: calc(var(--d, 0ms) + 120ms);
  }

  [data-reveal='zoom'].is-visible img,
  [data-reveal].is-visible .reveal-media img {
    transform: scale(1);
  }

  .reveal-media img.is-tab-zoom {
    animation: media-zoom-in 1.15s var(--ease-out-expo) forwards;
  }

  @keyframes media-zoom-in {
    from { transform: scale(var(--motion-img-zoom)); }
    to { transform: scale(1); }
  }

  [data-count] {
    font-variant-numeric: tabular-nums;
  }

  .hero-mesh {
    transition: transform 0.1s linear;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  [data-count] {
    font-variant-numeric: tabular-nums;
  }

  .hero-mesh__blob,
  .section-alt::before,
  .section-alt::after {
    animation: none !important;
  }

  .product-mockup {
    animation: none !important;
  }
}

/* ─── Main content entrance ─── */
main {
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo) 0.1s;
}

body.is-ready main {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  main {
    opacity: 1;
    transition: none;
  }

  .animate-pulse {
    animation: none;
  }
}

/* ─── Urdu typography ─── */
body.lang-ur {
  font-family: 'Noto Nastaliq Urdu', Inter, system-ui, sans-serif;
}

body.lang-ur .saas-display,
body.lang-ur .saas-headline {
  line-height: 1.55;
  letter-spacing: 0;
}

body.lang-ur p,
body.lang-ur li,
body.lang-ur .faq-answer,
body.lang-ur .saas-lead {
  line-height: 2.1;
}

body.lang-ur .section-label,
body.lang-ur .hero-badge,
body.lang-ur .partner-showcase__label,
body.lang-ur .partner-showcase__regional {
  line-height: 1.9;
}

body.lang-ur .stat-card__label,
body.lang-ur .product-tour__caption {
  line-height: 1.9;
}

body.lang-ur .marquee-item {
  line-height: 1.6;
  letter-spacing: 0;
}

body.lang-ur .success-card__quote,
body.lang-ur .success-card__stat-label {
  line-height: 1.85;
}

body.lang-ur .autofill-row__label,
body.lang-ur .autofill-section,
body.lang-ur .autofill-float__text {
  line-height: 1.85;
}

/* ─── Legacy aliases ─── */
.glass-card {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

/* ─── Mobile performance ─── */
@media (hover: none), (pointer: coarse) {
  .product-mockup {
    animation: none;
  }

  .hero-mesh__blob,
  .section-alt::before,
  .section-alt::after {
    animation: none;
  }

  .feature-card:hover,
  .saas-card:hover,
  .step-card:hover,
  .stat-card:hover,
  .success-card:hover,
  .dl-card:hover {
    transform: none;
  }

  .feature-card:hover .feature-card__icon {
    transform: none;
  }

  .step-card:hover .step-num {
    transform: none;
  }

  .success-card:hover .reveal-media img {
    transform: none;
  }

  .product-story__device {
    transform: none;
  }
}

body.is-mobile .site-header {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ─── Privacy Policy ─── */
.privacy-hero {
  position: relative;
  overflow: hidden;
  background: var(--surface-hero);
  border-bottom: 1px solid rgba(230, 233, 239, 0.8);
}

.privacy-hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.privacy-hero__blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.75;
}

.privacy-hero__blob--1 {
  width: 380px;
  height: 380px;
  top: -80px;
  right: -40px;
  background: rgba(196, 22, 28, 0.22);
}

.privacy-hero__blob--2 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  left: -60px;
  background: rgba(255, 183, 77, 0.26);
}

.privacy-layout__grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .privacy-layout__grid {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 3.5rem;
  }
}

.privacy-toc {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-xl);
  border: 1px solid #e6e9ef;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 1024px) {
  .privacy-toc {
    position: sticky;
    top: 5.75rem;
  }
}

.privacy-toc__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

.privacy-toc__list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.15rem;
}

.privacy-toc__link {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
  transition: color 0.2s ease, background 0.2s ease;
}

.privacy-toc__link:hover {
  color: var(--color-navy);
  background: #f8fafc;
}

.privacy-toc__link.is-active {
  color: var(--color-accent);
  background: rgba(196, 22, 28, 0.06);
  font-weight: 600;
}

.privacy-content {
  display: grid;
  gap: 2rem;
}

.privacy-section {
  scroll-margin-top: 6rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid #e6e9ef;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
  .privacy-section {
    padding: 2rem 2.25rem;
  }
}

.privacy-section__title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.privacy-section__lead,
.privacy-section__text {
  margin-top: 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
}

.privacy-section__text + .privacy-section__text {
  margin-top: 0.65rem;
}

.privacy-card-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .privacy-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.privacy-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid #eef0f6;
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #334155;
}

.privacy-card--wide {
  grid-column: 1 / -1;
}

.privacy-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.12);
  color: #059669;
  font-size: 0.6875rem;
  font-weight: 800;
  flex-shrink: 0;
}

.privacy-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.55rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}

.privacy-list li::marker {
  color: #059669;
}

.privacy-section--trust {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.privacy-trust {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(196, 22, 28, 0.18);
  background: linear-gradient(145deg, #fff 0%, #fff8f8 55%, #fff 100%);
  box-shadow: 0 20px 50px -28px rgba(196, 22, 28, 0.25);
}

@media (min-width: 640px) {
  .privacy-trust {
    padding: 2.25rem 2.5rem;
  }
}

.privacy-trust__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(196, 22, 28, 0.1);
  color: var(--color-accent);
}

.privacy-trust__badge svg {
  width: 1.45rem;
  height: 1.45rem;
}

.privacy-list--trust {
  margin-top: 1.15rem;
}

.privacy-section--contact {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.privacy-contact-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid #e6e9ef;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

@media (min-width: 640px) {
  .privacy-contact-card {
    padding: 2.5rem;
  }
}

.privacy-contact-card__email {
  margin: 1.25rem 0 1.5rem;
  display: grid;
  gap: 0.35rem;
}

.privacy-contact-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.privacy-contact-card__email a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  transition: color 0.2s ease;
}

.privacy-contact-card__email a:hover {
  color: var(--color-accent);
}

@media (prefers-reduced-motion: reduce) {
  .privacy-hero__blob {
    animation: none;
  }
}

/* ─── User Guide ─── */
.guide-content {
  display: grid;
  gap: 2rem;
}

.guide-chapter {
  scroll-margin-top: 6rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid #e6e9ef;
  background: #fff;
  box-shadow: var(--shadow-soft);
  opacity: 1;
  transform: none;
}

@media (min-width: 640px) {
  .guide-chapter {
    padding: 2rem 2.25rem;
  }
}

.guide-chapter__title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.guide-chapter__intro {
  margin-top: 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
}

.guide-steps {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.75rem;
}

.guide-step {
  display: grid;
  gap: 0.85rem;
}

.guide-step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  padding-inline: 0.45rem;
  border-radius: 999px;
  background: rgba(196, 22, 28, 0.1);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 800;
}

.guide-shot__frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid #dbe1ea;
  background: #f8fafc;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.06),
    0 12px 32px -18px rgba(15, 23, 42, 0.35);
}

.guide-shot__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.guide-shot__caption {
  margin-top: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}

.guide-step__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
}

/* ─── Pakistan Independence announcement bar ─── */
.azadi-announce {
  --azadi-green: #0b6b3a;
  --azadi-green-deep: #095530;
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #0d7541 0%, var(--azadi-green) 55%, var(--azadi-green-deep) 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.azadi-announce.is-hiding {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.azadi-announce__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  min-height: 2.75rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.55rem 2.75rem 0.55rem 1rem;
  box-sizing: border-box;
}

.azadi-announce__msg {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  max-width: 52rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-align: center;
  color: rgba(255, 255, 255, 0.96);
}

.azadi-announce__flag {
  flex-shrink: 0;
  font-size: 0.95rem;
  line-height: 1;
}

.azadi-announce__short {
  display: none;
}

.azadi-announce__cta {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 1px;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.azadi-announce__cta:hover {
  border-bottom-color: #fff;
  opacity: 0.95;
}

.azadi-announce__close {
  position: absolute;
  top: 50%;
  right: 0.65rem;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0.35rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.azadi-announce__close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

@media (max-width: 720px) {
  .azadi-announce__full {
    display: none;
  }

  .azadi-announce__short {
    display: inline;
  }

  .azadi-announce__inner {
    min-height: 2.5rem;
    padding: 0.5rem 2.5rem 0.5rem 0.75rem;
    gap: 0.4rem 0.65rem;
  }

  .azadi-announce__msg {
    font-size: 0.75rem;
  }

  .azadi-announce__cta {
    font-size: 0.75rem;
  }
}

@media (max-width: 420px) {
  .azadi-announce__cta {
    display: none;
  }

  .azadi-announce__msg {
    font-size: 0.72rem;
    line-height: 1.4;
  }
}

body.lang-ur .azadi-announce__msg,
body.lang-ur .azadi-announce__cta {
  font-family: 'Noto Nastaliq Urdu', Inter, sans-serif;
  line-height: 1.7;
}

html[dir='rtl'] .azadi-announce__inner {
  padding: 0.55rem 1rem 0.55rem 2.75rem;
}

html[dir='rtl'] .azadi-announce__close {
  right: auto;
  left: 0.65rem;
}
