:root,
[data-theme="light"] {
  color-scheme: light;
  --primary: #0052ff;
  --primary-hover: #0046db;
  --primary-rgb: 0, 82, 255;
  --accent: #ff6b5c;
  --accent-rgb: 255, 107, 92;
  --text: #0b1f3a;
  --text-secondary: rgba(11, 31, 58, 0.72);
  --text-muted: rgba(11, 31, 58, 0.5);
  --bg: #f6faff;
  --surface: #ffffff;
  --surface-hover: #ebf2ff;
  --border: rgba(11, 31, 58, 0.1);
  --shadow: rgba(11, 31, 58, 0.08);
  --header-bg: rgba(246, 250, 255, 0.88);
  --blob-opacity: 0.14;
  --on-brand: #ffffff;
  --font-latin: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-bengali: "Hind Siliguri", sans-serif;

  /* Mockup specific variables (light) */
  --brand-primary: var(--primary);
  --brand-primary-light: #5c94ff;
  --brand-accent: var(--accent);
  --brand-primary-hover: var(--primary-hover);
  --brand-primary-rgb: var(--primary-rgb);
  --brand-primary-light-rgb: 92, 148, 255;
  --brand-accent-rgb: var(--accent-rgb);
  --brand-text-rgb: 11, 31, 58;
  --glass-border: var(--border);
  --shadow-color: var(--shadow);
  --brand-gradient: linear-gradient(135deg, var(--primary), var(--primary-hover));

  --app-screen-bg: #f6faff;
  --app-surface: #ffffff;
  --app-elevated: #ffffff;
  --app-text: #0b1f3a;
  --app-text-secondary: rgba(11, 31, 58, 0.85);
  --app-text-muted: rgba(11, 31, 58, 0.55);
  --app-stroke-soft: rgba(11, 31, 58, 0.08);
  --app-fill: rgba(11, 31, 58, 0.08);
  --app-fill-soft: rgba(11, 31, 58, 0.04);
  --phone-chrome-top: #152e4d;
  --phone-chrome-bottom: #0b1f3a;
  --mesh-blend: soft-light;
}

[data-theme="dark"] {
  color-scheme: dark;
  --primary: #3d84ff;
  --primary-hover: #5c94ff;
  --primary-rgb: 61, 132, 255;
  --text: #f6faff;
  --text-secondary: rgba(246, 250, 255, 0.78);
  --text-muted: rgba(246, 250, 255, 0.48);
  --bg: #071222;
  --surface: #0f2340;
  --surface-hover: #152c4d;
  --border: rgba(246, 250, 255, 0.1);
  --shadow: rgba(0, 0, 0, 0.28);
  --header-bg: rgba(7, 18, 34, 0.82);
  --blob-opacity: 0.22;

  /* Mockup specific variables (dark) */
  --brand-primary: var(--primary);
  --brand-primary-light: #5c94ff;
  --brand-accent: #ff6b5c;
  --brand-primary-hover: var(--primary-hover);
  --brand-primary-rgb: var(--primary-rgb);
  --brand-primary-light-rgb: 92, 148, 255;
  --brand-accent-rgb: 255, 107, 92;
  --brand-text-rgb: 246, 250, 255;
  --glass-border: var(--border);
  --shadow-color: var(--shadow);
  --brand-gradient: linear-gradient(135deg, var(--primary), var(--primary-hover));

  --app-screen-bg: #0b1f3a;
  --app-surface: rgba(255, 255, 255, 0.1);
  --app-elevated: rgba(255, 255, 255, 0.13);
  --app-text: #f6faff;
  --app-text-secondary: rgba(246, 250, 255, 0.9);
  --app-text-muted: rgba(246, 250, 255, 0.62);
  --app-stroke-soft: rgba(255, 255, 255, 0.08);
  --app-fill: rgba(255, 255, 255, 0.08);
  --app-fill-soft: rgba(255, 255, 255, 0.04);
  --phone-chrome-top: #152e4d;
  --phone-chrome-bottom: #0b1f3a;
  --mesh-blend: screen;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: var(--font-latin);
  color: var(--text);
  background: var(--bg);
  transition: background 220ms ease, color 220ms ease;
  overflow-x: hidden;
}

html[lang="bn"] body {
  font-family: var(--font-bengali);
}

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

.mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.mesh::before,
.mesh::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: var(--blob-opacity);
}

.mesh::before {
  top: -12%;
  left: -8%;
  width: 52vw;
  height: 52vw;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.9), transparent 70%);
}

.mesh::after {
  right: -10%;
  bottom: 10%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.75), transparent 70%);
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img,
.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-logo .logo-main {
  fill: var(--primary);
  transition: fill 220ms ease;
}

.brand-logo .logo-dot {
  fill: var(--accent);
  transition: fill 220ms ease;
}

.footer-brand .brand-logo {
  width: 24px;
  height: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn,
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-secondary);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.icon-btn {
  width: 38px;
  padding: 0;
}

.icon-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-btn .icon-moon,
[data-theme="dark"] .icon-btn .icon-sun {
  display: none;
}

[data-theme="dark"] .icon-btn .icon-moon {
  display: block;
}

.lang-btn .active {
  color: var(--primary);
}

.nav-cta {
  display: none;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--on-brand);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.hero {
  padding: 56px 0 32px;
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(var(--accent-rgb), 0.18);
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

html[lang="en"] h1 {
  letter-spacing: -0.025em;
}

.tagline {
  margin: 0;
  max-width: 56ch;
  color: var(--text-secondary);
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  line-height: 1.65;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 8px 24px var(--shadow);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.stat-pill strong {
  color: var(--text);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 14px;
}

.module-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

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

@media (min-width: 900px) {
  .module-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

.module-card {
  padding: 26px 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), border-color 250ms ease, box-shadow 250ms ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.module-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--mod-color) 45%, var(--border));
  box-shadow: 0 16px 40px color-mix(in srgb, var(--mod-color) 12%, transparent);
}

.module-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--mod-color) 12%, transparent);
  color: var(--mod-color);
  transition: background 250ms ease, color 250ms ease, transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.module-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 250ms ease;
}

.module-card:hover .module-icon {
  background: var(--mod-color);
  color: var(--on-brand);
  transform: scale(1.05);
}

.module-card:hover .module-icon svg {
  transform: scale(1.1);
}

.module-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 600;
}

.module-card span {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.5;
}

.section {
  padding: 28px 0 56px;
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.section-label {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  max-width: 62ch;
  color: var(--text-secondary);
  line-height: 1.6;
}

.apps-grid {
  display: grid;
  gap: 16px;
}

.app-card {
  display: grid;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 12px 32px var(--shadow);
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), border-color 250ms ease, box-shadow 250ms ease;
}

.app-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--theme-color) 35%, var(--border));
  box-shadow: 0 20px 40px rgba(var(--theme-color-rgb), 0.12);
}

.app-card.featured {
  border-color: color-mix(in srgb, var(--theme-color) 22%, var(--border));
  background:
    linear-gradient(180deg, rgba(var(--theme-color-rgb), 0.06), transparent 150px),
    var(--surface);
}

.app-card-top {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 8px 20px var(--shadow);
}

.app-meta {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.app-meta h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.app-meta p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.app-badge {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(var(--theme-color-rgb), 0.1);
  color: var(--theme-color);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.apk-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 8px 20px 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
  cursor: pointer;
}

.apk-btn:hover {
  transform: translateY(-2px);
  background: var(--theme-color);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(var(--theme-color-rgb), 0.28);
}

.apk-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.apk-btn-text {
  display: grid;
  gap: 1px;
  text-align: left;
}

.apk-btn-text small {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.78;
}

.apk-btn-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 8px 20px 8px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-hover);
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.65;
  transition: opacity 200ms ease;
}

.play-btn:hover {
  opacity: 0.8;
}

.play-btn svg {
  width: 28px;
  height: 28px;
  filter: grayscale(1) opacity(0.55);
  transition: filter 200ms ease, opacity 200ms ease;
}

.play-btn-text {
  display: grid;
  gap: 1px;
}

.play-btn-text small {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.play-btn-text strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.features-grid {
  display: grid;
  gap: 14px;
}

.feature {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 8px 24px var(--shadow);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.feature p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-inner {
  display: grid;
  gap: 10px;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  font-weight: 700;
  color: var(--text-secondary);
}

.footer-brand img {
  width: 24px;
  height: 24px;
}

/* Open / redirect page */
.open-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.open-card {
  width: min(480px, 100%);
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 18px 48px var(--shadow);
  text-align: center;
}

.open-spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  border: 3px solid rgba(var(--primary-rgb), 0.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.open-card h1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.open-card p {
  margin: 0 0 22px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.open-actions {
  display: grid;
  gap: 12px;
}

.open-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--on-brand);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.open-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.open-secondary {
  color: var(--primary);
  font-weight: 600;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 720px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
  }

  .hero {
    padding: 72px 0 40px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 48px;
  }

  .apps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .app-card.featured .app-card-top {
    align-items: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .nav {
    min-height: 56px;
    gap: 8px;
  }

  .brand {
    gap: 6px;
    font-size: 1.1rem;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .nav-actions {
    gap: 6px;
  }

  .icon-btn,
  .lang-btn {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .icon-btn {
    width: 32px;
  }

  .hero {
    padding: 36px 0 24px;
  }

  h1 {
    font-size: clamp(1.8rem, 6.5vw, 3.2rem);
  }

  .interactive-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0;
    gap: 6px;
    margin: 0;
  }

  .interactive-pills::-webkit-scrollbar {
    display: none;
  }

  .pills-label {
    flex-shrink: 0;
    margin-right: 2px;
  }

  .pill-btn {
    flex-shrink: 0;
  }

  .download-row {
    flex-direction: column;
    align-items: stretch;
  }

  .apk-btn,
  .play-btn {
    justify-content: center;
  }
}

/* Try Live interactive pills */
.interactive-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.pills-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-right: 4px;
}

.pill-btn {
  border: 1px solid var(--border);
  background: var(--surface-hover);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.pill-btn:hover {
  background: var(--surface);
  color: var(--text);
  border-color: rgba(var(--primary-rgb), 0.25);
  transform: translateY(-1px);
}

.pill-btn.active {
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  border-color: rgba(var(--primary-rgb), 0.35);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  padding-top: 4px;
}

.primary-action,
.ghost-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.primary-action {
  padding: 0 28px;
  border: 0;
  color: var(--on-brand);
  background: var(--brand-gradient);
  box-shadow: 0 16px 36px rgba(var(--primary-rgb), 0.28);
}

.ghost-action {
  padding: 0 26px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: rgba(var(--text-rgb), 0.05);
  backdrop-filter: blur(8px);
}

.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(var(--primary-rgb), 0.38);
}

.ghost-action:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--primary-rgb), 0.35);
  background: var(--surface-hover);
}

/* Mockup Container with tab selector */
.mockup-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  width: 100%;
  max-width: 520px;
  padding: 0 8px;
  overflow: visible;
}

.mockup-controls {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px var(--shadow);
  z-index: 10;
}

.mockup-tab {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.mockup-tab svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.mockup-tab.active {
  background: var(--brand-gradient);
  color: var(--on-brand);
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.32);
}

.phone-scene {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto;
  overflow: visible;
  --phone-w: 258px;
  --phone-half: calc(var(--phone-w) / 2);
  --gutter: max(12px, calc((100% - var(--phone-w)) / 2));
}

.phone-anim {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 258px;
  transform: translate3d(-50%, 0, 0) rotate(4deg);
  transform-origin: bottom center;
  animation: phoneLift 6s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  z-index: 2;
}

.phone {
  position: relative;
  width: 100%;
  aspect-ratio: 0.52;
  padding: 12px;
  border-radius: 40px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(180deg, var(--phone-chrome-top) 0%, var(--phone-chrome-bottom) 100%);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  isolation: isolate;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.08) 40%, rgba(255, 255, 255, 0.22));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* Embedded App mockup screens styling */
.phone-screen {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  background: var(--app-screen-bg);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--app-stroke-soft);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.phone-header {
  height: 36px;
  padding: 12px 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--app-text-muted);
  font-size: 0.68rem;
  z-index: 10;
  flex-shrink: 0;
}

.phone-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.phone-icon {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.phone-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 80px;
  height: 4px;
  border-radius: 99px;
  background: var(--app-text-muted);
  opacity: 0.3;
  transform: translateX(-50%);
  z-index: 10;
}

.screen-view {
  position: absolute;
  inset: 76px 0 52px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(12px);
  padding: 4px 10px 8px;
  overflow: hidden;
}

.screen-view.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* In-app top bar */
.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 0 6px;
  flex-shrink: 0;
}

.app-topbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--app-text);
}

.app-topbar-logo img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.app-topbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.app-icon-btn {
  position: relative;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--app-text-secondary);
  border-radius: 50%;
  transition: background 150ms ease;
}

.app-icon-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.notif-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: var(--on-brand);
  font-size: 0.55rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--app-screen-bg);
}

/* Stories row */
.stories-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 10px;
  flex-shrink: 0;
  scrollbar-width: none;
}

.stories-row::-webkit-scrollbar {
  display: none;
}

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.story-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-brand);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  transition: transform 180ms ease;
}

.story-circle.sc-add {
  border: 2px dashed var(--brand-primary);
  background: transparent;
  color: var(--brand-primary);
  font-size: 1.15rem;
  font-weight: 400;
  width: 44px;
  height: 44px;
}

.story-circle.sc-lamia {
  background: var(--brand-primary-light);
}

.story-circle.sc-nafisa {
  background: var(--brand-accent);
}

.story-circle.sc-tanvir {
  background: var(--brand-primary);
}

.story-circle.sc-rahel {
  background: color-mix(in srgb, var(--brand-primary) 72%, var(--brand-accent));
}

.story-ring-custom {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  padding: 2px;
}

.story-ring-custom.sr-lamia {
  border-color: var(--brand-primary-light);
}

.story-ring-custom.sr-nafisa {
  border-color: var(--brand-accent);
}

.story-ring-custom.sr-tanvir {
  border-color: var(--brand-primary);
}

.story-ring-custom.sr-rahel {
  border-color: color-mix(in srgb, var(--brand-primary) 72%, var(--brand-accent));
}

.story-label {
  font-size: 0.58rem;
  font-weight: 600;
  color: var(--app-text-secondary);
  text-align: center;
  white-space: nowrap;
}

/* Bottom nav */
.app-bottom-nav {
  position: absolute;
  bottom: 12px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 44px;
  border-top: 1px solid var(--app-stroke-soft);
  padding-top: 4px;
  z-index: 5;
  background: var(--app-screen-bg);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border: 0;
  background: transparent;
  color: var(--app-text-muted);
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 200ms ease, transform 200ms ease;
}

.nav-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-item span {
  font-size: 0.52rem;
  font-weight: 600;
  color: inherit;
}

.nav-item.active {
  color: var(--brand-primary);
}

.nav-item:active {
  transform: scale(0.92);
}

.nav-item.add-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: var(--on-brand);
  justify-content: center;
  align-items: center;
  display: flex;
  margin-top: -12px;
  box-shadow: 0 4px 12px rgba(var(--brand-primary-rgb), 0.35);
  border: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-item.add-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
}

.nav-item.add-btn span {
  display: none;
}

/* Like animation */
.post-act-btn.liked {
  color: var(--brand-accent) !important;
}

.post-act-btn.liked svg {
  fill: var(--brand-accent) !important;
  stroke: var(--brand-accent) !important;
  animation: likePop 400ms ease;
}

/* Typing indicator */
.typing-dots {
  display: flex;
  gap: 3px;
  padding: 8px 10px;
  align-self: flex-start;
  background: var(--app-fill);
  border-radius: 10px;
  border-bottom-left-radius: 2px;
}

.typing-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--app-text-muted);
  animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }

/* Preview section label */
.preview-section-label {
  text-align: center;
  margin-bottom: 12px;
}

.preview-section-label h2 {
  margin: 0 0 6px;
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  font-weight: 600;
}

.preview-section-label p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.coming-soon-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
}

.coming-soon-chip .chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

/* App Header location dropdown & drawer styling */
.phone-top-navbar {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 4px 6px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--app-stroke-soft);
  background: var(--app-screen-bg);
}

.drawer-hamburger {
  display: flex;
  flex-direction: column;
  gap: 3.5px;
  width: 16px;
  cursor: pointer;
}

.drawer-hamburger span {
  display: block;
  height: 2px;
  background: var(--app-text);
  border-radius: 99px;
  width: 100%;
}

.phone-app-title-group {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.phone-app-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-align: left;
}

.phone-location-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--app-text-secondary);
  font-size: 0.58rem;
  font-weight: 600;
  cursor: pointer;
}

.phone-location-dropdown svg {
  width: 8px;
  height: 8px;
  fill: currentColor;
}

.phone-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Scrollable screen view container */
.screen-scroll-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 4px 0 16px 0;
}

.screen-scroll-container::-webkit-scrollbar {
  display: none;
}

/* Quick updates row */
.quick-updates-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.quick-updates-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--app-text);
  padding: 0 4px;
  text-align: left;
}

.quick-updates-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 4px;
}

.quick-updates-row::-webkit-scrollbar {
  display: none;
}

.quick-update-card {
  display: flex;
  flex-direction: column;
  width: 124px;
  flex-shrink: 0;
  background: var(--app-surface);
  border: 1px solid var(--app-stroke-soft);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.quick-update-thumb {
  width: 100%;
  aspect-ratio: 1.6;
  background: var(--app-fill);
  overflow: hidden;
  position: relative;
}

.quick-update-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-update-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--primary);
}

.quick-update-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.quick-update-info {
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quick-update-tag {
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--accent);
}

.quick-update-text {
  font-size: 0.54rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--app-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Write post box */
.write-post-box {
  background: var(--app-surface);
  border: 1px solid var(--app-stroke-soft);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.write-post-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.write-post-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-brand);
  font-size: 0.76rem;
  font-weight: 700;
}

.write-post-input-box {
  flex-grow: 1;
  background: var(--app-fill-soft);
  border: 1px solid var(--app-stroke-soft);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.68rem;
  color: var(--app-text-secondary);
  cursor: text;
  text-align: left;
}

.write-post-send-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
}

.write-post-send-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.write-post-bottom {
  border-top: 1px solid var(--app-stroke-soft);
  padding-top: 8px;
  display: flex;
  align-items: center;
}

.write-post-media-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--app-text-secondary);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.write-post-media-btn svg {
  width: 14px;
  height: 14px;
  color: #10b981;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Feed Post changes */
.feed-post-avatar-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-brand);
  font-size: 0.74rem;
  font-weight: 700;
}

/* Search bar styling */
.mockup-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--app-surface);
  border: 1px solid var(--app-stroke-soft);
  border-radius: 10px;
  padding: 8px 12px;
  color: var(--app-text-muted);
  font-size: 0.68rem;
  cursor: text;
  flex-shrink: 0;
}

.mockup-search-bar svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2.2;
}

/* My Area Screen Update Banner */
.my-area-banner {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 14px;
  padding: 14px;
  color: var(--on-brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.2);
  flex-shrink: 0;
}

.my-area-banner-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.my-area-banner-tag {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 0.5rem;
  font-weight: 700;
  width: fit-content;
  text-transform: uppercase;
}

.my-area-banner-title {
  font-size: 0.88rem;
  font-weight: 700;
}

.my-area-banner-sub {
  font-size: 0.58rem;
  opacity: 0.85;
}

.my-area-banner-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-brand);
  flex-shrink: 0;
}

.my-area-banner-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* My Area Utilities Grid */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex-shrink: 0;
}

.area-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 10px;
  background: var(--app-surface);
  border: 1px solid var(--app-stroke-soft);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.area-item:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--primary-rgb), 0.18);
}

.area-item.active {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.04);
}

.area-item-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--app-fill-soft);
  color: var(--app-text-secondary);
}

.area-item.active .area-item-icon-circle {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.area-item-icon-circle.has-badge {
  position: relative;
}

.area-item-icon-circle.has-badge::after {
  content: "1";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-brand);
  font-size: 0.48rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--app-screen-bg);
}

.area-item-icon-circle svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.area-item-label {
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--app-text-secondary);
}

/* My Area Post card */
.area-post-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  background: var(--app-surface);
  border: 1px solid var(--app-stroke-soft);
  border-radius: 12px;
  flex-shrink: 0;
}

.area-post-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-post-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.area-post-avatar svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2.5;
}

.area-post-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.area-post-tag {
  font-size: 0.62rem;
  font-weight: 700;
  color: #ef4444;
}

.area-post-time {
  font-size: 0.48rem;
  color: var(--app-text-muted);
}

.area-post-body {
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--app-text);
  text-align: left;
}

/* App mockup sub-tabs */
.mockup-sub-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
  padding: 2px 0;
}

.mockup-sub-tabs::-webkit-scrollbar {
  display: none;
}

.mockup-sub-tab {
  border: 1px solid var(--app-stroke-soft);
  background: var(--app-surface);
  color: var(--app-text-secondary);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.mockup-sub-tab.active {
  background: var(--brand-primary);
  color: var(--on-brand);
  border-color: var(--brand-primary);
}

.mockup-sub-tab.active-green {
  background: #10b981;
  color: var(--on-brand);
  border-color: #10b981;
}

/* Opportunity Sujuk Cards */
.opportunity-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: var(--app-surface);
  border: 1px solid var(--app-stroke-soft);
  border-radius: 12px;
  flex-shrink: 0;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.opportunity-tag {
  font-size: 0.52rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  width: fit-content;
  text-transform: uppercase;
}

.opportunity-tag.job {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.opportunity-tag.business {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.opportunity-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--app-text);
  line-height: 1.25;
}

.opportunity-company {
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--app-text-secondary);
}

.opportunity-details {
  font-size: 0.58rem;
  color: var(--app-text-muted);
}

.opportunity-description {
  font-size: 0.68rem;
  line-height: 1.45;
  color: var(--app-text-secondary);
}

.opportunity-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--app-stroke-soft);
  padding-top: 8px;
  margin-top: 4px;
}

.opportunity-apply-btn {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 0;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.62rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.opportunity-apply-btn.applied {
  background: var(--app-fill);
  color: var(--app-text-muted);
}

.opportunity-bookmark-btn {
  background: transparent;
  border: 0;
  color: var(--app-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opportunity-bookmark-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

/* Floating Action Button inside Phone */
.mockup-fab {
  position: absolute;
  right: 14px;
  bottom: 64px;
  background: #10b981;
  color: var(--on-brand);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  transition: transform 180ms ease;
}

.mockup-fab:active {
  transform: scale(0.95);
}

.mockup-fab svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* Biz Screen Header Card */
.mockup-header-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--app-surface);
  border: 1px solid var(--app-stroke-soft);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  flex-shrink: 0;
  text-align: left;
}

.mockup-header-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-brand);
  flex-shrink: 0;
}

.mockup-header-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.mockup-header-card-icon.biz {
  background: #fff0eb;
  color: #ff6b5c;
}

.mockup-header-card-icon.service {
  background: #f0ebff;
  color: #8b5cf6;
}

.mockup-header-card-icon.news {
  background: #ffebeb;
  color: #ef4444;
}

.mockup-header-card-info {
  display: flex;
  flex-direction: column;
}

.mockup-header-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--app-text);
}

.mockup-header-card-sub {
  font-size: 0.58rem;
  color: var(--app-text-secondary);
}

/* Category pills in Biz Screen */
.category-pills {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  padding: 2px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-pills::-webkit-scrollbar {
  display: none;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 20px;
  background: var(--app-surface);
  border: 1px solid var(--app-stroke-soft);
  color: var(--app-text-secondary);
  font-size: 0.64rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.category-pill.active {
  background: var(--primary);
  color: var(--on-brand);
  border-color: var(--primary);
}

.category-pill svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

/* Empty State */
.biz-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-grow: 1;
  color: var(--app-text-muted);
  padding: 40px 10px;
}

.biz-empty svg {
  width: 44px;
  height: 44px;
  stroke: var(--app-stroke-soft);
}

.biz-empty-text {
  font-size: 0.74rem;
  font-weight: 600;
}

.double-fab-row {
  position: absolute;
  right: 14px;
  bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  z-index: 10;
}

.double-fab-row .mockup-fab {
  position: static;
  background: #ffe3df;
  color: #ff6b5c;
  box-shadow: 0 4px 12px rgba(255, 107, 92, 0.2);
}

.double-fab-row .mockup-fab.accent {
  background: #ffe3df;
  color: #ff6b5c;
}

/* Service Map Placeholder Panel */
.service-map-panel {
  background: var(--app-surface);
  border: 1px solid var(--app-stroke-soft);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  text-align: left;
}

.service-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-map-header-left {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--app-text-secondary);
  font-size: 0.62rem;
  font-weight: 600;
}

.service-map-header-left svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #10b981;
  stroke-width: 2.2;
}

.service-map-refresh {
  background: transparent;
  border: 0;
  color: var(--app-text-muted);
  cursor: pointer;
}

.service-map-refresh svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2.2;
}

.service-map-placeholder {
  width: 100%;
  aspect-ratio: 2.4;
  border-radius: 10px;
  border: 1px solid var(--app-stroke-soft);
  background: var(--app-fill-soft);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Custom CSS Vector map styling */
.custom-vector-map {
  width: 100%;
  height: 100%;
  background-color: var(--surface-hover);
  background-image: 
    radial-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, transparent 49%, var(--border) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, var(--border) 50%, transparent 51%);
  background-size: 16px 16px, 100% 100%, 100% 100%;
  position: relative;
}

.map-river-line {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 20px;
  width: 14px;
  background: #a5f3fc;
  border-radius: 99px;
  opacity: 0.85;
}

.map-road-h {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 8px;
  background: #fff;
  border-top: 1px solid var(--app-stroke-soft);
  border-bottom: 1px solid var(--app-stroke-soft);
}

.map-road-v {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 55%;
  width: 8px;
  background: #fff;
  border-left: 1px solid var(--app-stroke-soft);
  border-right: 1px solid var(--app-stroke-soft);
}

.map-pin-main {
  position: absolute;
  left: 52%;
  top: 36%;
  color: var(--primary);
  animation: pulse 1.8s infinite;
}

.map-pin-main svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.map-pin-dot {
  position: absolute;
  left: 36%;
  top: 58%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  border: 1.5px solid #fff;
}

/* Service Grid */
.service-grid-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--app-text);
  text-align: left;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex-shrink: 0;
}

.service-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 10px;
  background: var(--app-surface);
  border: 1px solid var(--app-stroke-soft);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-grid-item:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--primary-rgb), 0.18);
}

.service-grid-item.active {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.04);
}

.service-grid-item-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--app-fill-soft);
  color: var(--app-text-secondary);
}

.service-grid-item.active .service-grid-item-circle {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.service-grid-item-circle svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.service-grid-item-label {
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--app-text-secondary);
}

/* News Video details Card */
.news-video-card {
  display: flex;
  flex-direction: column;
  background: var(--app-surface);
  border: 1px solid var(--app-stroke-soft);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  flex-shrink: 0;
  text-align: left;
}

.news-video-thumb {
  width: 100%;
  aspect-ratio: 1.6;
  background: var(--app-fill);
  position: relative;
  overflow: hidden;
}

.news-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-video-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.news-video-thumb-play svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.news-video-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-video-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-video-tag {
  background: rgba(255, 107, 92, 0.12);
  color: #ff6b5c;
  font-size: 0.48rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.news-video-location {
  font-size: 0.54rem;
  font-weight: 600;
  color: var(--app-text-secondary);
}

.news-video-title {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--app-text);
  line-height: 1.35;
}

.news-video-desc {
  font-size: 0.58rem;
  line-height: 1.4;
  color: var(--app-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-video-time {
  font-size: 0.48rem;
  color: var(--app-text-muted);
  margin-top: 2px;
}

/* Theme-aware brand banners (marketing site) */
.site-brand-banner {
  width: 100%;
  max-width: 440px;
  margin-bottom: 18px;
}

.site-brand-banner__img {
  display: none;
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: contain;
}

.site-brand-banner__img--light {
  display: block;
}

[data-theme="dark"] .site-brand-banner__img--light {
  display: none;
}

[data-theme="dark"] .site-brand-banner__img--dark {
  display: block;
}

/* Badges sit in side gutters — never on top of the phone */
.mini-badge {
  position: absolute;
  top: 38%;
  left: -40px;
  width: auto;
  max-width: 160px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 12px 32px var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  text-align: left;
  animation: floatOne 7s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.mini-badge span:first-child {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 0 5px rgba(var(--primary-rgb), 0.2);
}

.signal-card {
  position: absolute;
  right: -40px;
  bottom: 32%;
  width: 130px;
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 44px var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: floatTwo 7.5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.signal-row {
  display: flex;
  gap: 9px;
  align-items: center;
}

.avatar.avatar-c1 {
  width: 32px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.8), transparent 20%),
    linear-gradient(135deg, var(--brand-accent), var(--brand-primary));
}

.avatar.avatar-c2 {
  width: 32px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.8), transparent 20%),
    linear-gradient(135deg, var(--brand-primary), var(--brand-primary-hover));
}

.signal-lines {
  display: grid;
  flex: 1;
  gap: 6px;
}

.signal-lines span {
  height: 6px;
  border-radius: 999px;
  background: rgba(var(--brand-text-rgb), 0.14);
}

.signal-lines span:first-child {
  width: 80%;
}

.signal-lines span:last-child {
  width: 50%;
}

/* Keyframe animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

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

@keyframes floatTwo {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(8px, 10px, 0);
  }
}

@keyframes phoneLift {
  0%, 100% {
    transform: translate3d(-50%, 0, 0) rotate(3deg);
  }
  50% {
    transform: translate3d(-50%, -10px, 0) rotate(1.5deg);
  }
}

@keyframes likePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Waitlist area styling */
.launch-strip {
  display: grid;
  gap: 16px;
  padding: 32px 0 48px;
}

.strip-inner {
  display: grid;
  gap: 24px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 16px 48px var(--shadow);
}

.strip-label {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.strip-title {
  margin: 0;
  font-size: clamp(1.35rem, 5vw, 2.2rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

[lang="bn"] .strip-title {
  line-height: 1.35;
}

.waitlist {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 480px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-hover);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.waitlist:focus-within {
  border-color: rgba(var(--primary-rgb), 0.42);
  box-shadow: 0 0 16px rgba(var(--primary-rgb), 0.12);
}

.waitlist input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 10px 0 16px;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-size: 0.92rem;
}

.waitlist input::placeholder {
  color: var(--text-muted);
}

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

.waitlist button {
  min-width: 108px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--on-brand);
  background: var(--brand-gradient);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.waitlist button:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.32);
}

@media (min-width: 720px) {
  .phone-scene {
    height: 520px;
    max-width: 520px;
    --phone-w: 278px;
  }

  .phone-anim {
    width: 278px;
  }

  .strip-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
    align-items: center;
    padding: 32px 40px;
    gap: 32px;
  }
}

@media (max-width: 540px) {
  .phone-scene {
    height: 460px;
    max-width: 100%;
    --phone-w: 240px;
  }

  .phone-anim {
    width: 240px;
    transform: translate3d(-50%, 0, 0) rotate(0deg);
    animation: phoneLiftMobile 6s ease-in-out infinite;
  }

  @keyframes phoneLiftMobile {
    0%, 100% { transform: translate3d(-50%, 0, 0) rotate(0deg); }
    50% { transform: translate3d(-50%, -8px, 0) rotate(0deg); }
  }

  .mini-badge,
  .signal-card {
    display: none;
  }

  .mockup-controls {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: calc(100% - 16px);
    max-width: 100%;
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 20px;
  }

  .mockup-controls::-webkit-scrollbar {
    display: none;
  }

  .mockup-tab {
    flex: 0 0 auto;
    padding: 6px 12px;
    font-size: 0.78rem;
    gap: 4px;
  }

  .waitlist {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 12px;
    flex-direction: column;
  }

  .waitlist input {
    min-height: 48px;
    padding: 12px 16px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface-hover);
    width: 100%;
    transition: border-color 200ms ease, box-shadow 200ms ease;
  }

  .waitlist input:focus {
    border-color: rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.15);
    background: var(--surface);
  }

  .waitlist button {
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-action,
  .ghost-action {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .phone-scene {
    height: 420px;
    --phone-w: 220px;
  }

  .phone-anim {
    width: 220px;
  }
}

/* Detailed styling for real app mockup designs */
.avatar-circle-pic {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-image: url("logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.avatar-circle-pic.mini {
  width: 26px;
  height: 26px;
}

/* Feed Post Styling */
.feed-post {
  background: var(--app-surface);
  border: 1px solid var(--app-stroke-soft);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.015);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.post-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  text-align: left;
}

.post-user {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--app-text);
  line-height: 1.2;
}

.post-time {
  font-size: 0.58rem;
  color: var(--app-text-muted);
}

.post-more-btn {
  background: transparent;
  border: 0;
  color: var(--app-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  margin-left: auto;
}

.post-more-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.post-text {
  font-size: 0.72rem;
  color: var(--app-text);
  margin: 0;
  text-align: left;
  line-height: 1.4;
}

.post-image {
  width: calc(100% + 20px);
  margin: 0 -10px;
  height: 140px;
  overflow: hidden;
  position: relative;
  background: var(--app-fill-soft);
  border-top: 1px solid var(--app-stroke-soft);
  border-bottom: 1px solid var(--app-stroke-soft);
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}

.post-act-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 0;
  color: var(--app-text-secondary);
  font-family: inherit;
  font-size: 0.64rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}

.post-act-btn:hover {
  color: var(--app-text);
}

.post-act-btn svg {
  width: 13px;
  height: 13px;
}

/* Status Bar Elements */
.phone-battery {
  width: 15px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 2px;
  padding: 0.5px;
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 2px;
}

.phone-battery::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 1.5px;
  width: 1px;
  height: 3px;
  background: currentColor;
  border-radius: 0 1px 1px 0;
}

.phone-battery-level {
  height: 100%;
  width: 75%;
  background: currentColor;
  border-radius: 0.5px;
}

.phone-wifi, .phone-network {
  width: 10px !important;
  height: 10px !important;
}

.dropdown-caret {
  width: 7px !important;
  height: 7px !important;
  margin-left: -1px;
}

.action-search-icon, .action-notif-icon {
  width: 13px !important;
  height: 13px !important;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.action-notif-icon {
  stroke-width: 2.2;
}

/* Search bar elements inside Area Screen */
.mockup-search-input-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.search-input-icon {
  position: absolute;
  left: 10px;
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  color: var(--app-text-muted);
  pointer-events: none;
}

.mockup-search-input {
  width: 100%;
  background: var(--app-surface);
  border: 1px solid var(--app-stroke-soft);
  border-radius: 10px;
  padding: 7px 10px 7px 28px;
  color: var(--app-text);
  font-family: inherit;
  font-size: 0.68rem;
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
}

.mockup-search-input:focus {
  border-color: rgba(var(--primary-rgb), 0.3);
  background: var(--app-surface);
}

.area-badge-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: 0.45rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--app-screen-bg);
}

/* Sujuk screen header and Saved */
.sujuk-header-row {
  display: flex;
  justify-content: flex-end;
  padding: 0 4px;
  margin-bottom: -6px;
  flex-shrink: 0;
}

.sujuk-saved-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 0;
  color: #10b981;
  font-family: inherit;
  font-size: 0.64rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.sujuk-saved-btn:hover {
  background: var(--app-fill-soft);
}

.sujuk-saved-btn svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

/* Bookmark filled button logic */
.opportunity-bookmark-btn.bookmarked svg {
  fill: #10b981;
  stroke: #10b981;
}

/* Map Refresh animation */
.service-map-refresh {
  transition: transform 0.4s ease;
}

.service-map-refresh:active {
  transform: scale(0.9);
}

/* Opportunity cards filtering transition */
.sujuk-item {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

