.app-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.app-hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.app-hero-blob--a {
  top: -60px; right: -40px;
  width: 460px; height: 420px;
  filter: blur(64px);
  background: radial-gradient(circle, rgba(61,220,132,.14), transparent 65%);
  animation: svc-drift 22s ease-in-out infinite;
}
.app-hero-blob--b {
  bottom: 0; left: -40px;
  width: 360px; height: 320px;
  filter: blur(60px);
  background: radial-gradient(circle, rgba(109,93,252,.12), transparent 65%);
  animation: svc-drift 26s ease-in-out infinite reverse;
}
.app-hero-in {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
}
.app-hero-copy h1 {
  font-size: clamp(32px, 3.8vw, 56px);
  letter-spacing: -.04em;
  line-height: 1.06;
  margin-bottom: 20px;
}
.app-hero-sub {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 28px;
}
.app-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.app-hero-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  width: fit-content;
}
.app-badge { text-align: center; }
.app-badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}
.app-badge-lbl {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  display: block;
  margin-top: 3px;
}
.app-badge-sep {
  width: 1px;
  height: 32px;
  background: var(--line);
}

/* Phone illustration */
.app-hero-phones {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.app-phones-svg {
  width: 100%;
  max-width: 460px;
  animation: svc-float 5s ease-in-out infinite;
  filter: drop-shadow(0 24px 40px rgba(60,40,120,.14));
}
@keyframes svc-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.app-hero-caption {
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
}

/* Why mobile grid */
.app-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.app-why-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 20px;
  transition: .35s cubic-bezier(.2,.7,.2,1);
}
.app-why-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: 0 18px 36px -20px rgba(60,40,120,.16);
}
.app-why-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(109,93,252,.07);
  border: 1px solid rgba(109,93,252,.14);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.app-why-icon svg {
  width: 18px; height: 18px;
  stroke: var(--v1);
  stroke-width: 1.5;
  fill: none;
}
.app-why-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.015em;
}
.app-why-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Platform cards */
.app-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.app-platform-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: .35s cubic-bezier(.2,.7,.2,1);
}
.app-platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -24px rgba(60,40,120,.2);
}
.app-platform-card--android:hover { border-color: rgba(61,220,132,.4); }
.app-platform-card--flutter { border-color: rgba(109,93,252,.3); }
.app-platform-card--flutter:hover { border-color: var(--v1); box-shadow: 0 24px 48px -20px rgba(109,93,252,.3); }
.app-platform-card--ios:hover { border-color: rgba(24,24,27,.3); }
.app-platform-card--featured { background: linear-gradient(160deg, rgba(109,93,252,.03), rgba(91,141,239,.03)); }
.app-platform-featured-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--v1), var(--v2));
  color: white;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.app-platform-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.app-platform-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.app-platform-icon--android { background: rgba(61,220,132,.12); border: 1px solid rgba(61,220,132,.2); }
.app-platform-icon--flutter { background: rgba(109,93,252,.1); border: 1px solid rgba(109,93,252,.18); }
.app-platform-icon--ios     { background: rgba(24,24,27,.06); border: 1px solid rgba(24,24,27,.12); }
.app-platform-head h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -.02em;
}
.app-platform-tag {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
      line-height: 1.5;
    display: block;
}
.app-platform-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.app-platform-pros {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.app-platform-pros li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
}
.app-platform-pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--v1);
  font-size: 11px;
  font-weight: 700;
  top: 1px;
}
.app-platform-best {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--muted);
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
}
.app-platform-best span { font-weight: 700; color: var(--ink-soft); }
.app-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--v1);
  text-decoration: none;
  transition: gap .2s;
}
.app-platform-link:hover { gap: 9px; }
.app-platform-link svg { width: 13px; height: 13px; }

/* App category tiles */
.app-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.app-cat-tile {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px;
  background: var(--bg);
  text-decoration: none;
  color: inherit;
  transition: .35s cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
}
.app-cat-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity .3s;
  border-radius: 16px 16px 0 0;
}
.app-cat-tile:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 18px 36px -18px rgba(60,40,120,.18); }
.app-cat-tile:hover::before { opacity: 1; }
.app-cat-tile--ecom::before    { background: linear-gradient(90deg, #6d5dfc, #9b5cf6); }
.app-cat-tile--fintech::before { background: linear-gradient(90deg, #3DDC84, #00C853); }
.app-cat-tile--realtime::before{ background: linear-gradient(90deg, #5b8def, #6d5dfc); }
.app-cat-tile--creator::before { background: linear-gradient(90deg, #f59e0b, #ef4444); }
.app-cat-tile--ops::before     { background: linear-gradient(90deg, #6b7280, #374151); }
.app-cat-tile--saas::before    { background: linear-gradient(90deg, #8b5cf6, #5b8def); }
.app-cat-ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(109,93,252,.07);
  border: 1px solid rgba(109,93,252,.12);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.app-cat-ico svg {
  width: 20px; height: 20px;
  stroke: var(--v1);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.app-cat-tile h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 7px;
  letter-spacing: -.015em;
}
.app-cat-tile p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
  flex: 1;
}
.app-cat-proof {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--v1);
  margin-top: auto;
}

/* Live apps grid */
.app-live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.app-live-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  transition: .35s cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
}
.app-live-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109,93,252,.25);
  box-shadow: 0 16px 40px -16px rgba(60,40,120,.16);
}

/* New head: logo + name + badge */
.app-live-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.app-live-thumb {
  width: 48px; height: 48px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-soft);
}
.app-live-thumb img {
  width: 48px; height: 48px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}
.app-live-info { min-width: 0; }
.app-live-info h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.015em;
  margin: 0 0 4px;
  line-height: 1.2;
}
.app-live-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--v1);
  background: rgba(109,93,252,.08);
  border: 1px solid rgba(109,93,252,.16);
  padding: 2px 8px;
  border-radius: 999px;
  line-height: 1.5;
}

.app-live-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 12px;
  flex: 1;
}
.app-live-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.app-live-tags span {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 999px;
}

/* 6-step process strip */
.app-proc-strip {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.app-proc-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 12px 0;
}
.app-proc-step--last .app-proc-num--done {
  background: linear-gradient(135deg, var(--v1), var(--v2));
  color: white;
}
.app-proc-num {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: grid;
  place-items: center;
}
.app-proc-icon {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: rgba(109,93,252,.07);
  border: 1px solid rgba(109,93,252,.14);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.app-proc-icon svg {
  width: 20px; height: 20px;
  stroke: var(--v1);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.app-proc-step h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -.015em;
}
.app-proc-step p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.app-proc-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 56px;
  opacity: .5;
}
.app-proc-arrow svg { width: 32px; height: 8px; }

/* --- App Development responsive (MUST be after base CSS) --- */
@media (max-width: 1024px) {
   
  .app-hero-badges   { max-width: 100%;    }
  .app-why-grid      { grid-template-columns: repeat(2, 1fr); }
  .app-platform-grid { grid-template-columns: 1fr; }
  .app-cat-grid      { grid-template-columns: repeat(2, 1fr); }
  .app-live-grid     { grid-template-columns: repeat(2, 1fr); }
  .app-proc-strip    { flex-wrap: wrap; gap: 12px; }
  .app-proc-arrow    { display: none; }
  .app-proc-step     { flex: 0 0 calc(33.33% - 8px); max-width: calc(33.33% - 8px); }
}
@media (max-width: 768px) {
  .app-hero-in       { grid-template-columns: 1fr; padding-top: 116px; }
  .app-hero-phones   { display: none; }
}
@media (max-width: 640px) {
  .app-hero-in       { padding-top: 104px; padding-bottom: 56px; }
  .app-hero-badges   { gap: 8px; padding: 12px 14px; }
  .app-why-grid      { grid-template-columns: 1fr; }
  .app-cat-grid      { grid-template-columns: 1fr; }
  .app-live-grid     { grid-template-columns: 1fr; }
  .app-proc-step     { flex: 0 0 calc(50% - 6px); max-width: calc(50% - 6px); }
}

/* ============================================
   WEB DEVELOPMENT PAGE
   ============================================ */

/* Hero */
