:root {
  --ink: #0b1f2a;
  --ink-soft: #163445;
  --teal: #0e7c7b;
  --teal-bright: #1fa7a0;
  --amber: #c4a35a;
  --sand: #e8e2d6;
  --fog: #f3f0ea;
  --white: #ffffff;
  --muted: #5d7380;
  --line: rgba(11, 31, 42, 0.1);
  --shadow: 0 18px 50px rgba(11, 31, 42, 0.12);
  --radius: 18px;
  --container: 1120px;
  --header-h: 72px;
  --font: "IRANSans", Tahoma, sans-serif;
}

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

  html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background: var(--fog);
  line-height: 1.7;
  position: relative;
}

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

img {
  max-width: 100%;
  display: block;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1000px 500px at 90% -10%, rgba(31, 167, 160, 0.18), transparent 60%),
    radial-gradient(800px 420px at 0% 20%, rgba(196, 163, 90, 0.14), transparent 55%),
    linear-gradient(180deg, #f7f4ee 0%, #eef3f3 45%, #f3f0ea 100%);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(11, 31, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 42, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
}

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(14px);
  background: rgba(243, 240, 234, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 244, 238, 0.92);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.55rem;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(11, 31, 42, 0.18);
}

.brand-text {
  font-size: 1.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-inline: auto;
}

.header-phones {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  line-height: 1.25;
}

.header-phones-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
}

.header-phones-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.header-phones a {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  direction: ltr;
  unicode-bidi: isolate;
}

.header-phones a:hover {
  color: var(--teal);
}

.nav-link {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover {
  background: rgba(14, 124, 123, 0.1);
  color: var(--ink);
}

.nav-link.is-active {
  background: rgba(14, 124, 123, 0.14);
  color: var(--ink);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--ink));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(14, 124, 123, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(14, 124, 123, 0.35);
}

.btn-secondary {
  background: #ffffff;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(11, 31, 42, 0.22);
}

.btn-secondary:hover {
  background: #f7f4ee;
  color: var(--ink);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(11, 31, 42, 0.14);
  color: var(--ink);
}

.btn-disabled {
  background: rgba(11, 31, 42, 0.08);
  color: var(--muted);
  cursor: default;
}

.btn-disabled:hover {
  transform: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  display: block;
  overflow: hidden;
  padding: 3.25rem 0 3.75rem;
  background:
    radial-gradient(640px 320px at 12% 30%, rgba(31, 167, 160, 0.22), transparent 62%),
    radial-gradient(520px 280px at 88% 70%, rgba(196, 163, 90, 0.18), transparent 58%),
    radial-gradient(480px 260px at 55% 10%, rgba(74, 124, 155, 0.14), transparent 55%),
    linear-gradient(145deg, #081820 0%, #12343f 42%, #1a2f38 72%, #0b1f2a 100%);
}

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

.hero-atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.38;
  filter: saturate(1.25) contrast(1.08) brightness(1.05);
  transform: scale(1.05);
}

.hero-atmosphere-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 28, 36, 0.45) 0%, transparent 38%, rgba(20, 40, 48, 0.2) 62%, rgba(12, 24, 32, 0.4) 100%),
    radial-gradient(ellipse 55% 50% at 25% 40%, rgba(31, 167, 160, 0.12), transparent 70%),
    radial-gradient(ellipse 50% 45% at 78% 60%, rgba(196, 163, 90, 0.1), transparent 70%);
  mix-blend-mode: soft-light;
  opacity: 0.85;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  gap: 1.75rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  color: var(--white);
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.35),
    0 0 0 6px rgba(196, 163, 90, 0.06);
  min-height: 100%;
  display: flex;
  align-items: center;
}

.hero-content-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-content-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
}

.hero-content-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(8, 22, 30, 0.82) 0%, rgba(11, 31, 42, 0.72) 45%, rgba(10, 28, 36, 0.78) 100%),
    radial-gradient(420px 220px at 80% 20%, rgba(31, 167, 160, 0.22), transparent 70%);
}

.hero-content-inner {
  position: relative;
  z-index: 1;
  padding: 1.85rem 1.75rem 2rem;
  width: 100%;
}

.hero-gallery {
  justify-self: end;
  display: grid;
  gap: 0.75rem;
  width: min(100%, 460px);
}

.hero-figure {
  margin: 0;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.4),
    0 0 0 6px rgba(31, 167, 160, 0.08);
  background: #0a1620;
}

.hero-split {
  position: relative;
  aspect-ratio: 1 / 1;
  direction: ltr;
  box-shadow:
    0 26px 56px rgba(0, 0, 0, 0.45),
    0 0 0 6px rgba(31, 167, 160, 0.08),
    0 0 40px rgba(31, 167, 160, 0.18);
}

.hero-split-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Diagonal seam: top-right → near bottom-left */
.hero-split-panel--left {
  clip-path: polygon(0 0, 78% 0, 18% 100%, 0 100%);
  z-index: 1;
}

.hero-split-panel--right {
  clip-path: polygon(78% 0, 100% 0, 100% 100%, 18% 100%);
  filter: saturate(1.06) contrast(1.03);
  z-index: 1;
}

.hero-split-bolt {
  position: absolute;
  inset: -4% -2%;
  width: 104%;
  height: 108%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 10px rgba(31, 167, 160, 0.55))
          drop-shadow(0 0 22px rgba(255, 255, 255, 0.25));
  opacity: 0.92;
}

.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.45rem;
}

.hero-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  background: #0a1620;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-thumbs img:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.hero-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: none;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-brand {
  margin: 0;
  font-size: clamp(2.05rem, 5.2vw, 3.35rem);
  line-height: 1.2;
  letter-spacing: 0;
  word-spacing: 0.28em;
  font-weight: 700;
}

.hero-pitch {
  margin: 1.1rem 0 0;
  max-width: 32rem;
}

.hero-pitch-lead {
  margin: 0 0 0.55rem !important;
  font-size: clamp(1rem, 1.8vw, 1.15rem) !important;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95) !important;
  line-height: 1.6 !important;
}

.hero-pitch p {
  margin: 0 0 0.4rem;
  font-size: clamp(0.9rem, 1.5vw, 1.02rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.hero-pitch p:last-child {
  margin-bottom: 0;
}

.hero-pitch-cta {
  margin-top: 0.75rem !important;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(196, 163, 90, 0.35);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem) !important;
  font-weight: 700;
  color: #e8d4a8 !important;
}

.hero-pitch-price {
  margin: 0.85rem 0 0.55rem !important;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(216, 255, 110, 0.22), rgba(46, 230, 197, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  font-size: clamp(1.12rem, 2.2vw, 1.38rem) !important;
  font-weight: 800 !important;
  line-height: 1.55 !important;
  color: #f4ffe8 !important;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

.section-pricing-top {
  padding-top: 1.75rem;
  padding-bottom: 1.25rem;
}

.section-pricing-top .container {
  display: grid;
  gap: 1rem;
}

.referral-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  padding: 1.35rem 1.4rem;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 248, 0.92)),
    radial-gradient(420px 160px at 0% 0%, rgba(196, 163, 90, 0.16), transparent 70%);
  border: 1px solid rgba(11, 31, 42, 0.09);
  box-shadow: 0 14px 34px rgba(11, 31, 42, 0.07);
}

.referral-banner-kicker {
  margin: 0 0 0.3rem;
  color: #9a6b1f;
  font-weight: 700;
  font-size: 0.84rem;
}

.referral-banner h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.1rem, 2.1vw, 1.35rem);
  color: var(--ink);
}

.referral-banner-copy p:last-child {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.94rem;
}

.referral-banner .btn {
  flex-shrink: 0;
}

.section-webdev {
  padding-top: 0.75rem;
}

.webdev-box {
  background: #fff;
  border: 1px solid rgba(11, 31, 42, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(11, 31, 42, 0.06);
  overflow: hidden;
}

.webdev-box-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.75rem 1.75rem 1.4rem;
  border-bottom: 1px solid rgba(11, 31, 42, 0.08);
  background: linear-gradient(180deg, #f7fbfb 0%, #ffffff 100%);
}

.webdev-box-kicker {
  margin: 0 0 0.4rem;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.82rem;
}

.webdev-box-header h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  color: var(--ink);
  line-height: 1.4;
}

.webdev-box-lead {
  margin: 0;
  max-width: 48rem;
  color: var(--muted);
  line-height: 1.95;
  font-size: 0.98rem;
}

.webdev-box-lead strong {
  color: var(--ink);
  font-weight: 700;
}

.webdev-box-header .btn {
  flex-shrink: 0;
  align-self: center;
}

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

.webdev-item {
  display: grid;
  grid-template-columns: minmax(9rem, 13rem) 1fr;
  gap: 1.25rem 1.75rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(11, 31, 42, 0.07);
}

.webdev-item:last-child {
  border-bottom: none;
}

.webdev-item-side h3 {
  margin: 0;
  font-size: 1.12rem;
  color: var(--ink);
  line-height: 1.4;
  font-family: "IRANSans", Tahoma, sans-serif;
  font-weight: 700;
}

.webdev-item-body p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 2;
  font-size: 0.95rem;
  text-align: justify;
}

.webdev-item-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.webdev-item-body li {
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  background: #f3f7f7;
  border: 1px solid rgba(11, 31, 42, 0.06);
  color: var(--ink-soft, #163445);
  font-size: 0.82rem;
  font-weight: 600;
}

.webdev-box-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.75rem 1.45rem;
  background: #f7faf9;
  border-top: 1px solid rgba(11, 31, 42, 0.08);
}

.webdev-box-footer p {
  margin: 0;
  flex: 1 1 16rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.92rem;
}

.webdev-box-footer .btn {
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .webdev-box-header,
  .webdev-item,
  .webdev-box-footer {
    padding-inline: 1.15rem;
  }

  .webdev-item {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

.section-shared-caps {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}

.shared-caps {
  position: relative;
  overflow: hidden;
  padding: 1.75rem 1.5rem 1.55rem;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 249, 0.92)),
    radial-gradient(520px 220px at 100% 0%, rgba(31, 167, 160, 0.12), transparent 70%);
  border: 1px solid rgba(11, 31, 42, 0.08);
  box-shadow: 0 18px 44px rgba(11, 31, 42, 0.08);
}

.shared-caps::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #1fa7a0, #0e7c7b 55%, #c4a35a);
}

.shared-caps-head {
  max-width: 40rem;
  margin-bottom: 1.35rem;
  padding-right: 0.35rem;
}

.shared-caps-kicker {
  margin: 0 0 0.35rem;
  color: #0e7c7b;
  font-size: 0.86rem;
  font-weight: 700;
}

.shared-caps-head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  color: var(--ink);
  line-height: 1.45;
}

.shared-caps-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

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

.shared-caps-grid li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.95rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(11, 31, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shared-caps-grid li:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 124, 123, 0.22);
  box-shadow: 0 12px 26px rgba(11, 31, 42, 0.08);
}

.shared-caps-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #0e7c7b;
  background: linear-gradient(145deg, rgba(31, 167, 160, 0.16), rgba(196, 163, 90, 0.12));
}

.shared-caps-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.shared-caps-grid strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.shared-caps-grid span:not(.shared-caps-icon) {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .shared-caps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .shared-caps {
    padding: 1.35rem 1.1rem 1.2rem;
  }

  .shared-caps-grid {
    grid-template-columns: 1fr;
  }
}

.hero-lead,
.page-lead {
  margin: 0.9rem 0 0;
  font-size: clamp(0.98rem, 1.7vw, 1.12rem);
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.01em;
}

.page-lead {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero .btn-primary {
  background: #1fa7a0;
  color: #ffffff;
  border-color: #1fa7a0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hero .btn-secondary {
  background: #ffffff;
  color: #0b1f2a !important;
  border: 2px solid #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  font-weight: 700;
}

.hero .btn-secondary:hover {
  background: #c4a35a;
  border-color: #c4a35a;
  color: #0b1f2a !important;
}


/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.42);
  border-block: 1px solid var(--line);
}


.section-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 1.05rem 1.2rem;
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(14, 124, 123, 0.14), rgba(196, 163, 90, 0.12)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 31, 42, 0.08);
  box-shadow: 0 10px 28px rgba(11, 31, 42, 0.06);
}

.section-banner-icon {
  flex: 0 0 auto;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: #0e7c7b;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 124, 123, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.section-banner-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.section-banner-copy {
  min-width: 0;
}

.section-banner-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0e7c7b;
}

.section-banner h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--ink);
}

.section-banner-copy > p:last-child {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .section-banner {
    align-items: flex-start;
  }
}
.section-head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-head h2 {
  margin: 0;
  font-family: "IRANSans", Tahoma, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 700;
}

.page-hero h1,
.detail-hero h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3.6vw, 2.35rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.section-head p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  font-weight: 400;
  max-width: 34rem;
}

.section-cta {
  margin-top: 2rem;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 4.5rem 0 3.25rem;
  color: #fff;
  background: #0b1f2a;
}

.page-hero-compact {
  padding: 3.5rem 0 2.75rem;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 20, 28, 0.92) 0%, rgba(7, 20, 28, 0.72) 48%, rgba(7, 20, 28, 0.45) 100%),
    linear-gradient(180deg, rgba(7, 20, 28, 0.2) 0%, rgba(7, 20, 28, 0.55) 100%);
}

.page-hero--apps .page-hero-shade {
  background:
    linear-gradient(115deg, rgba(8, 28, 36, 0.94) 0%, rgba(14, 90, 95, 0.55) 55%, rgba(8, 28, 36, 0.4) 100%),
    linear-gradient(180deg, rgba(8, 28, 36, 0.15), rgba(8, 28, 36, 0.6));
}

.page-hero--about .page-hero-shade {
  background:
    linear-gradient(115deg, rgba(12, 22, 34, 0.94) 0%, rgba(90, 70, 40, 0.35) 50%, rgba(12, 22, 34, 0.5) 100%),
    linear-gradient(180deg, rgba(12, 22, 34, 0.2), rgba(12, 22, 34, 0.62));
}

.page-hero--contact .page-hero-shade {
  background:
    linear-gradient(115deg, rgba(6, 22, 28, 0.94) 0%, rgba(8, 48, 52, 0.82) 48%, rgba(10, 28, 34, 0.88) 100%),
    linear-gradient(180deg, rgba(6, 22, 28, 0.35), rgba(6, 22, 28, 0.78));
}

.page-hero-content {
  position: relative;
  max-width: 42rem;
}

.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.page-hero .page-lead {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero h1 {
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

/* Soft page canvases under each section */
body:has(.page-hero--apps) .page-bg {
  background:
    radial-gradient(900px 420px at 90% 0%, rgba(31, 167, 160, 0.16), transparent 60%),
    linear-gradient(180deg, #eef5f5 0%, #f3f0ea 100%);
}

body:has(.page-hero--about) .page-bg {
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(196, 163, 90, 0.18), transparent 55%),
    linear-gradient(180deg, #f5f1e8 0%, #eef2f4 100%);
}

body:has(.page-hero--contact) .page-bg {
  background:
    radial-gradient(900px 420px at 85% 0%, rgba(14, 124, 123, 0.14), transparent 55%),
    linear-gradient(180deg, #dce8e7 0%, #e8efee 45%, #eef2f1 100%);
}

/* Categories & apps */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.category-card {
  --accent: var(--teal-bright);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 220px;
  padding: 1.35rem 1.3rem 1.2rem;
  border-radius: 22px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, transparent), transparent 60%);
  border: 1px solid rgba(11, 31, 42, 0.08);
  box-shadow: 0 10px 28px rgba(11, 31, 42, 0.06);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent) 35%, #0b1f2a));
}

.category-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  left: -40px;
  bottom: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%);
  pointer-events: none;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 40%, rgba(11, 31, 42, 0.08));
  box-shadow: 0 18px 40px rgba(11, 31, 42, 0.12);
}

.category-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.category-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.category-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.category-count {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: rgba(11, 31, 42, 0.06);
}

.category-card h3 {
  margin: 0.15rem 0 0;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
  position: relative;
  z-index: 1;
}

.category-link {
  position: relative;
  z-index: 1;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--accent) 70%, #0b1f2a);
}

.category-card:hover .category-link {
  color: var(--ink);
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.app-tile {
  --accent: var(--teal-bright);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 220px;
  padding: 1.35rem 1.3rem 1.25rem;
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, transparent), transparent 55%);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.app-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}

.app-tile h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.app-tile p {
  margin: 0;
  color: var(--muted);
  flex: 1;
}

.app-tile-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.app-badge,
.app-status {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.app-badge {
  background: rgba(11, 31, 42, 0.08);
}

.app-status {
  background: rgba(14, 124, 123, 0.12);
  color: var(--teal);
}

.app-meta {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.promise {
  padding: 1.5rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.promise h3 {
  margin: 0 0 0.55rem;
  font-family: "IRANSans", Tahoma, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--ink);
}

.promise p {
  margin: 0;
  color: var(--muted);
}

/* Filters */
.filter-bar {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.1rem;
  border-radius: 20px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(31, 167, 160, 0.08), transparent 60%);
  border: 1px solid rgba(11, 31, 42, 0.08);
  box-shadow: 0 12px 30px rgba(11, 31, 42, 0.06);
}

.filter-bar input,
.filter-bar select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(11, 31, 42, 0.14);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.7rem 0.95rem;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(11, 31, 42, 0.18);
  background: #f4f8f7;
}

.filter-select {
  position: relative;
  min-width: 0;
}

.filter-select::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.filter-select:focus-within::after {
  border-color: var(--teal-bright);
  transform: translateY(-30%) rotate(225deg);
}

.filter-bar .filter-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding: 0.7rem 1rem 0.7rem 2.55rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
  border: 1px solid rgba(14, 124, 123, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 12px rgba(11, 31, 42, 0.04);
  background-image: none;
}

.filter-bar .filter-select select:hover {
  border-color: rgba(14, 124, 123, 0.45);
  background: linear-gradient(180deg, #ffffff 0%, #eef7f6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 6px 16px rgba(14, 124, 123, 0.1);
}

.filter-bar .filter-select select:focus {
  border-color: rgba(14, 124, 123, 0.65);
  box-shadow:
    0 0 0 4px rgba(14, 124, 123, 0.14),
    0 8px 18px rgba(14, 124, 123, 0.12);
  background: #fff;
}

.filter-bar .filter-select select option {
  color: var(--ink);
  background: #fff;
  font-weight: 500;
  padding: 0.6rem;
}

.filter-bar input:focus,
.filter-bar select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(14, 124, 123, 0.55);
  box-shadow: 0 0 0 4px rgba(14, 124, 123, 0.12);
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  border: 1px dashed var(--line);
}

/* Detail */
.detail-hero {
  --accent: var(--teal);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3.25rem 0 2.75rem;
  background:
    radial-gradient(700px 320px at 90% 10%, color-mix(in srgb, var(--accent) 35%, transparent), transparent 60%),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 28%, #0b1f2a), #07151d 72%);
  color: var(--white);
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 85%);
}

.detail-hero .page-lead,
.detail-hero .app-meta {
  color: rgba(255, 255, 255, 0.82);
}

.detail-hero .app-badge,
.detail-hero .app-status {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.1rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.detail-main h2 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
}

.detail-main p {
  margin: 0 0 1.8rem;
  color: var(--muted);
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.feature-list li {
  position: relative;
  padding-right: 1.2rem;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal-bright);
}

.side-panel {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.side-panel h3 {
  margin: 0 0 1rem;
}

.spec-list {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-weight: 500;
}

.spec-list dd {
  margin: 0;
  font-weight: 600;
}

/* About / Contact */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.about-block {
  position: relative;
  overflow: hidden;
  padding: 1.7rem 1.4rem 1.5rem;
  border-radius: 22px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(196, 163, 90, 0.1), transparent 55%);
  border: 1px solid rgba(11, 31, 42, 0.08);
  box-shadow: 0 12px 30px rgba(11, 31, 42, 0.06);
}

.about-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #c4a35a, #0e7c7b);
}

.about-block h2 {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
}

.about-block p {
  margin: 0;
  color: var(--muted);
}

.cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.7rem;
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(11, 31, 42, 0.92), rgba(14, 124, 123, 0.78)),
    radial-gradient(500px 220px at 90% 20%, rgba(196, 163, 90, 0.35), transparent 60%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(11, 31, 42, 0.2);
}

.cta-banner h2 {
  margin: 0 0 0.4rem;
}

.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.section-contact {
  background:
    linear-gradient(180deg, rgba(232, 242, 241, 0.9), rgba(244, 247, 246, 0.95));
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-form,
.contact-aside {
  padding: 1.75rem 1.55rem;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(11, 31, 42, 0.12);
  box-shadow: 0 16px 36px rgba(11, 31, 42, 0.1);
}

.contact-form-title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: var(--ink);
}

.contact-form-lead {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-aside-note {
  margin-top: 1.25rem;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background: rgba(14, 124, 123, 0.1);
  border: 1px solid rgba(14, 124, 123, 0.22);
}

.contact-aside-note strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.contact-aside-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1.15rem;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(14, 124, 123, 0.1), rgba(196, 163, 90, 0.08)),
    linear-gradient(180deg, rgba(243, 240, 234, 0.9), rgba(232, 240, 238, 0.95));
  border: 1px solid rgba(14, 124, 123, 0.12);
}

.about-highlights article {
  position: relative;
  padding: 1.25rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    0 10px 28px rgba(11, 31, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  overflow: hidden;
}

.about-highlights article::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(31, 167, 160, 0.08), transparent 45%, rgba(196, 163, 90, 0.06));
  pointer-events: none;
}

.about-highlights h3 {
  position: relative;
  margin: 0 0 0.45rem;
  font-family: "IRANSans", Tahoma, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.about-highlights p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex-shrink: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.field-error {
  display: block;
  margin-top: 0.35rem;
  color: #b42318;
  font-size: 0.88rem;
}

.alert-success {
  grid-column: 1 / -1;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  background: rgba(14, 124, 123, 0.12);
  border: 1px solid rgba(14, 124, 123, 0.25);
  color: var(--ink);
  font-weight: 600;
}

.alert-error {
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: rgba(180, 35, 24, 0.08);
  border: 1px solid rgba(180, 35, 24, 0.25);
  color: #8f1d14;
  font-weight: 600;
}

.member-auth-wrap {
  max-width: 28rem;
  margin: 0 auto;
}

.member-auth-card {
  display: grid;
  gap: 0.25rem;
}

.member-auth-hint {
  margin: 0.25rem 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.otp-input {
  letter-spacing: 0.45em;
  font-size: 1.55rem !important;
  text-align: center;
  font-weight: 700;
  min-height: 3.4rem !important;
}

.nav-member-form {
  display: inline;
  margin: 0;
}

.nav-member-form button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

/* Download CTA */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #12b5ad 0%, #0e7c7b 55%, #0a5f5e 100%);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 14px 34px rgba(14, 124, 123, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 100%;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(14, 124, 123, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-download-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

.btn-download-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-download-text {
  display: grid;
  gap: 0.15rem;
  text-align: right;
}

.btn-download-text strong {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.btn-download-text small {
  font-size: 0.78rem;
  opacity: 0.88;
  font-weight: 500;
}

/* Bright register+download CTA — overrides dark hero styles */
.detail-hero .cta-register-download,
.pricing-banner .cta-register-download,
.cta-register-download {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.35rem;
  border-radius: 18px;
  text-decoration: none !important;
  color: #06261f !important;
  background: linear-gradient(135deg, #f8ffe8 0%, #e8ff7a 18%, #9dffb8 52%, #3ef0d0 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.85) !important;
  box-shadow:
    0 18px 40px rgba(46, 230, 197, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.detail-hero .cta-register-download strong,
.detail-hero .cta-register-download small,
.pricing-banner .cta-register-download strong,
.pricing-banner .cta-register-download small {
  color: inherit;
}

.cta-register-download:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.05);
  box-shadow:
    0 22px 48px rgba(46, 230, 197, 0.48),
    0 0 28px rgba(216, 255, 110, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.cta-register-download-glow {
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.55), transparent 55%);
  z-index: -1;
  pointer-events: none;
}

.cta-register-download-icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.55);
  color: #0b5c4d;
  flex-shrink: 0;
}

.cta-register-download-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.cta-register-download-copy {
  display: grid;
  gap: 0.18rem;
  text-align: right;
}

.cta-register-download-copy strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #06261f !important;
}

.cta-register-download-copy small {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(6, 38, 31, 0.72) !important;
}

.cta-register-download--compact {
  width: 100%;
  justify-content: center;
  padding: 0.8rem 1rem;
}

.cta-register-download--compact .cta-register-download-icon {
  display: none;
}

.feature-list .feature-lock {
  color: #9a3b32;
  font-weight: 700;
}

.feature-list .feature-lock::before {
  background: #dc2626;
}

.feature-list .feature-unlock {
  color: #0e7c7b;
  font-weight: 700;
}

.side-download-note {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(11, 31, 42, 0.08);
}

.side-download-note p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.btn-block {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.plan-note {
  margin-top: 1.75rem;
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(31, 167, 160, 0.1), rgba(196, 163, 90, 0.1));
  border: 1px solid rgba(14, 124, 123, 0.18);
}

.plan-note h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.plan-note p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.85;
  font-size: 0.95rem;
}

.value-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pricing-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.6rem 1.5rem;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(8, 40, 44, 0.96), rgba(14, 70, 72, 0.92)),
    radial-gradient(420px 180px at 85% 30%, rgba(126, 255, 178, 0.18), transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.pricing-banner-kicker {
  margin: 0 0 0.35rem;
  color: #9ef0c8;
  font-weight: 700;
  font-size: 0.86rem;
}

.pricing-banner h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.pricing-banner-copy p:last-child {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  font-size: 0.95rem;
}

.section-tight {
  padding-top: 0.5rem;
  padding-bottom: 0.25rem;
}

.apps-value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.apps-value-strip > div {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 31, 42, 0.08);
  box-shadow: 0 10px 24px rgba(11, 31, 42, 0.05);
}

.apps-value-strip strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.apps-value-strip span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .value-grid,
  .apps-value-strip,
  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .value-grid,
  .apps-value-strip,
  .about-highlights {
    grid-template-columns: 1fr;
  }

  .cta-register-download {
    width: 100%;
  }

  .cta-banner-actions {
    width: 100%;
  }

  .cta-banner-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

/* Auth screen (register / verify) */
.auth-screen {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}

.auth-screen-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 360px at 12% 18%, rgba(31, 167, 160, 0.22), transparent 60%),
    radial-gradient(520px 300px at 88% 78%, rgba(196, 163, 90, 0.18), transparent 58%),
    linear-gradient(155deg, #07161d 0%, #12343f 46%, #0b1f2a 100%);
}

.auth-screen-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.auth-card {
  width: min(100%, 440px);
  padding: 2rem 1.75rem 1.85rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 252, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(14, 124, 123, 0.08);
}

.auth-card-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  font-weight: 800;
  color: var(--ink);
}

.auth-card-brand img {
  border-radius: 10px;
}

.auth-kicker {
  margin: 0 0 0.35rem;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 700;
}

.auth-card h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  line-height: 1.35;
  color: var(--ink);
}

.auth-lead {
  margin: 0 0 1.35rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.auth-form {
  display: grid;
}

.auth-label {
  margin-bottom: 0.45rem;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.auth-phone-input,
.auth-form .otp-input {
  width: 100%;
  border: 1px solid rgba(11, 31, 42, 0.12);
  border-radius: 14px;
  min-height: 3.15rem;
  padding: 0.75rem 1rem;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(11, 31, 42, 0.04);
}

.auth-phone-input:focus,
.auth-form .otp-input:focus {
  outline: none;
  border-color: rgba(14, 124, 123, 0.55);
  box-shadow: 0 0 0 4px rgba(31, 167, 160, 0.15);
}

.auth-hint {
  margin: 0.45rem 0 1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.auth-sms-tip {
  margin: -0.35rem 0 1.1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(196, 163, 90, 0.12);
  border: 1px solid rgba(196, 163, 90, 0.28);
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.7;
}

.auth-sms-tip a {
  color: var(--teal-bright);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-sms-tip--soft {
  display: none;
  margin: 0.85rem 0 1rem;
  background: rgba(14, 124, 123, 0.07);
  border-color: rgba(14, 124, 123, 0.18);
}

.auth-sms-tip--soft.is-visible {
  display: block;
}

.auth-perks {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(14, 124, 123, 0.06);
  border: 1px solid rgba(14, 124, 123, 0.12);
}

.auth-perks li {
  position: relative;
  padding-inline-start: 1.1rem;
  margin: 0.35rem 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

.auth-perks li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal-bright);
}

.auth-submit {
  width: 100%;
  min-height: 3.1rem;
  justify-content: center;
  font-weight: 700;
  border-radius: 14px;
}

.auth-secondary {
  display: block;
  margin-top: 0.95rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.auth-secondary:hover {
  color: var(--teal);
}

.otp-timer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.85rem 0 1.15rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.22);
}

.otp-timer-label {
  color: #9f1239;
  font-size: 0.9rem;
  font-weight: 600;
}

.otp-timer-value {
  font-variant-numeric: tabular-nums;
  font-size: 1.35rem;
  font-weight: 800;
  color: #dc2626;
  letter-spacing: 0.04em;
  dir: ltr;
}

.otp-timer-box.is-urgent {
  background: rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.4);
  animation: otp-pulse 1s ease-in-out infinite;
}

.otp-timer-box.is-expired {
  background: rgba(120, 120, 120, 0.1);
  border-color: rgba(100, 100, 100, 0.25);
}

.otp-timer-box.is-expired .otp-timer-value,
.otp-timer-box.is-expired .otp-timer-label {
  color: #6b7280;
}

@keyframes otp-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.01); }
}

.contact-aside h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 3rem 0 1.5rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  max-width: 28rem;
}

.footer-enamad {
  margin-top: 1rem;
}

.footer-enamad img {
  display: block;
  width: 125px;
  height: auto;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}

.footer-brand-row {
  color: var(--white);
}

.site-footer h3 {
  margin: 0 0 0.9rem;
  font-size: 1rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(18px, 24px, 0) scale(1.05); }
}

/* Online support widget */
.support-widget {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.support-fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 58px;
  padding: 0 1.1rem 0 0.9rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #ff6a3d 0%, #e11d48 55%, #be123c 100%);
  box-shadow:
    0 0 0 0 rgba(225, 29, 72, 0.55),
    0 14px 34px rgba(190, 18, 60, 0.45);
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  animation: supportGlow 1.8s ease-in-out infinite;
}

.support-fab:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px rgba(255, 106, 61, 0.28),
    0 18px 42px rgba(190, 18, 60, 0.5);
}

.support-fab-pulse,
.support-fab-pulse-2 {
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(255, 106, 61, 0.85);
  pointer-events: none;
}

.support-fab-pulse {
  animation: supportAlarm 1.5s ease-out infinite;
}

.support-fab-pulse-2 {
  inset: -12px;
  border-color: rgba(225, 29, 72, 0.55);
  animation: supportAlarm 1.5s ease-out infinite 0.45s;
}

.support-widget.is-open .support-fab {
  animation: none;
  background: linear-gradient(135deg, #1fa7a0, #0b1f2a);
  box-shadow: 0 14px 34px rgba(11, 31, 42, 0.35);
}

.support-widget.is-open .support-fab-pulse,
.support-widget.is-open .support-fab-pulse-2 {
  display: none;
}

.support-fab-icon {
  width: 1.55rem;
  height: 1.55rem;
  display: inline-grid;
  place-items: center;
}

.support-fab-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.support-fab-close {
  display: none;
}

.support-widget.is-open .support-fab-chat {
  display: none;
}

.support-widget.is-open .support-fab-close {
  display: inline-grid;
}

.support-fab-label {
  font-size: 0.95rem;
}

.support-panel {
  width: min(360px, calc(100vw - 2rem));
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 31, 42, 0.1);
  box-shadow: 0 24px 60px rgba(11, 31, 42, 0.28);
  transform-origin: bottom left;
  animation: supportIn 0.22s ease;
}

.support-panel[hidden] {
  display: none !important;
}

.support-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.95rem;
  background: linear-gradient(135deg, #0e7c7b, #0b1f2a);
  color: #fff;
}

.support-agent {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.support-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-avatar svg {
  width: 1.25rem;
  height: 1.25rem;
}

.support-agent strong {
  display: block;
  font-size: 0.98rem;
}

.support-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
}

.support-status i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #5ddea5;
  box-shadow: 0 0 0 3px rgba(93, 222, 165, 0.25);
}

.support-close {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}

.support-close svg {
  width: 1rem;
  height: 1rem;
}

.support-body {
  height: 240px;
  overflow-y: auto;
  padding: 1rem;
  background:
    linear-gradient(180deg, #f7fbfb, #f3f0ea);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.support-bubble {
  max-width: 88%;
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.65;
  white-space: pre-line;
}

.support-bubble-agent {
  align-self: flex-start;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(11, 31, 42, 0.08);
  border-bottom-right-radius: 6px;
}

.support-bubble-user {
  align-self: flex-end;
  background: #0e7c7b;
  color: #fff;
  border-bottom-left-radius: 6px;
}

.support-form {
  padding: 0.85rem;
  display: grid;
  gap: 0.55rem;
  background: #fff;
  border-top: 1px solid rgba(11, 31, 42, 0.08);
}

.support-form input,
.support-compose textarea {
  width: 100%;
  border: 1px solid rgba(11, 31, 42, 0.12);
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: #fafafa;
  outline: none;
}

.support-form input:focus,
.support-compose textarea:focus {
  border-color: rgba(14, 124, 123, 0.45);
  box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.12);
}

.support-compose {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
  align-items: end;
}

.support-compose textarea {
  resize: none;
  min-height: 48px;
}

.support-send {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #1fa7a0, #0b1f2a);
  color: #fff;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
}

.support-send svg {
  width: 1.15rem;
  height: 1.15rem;
  transform: scaleX(-1);
}

.support-hint {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.support-hint.is-ok {
  color: #0e7c7b;
  font-weight: 600;
}

.support-hint.is-error {
  color: #b42318;
  font-weight: 600;
}

@keyframes supportPulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}

@keyframes supportAlarm {
  0% { transform: scale(1); opacity: 0.95; }
  70% { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

@keyframes supportGlow {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(225, 29, 72, 0.55),
      0 14px 34px rgba(190, 18, 60, 0.45);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(255, 106, 61, 0),
      0 16px 38px rgba(190, 18, 60, 0.55);
  }
}
  70% { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}

@keyframes supportIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 720px) {
  .support-widget {
    left: 0.85rem;
    bottom: 0.85rem;
  }

  .support-fab-label {
    display: none;
  }

  .support-fab {
    width: 58px;
    min-height: 58px;
    padding: 0;
    justify-content: center;
  }

  .support-panel {
    width: min(340px, calc(100vw - 1.5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-fab,
  .support-fab-pulse,
  .support-fab-pulse-2,
  .support-panel {
    animation: none;
  }
}


/* Responsive */
@media (max-width: 960px) {
  .app-grid,
  .category-grid,
  .promise-grid,
  .about-grid,
  .detail-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .filter-bar {
    grid-template-columns: 1fr 1fr;
  }

  .header-phones-label {
    display: none;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .header-phones a {
    font-size: 0.76rem;
  }

  .site-nav {
    gap: 0.15rem;
  }

  .nav-link {
    padding: 0.5rem 0.65rem;
    font-size: 0.92rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-gallery {
    justify-self: center;
    width: min(100%, 360px);
  }

  .hero-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-thumbs img:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 64px;
  }

  .header-inner {
    gap: 0.45rem;
  }

  .brand {
    flex-shrink: 0;
    gap: 0.45rem;
    min-width: 0;
    max-width: 42%;
  }

  .brand-mark {
    width: 1.85rem;
    height: 1.85rem;
  }

  .brand-text {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    order: 3;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
  }

  .header-phones {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    margin-inline-start: auto;
    margin-inline-end: 0.15rem;
    justify-content: flex-end;
    gap: 0.35rem;
  }

  .header-phones-label {
    display: none;
  }

  .header-phones-list {
    align-items: flex-end;
  }

  .header-phones a {
    font-size: 0.7rem;
  }

  .site-nav {
    margin-inline: 0;
    position: absolute;
    top: calc(var(--header-h) - 0.4rem);
    left: 1.25rem;
    right: 1.25rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: 16px;
    background: rgba(247, 244, 238, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding: 2.5rem 0 3rem;
  }

  .hero-content {
    text-align: center;
    margin-inline: auto;
    max-width: 100%;
  }

  .hero-gallery {
    justify-self: center;
    width: min(100%, 280px);
  }

  .hero-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-actions,
  .section-cta {
    justify-content: center;
  }

  .app-grid,
  .category-grid,
  .promise-grid,
  .about-grid,
  .detail-layout,
  .contact-layout,
  .footer-grid,
  .form-row,
  .filter-bar {
    grid-template-columns: 1fr;
  }

  .cta-banner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .side-panel {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-orb { animation: none; }
  .btn, .app-tile, .category-card, .hero-thumbs img { transition: none; }
}
.apps-results {
  position: relative;
  min-height: 120px;
  transition: opacity 0.2s ease;
}

.apps-results.is-loading {
  opacity: 0.45;
  pointer-events: none;
}

.hero-seo-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(232, 212, 168, 0.92);
}

.hero-seo-line {
  margin: 0.55rem 0 0;
  max-width: 34rem;
  font-size: clamp(0.95rem, 1.7vw, 1.08rem);
  line-height: 1.75;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.section-seo-intro {
  padding-top: 0.5rem;
}

.seo-intro {
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.6rem 1.4rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.55));
  border: 1px solid rgba(15, 40, 50, 0.08);
}

.seo-intro h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.45;
}

.seo-intro p {
  margin: 0 0 0.75rem;
  line-height: 1.9;
  color: rgba(20, 40, 50, 0.84);
}

.seo-intro p:last-child {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
  margin: 0 auto;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(15, 40, 50, 0.1);
  background: rgba(255, 255, 255, 0.72);
  padding: 0.15rem 1rem 0.15rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 0;
  font-weight: 700;
  line-height: 1.6;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: left;
  font-weight: 700;
  color: rgba(20, 40, 50, 0.45);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1rem;
  line-height: 1.85;
  color: rgba(20, 40, 50, 0.8);
}
