/* ============================================================
   Tech Corners — shared inner-page design system
   Dark blueprint theme, brand blue, bilingual (LTR/RTL).
   Self-contained (home keeps style.css).
   ============================================================ */
:root {
  --bg: #050a16;
  --bg-2: #0a1122;
  --card: rgba(14, 28, 58, .5);
  --card-2: rgba(18, 34, 68, .7);
  --line: rgba(120, 170, 255, .14);
  --line-2: rgba(120, 170, 255, .26);
  --ink: #e8eefc;
  --ink-2: #cdd8ef;
  --muted: #93a4c4;
  --muted-2: rgba(150, 185, 225, .6);
  --accent: #4c97de;
  --accent-2: #0561b8;
  --mono: #7cc4ff;
  --ok: #35e07f;
  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.inner {
  margin: 0;
  background: linear-gradient(180deg, #050a16 0%, #060c1c 60%, #050a16 100%);
  color: var(--ink);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.inner[dir="rtl"] { font-family: 'IBM Plex Sans Arabic', 'Space Grotesk', system-ui, sans-serif; }
@media (hover: hover) { body.inner, body.inner a, body.inner button { cursor: none; } }
body.nav-locked { overflow: hidden; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: #9fd0ff; }
img { max-width: 100%; height: auto; }
h1, h2, h3 { letter-spacing: -.02em; line-height: 1.12; margin: 0 0 .5em; }
body.inner[dir="rtl"] h1, body.inner[dir="rtl"] h2, body.inner[dir="rtl"] h3 { letter-spacing: 0; line-height: 1.3; }
::selection { background: rgba(90, 170, 255, .35); }

/* ---------- background: blueprint grid + cursor spotlight ---------- */
#tc-grid, #tc-spot, #tc-grid-glow { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
#tc-grid {
  background-image:
    linear-gradient(to right, rgba(76, 151, 222, .06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(76, 151, 222, .06) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 45%, transparent 92%);
  mask-image: radial-gradient(ellipse at 50% 30%, #000 45%, transparent 92%);
}
#tc-spot {
  opacity: 0; transition: opacity .35s ease; mix-blend-mode: screen;
  background: radial-gradient(circle 240px at var(--mx, -200px) var(--my, -200px),
    rgba(76, 151, 222, .14), rgba(76, 151, 222, .05) 42%, transparent 68%);
}
#tc-grid-glow {
  opacity: 0; transition: opacity .35s ease;
  background-image:
    linear-gradient(to right, rgba(140, 190, 255, .5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(140, 190, 255, .5) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle 165px at var(--mx, -200px) var(--my, -200px), #000 0%, rgba(0,0,0,.35) 55%, transparent 76%);
  mask-image: radial-gradient(circle 165px at var(--mx, -200px) var(--my, -200px), #000 0%, rgba(0,0,0,.35) 55%, transparent 76%);
}
body.cursor-active #tc-spot, body.cursor-active #tc-grid-glow { opacity: 1; }

#tc-cursor-dot {
  position: fixed; left: 0; top: 0; z-index: 9999; pointer-events: none;
  width: 8px; height: 8px; margin: -4px 0 0 -4px; border-radius: 50%;
  background: #0561B8; box-shadow: 0 0 10px rgba(5, 97, 184, .45);
}
#tc-cursor {
  position: fixed; left: 0; top: 0; z-index: 9999; pointer-events: none; box-sizing: border-box;
  width: 26px; height: 26px; border: 1.5px solid rgba(180, 220, 255, .9);
  box-shadow: 0 0 14px rgba(120, 190, 255, .45);
  transition: border-color .2s ease, background-color .2s ease;
}
#tc-cursor.lock { border-color: rgba(150, 205, 255, 1); background: rgba(90, 150, 255, .07); box-shadow: 0 0 22px rgba(90,150,255,.5); }
@media (hover: none) { #tc-cursor, #tc-cursor-dot, #tc-spot, #tc-grid-glow { display: none; } }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 5vw, 40px); }
.page { position: relative; z-index: 1; }
section { position: relative; z-index: 1; }
.section { padding-block: clamp(48px, 8vw, 104px); }
.kicker {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mono); margin-bottom: 14px;
}
body.inner[dir="rtl"] .kicker { letter-spacing: .08em; font-family: 'IBM Plex Mono', monospace; }
.lead { font-size: clamp(16px, 2vw, 19px); color: var(--ink-2); max-width: 62ch; }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  min-height: 44px; font-family: inherit; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #eaf3ff; color: #0a1428; box-shadow: 0 0 34px rgba(120, 190, 255, .22); }
.btn-primary:hover { background: #fff; color: #0a1428; }
.btn-accent { background: linear-gradient(135deg, #2f6bff, #0561b8); color: #fff; }
.btn-accent:hover { color: #fff; box-shadow: 0 8px 30px rgba(5, 97, 184, .4); }
.btn-ghost { border-color: var(--line-2); color: var(--ink); background: rgba(120, 170, 255, .04); }
.btn-ghost:hover { border-color: var(--accent); color: #9fd0ff; }
.btn-book { background: linear-gradient(135deg, #2f6bff, #0561b8); color: #fff; }
.btn-book:hover { color: #fff; box-shadow: 0 8px 26px rgba(5, 97, 184, .45); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 14px clamp(18px, 5vw, 40px);
  background: rgba(5, 10, 22, .55); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: background .25s ease, border-color .25s ease;
}
.nav.scrolled { background: rgba(5, 10, 22, .9); border-bottom-color: var(--line); }
.nav-brand { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); }
.nav-word { font-weight: 700; letter-spacing: .2em; font-size: 16px; }
body.inner[dir="rtl"] .nav-word { letter-spacing: .04em; }
.nav-menu { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.nav-links { display: flex; align-items: center; gap: clamp(10px, 1.8vw, 24px); list-style: none; margin: 0; padding: 0; }
.nav-link {
  font-size: 14.5px; color: var(--muted); padding: 6px 2px; position: relative; transition: color .18s ease;
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-lang { display: flex; align-items: center; gap: 7px; font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--muted); }
.nav-lang a { color: var(--muted-2); }
.nav-lang a.on { color: var(--accent); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: none; border: 0; padding: 0;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- page hero ---------- */
.page-hero { padding-top: clamp(120px, 16vh, 190px); padding-bottom: clamp(30px, 5vw, 56px); }
.page-hero h1 { font-size: clamp(34px, 6vw, 68px); font-weight: 600; color: #eaf3ff; }
.page-hero .lead { margin-top: 18px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.breadcrumbs { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--muted-2); margin-bottom: 18px; letter-spacing: .06em; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs span { opacity: .5; margin: 0 6px; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 26px;
  transition: border-color .22s ease, transform .22s ease, background .22s ease;
}
.card:hover { border-color: var(--line-2); transform: translateY(-3px); background: var(--card-2); }
.card h3 { font-size: 20px; color: #eaf3ff; }
.card p { color: var(--muted); margin: 8px 0 0; font-size: 15px; }
.tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--mono); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* service rows */
.svc-row { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 30px 0; border-top: 1px solid var(--line); }
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-num { font-family: 'IBM Plex Mono', monospace; color: var(--accent); font-size: 15px; }
.svc-row h3 { font-size: clamp(21px, 2.4vw, 27px); color: #eaf3ff; }
.svc-row .bullets { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.svc-row .bullets li { position: relative; padding-inline-start: 20px; color: var(--ink-2); font-size: 15px; }
.svc-row .bullets li::before { content: '▹'; position: absolute; inset-inline-start: 0; color: var(--accent); }
.svc-row .row-cta { margin-top: 18px; }

/* packages */
.pkg-table { display: grid; gap: 16px; }
.pkg { display: grid; grid-template-columns: 1.1fr 2fr auto; gap: 22px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 22px 26px; }
.pkg:hover { border-color: var(--line-2); }
.pkg-name { font-size: 19px; font-weight: 600; color: #eaf3ff; }
.pkg-inc { color: var(--muted); font-size: 14.5px; }
.pkg-price { font-family: 'IBM Plex Mono', monospace; font-size: 15px; color: var(--mono); white-space: nowrap; text-align: end; }
.pkg-price small { display: block; color: var(--muted-2); font-size: 11px; letter-spacing: .1em; }
.pkg-cta { margin-top: 6px; }
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.note { color: var(--muted); font-size: 14px; border-inline-start: 2px solid var(--accent); padding-inline-start: 14px; }

/* about */
.founder-card { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.founder-badge { width: 80px; height: 80px; border-radius: 16px; background: linear-gradient(135deg, #123, #0561b8); display: grid; place-items: center; }
.vmp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vmp .card h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .1em; color: var(--mono); font-family: 'IBM Plex Mono', monospace; }

/* ---------- contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: 40px; align-items: start; }
.field { display: block; margin-bottom: 18px; }
.field > label { display: block; font-size: 13px; letter-spacing: .04em; color: var(--muted); margin-bottom: 7px; }
.field .req { color: var(--accent); }
.input, .select, .textarea {
  width: 100%; background: rgba(8, 16, 34, .8); border: 1px solid var(--line-2); border-radius: 10px;
  color: var(--ink); font: inherit; font-size: 15px; padding: 12px 14px; transition: border-color .18s ease, box-shadow .18s ease;
}
.textarea { min-height: 130px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(76, 151, 222, .18); }
.field.err .input, .field.err .select, .field.err .textarea { border-color: #ff6b6b; }
.field .msg { font-size: 12.5px; color: #ff8a8a; margin-top: 6px; min-height: 1px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 13px; color: var(--muted-2); margin-top: 6px; }
.form-status { margin-top: 16px; font-size: 15px; border-radius: 10px; padding: 0; }
.form-status.ok { color: var(--ok); }
.form-status.bad { color: #ff8a8a; }
.contact-side .card { margin-bottom: 16px; }
.contact-side .ci { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.contact-side .ci:last-child { border-bottom: 0; }
.contact-side .ci .k { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted-2); letter-spacing: .1em; width: 74px; }
.spin { display: inline-block; width: 15px; height: 15px; border: 2px solid rgba(255,255,255,.4); border-top-color: #0a1428; border-radius: 50%; animation: tc-spin .7s linear infinite; }
@keyframes tc-spin { to { transform: rotate(360deg); } }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; background: radial-gradient(ellipse at 50% 0%, rgba(18,42,95,.5), transparent 65%); border-top: 1px solid var(--line); }
.cta-band h2 { font-size: clamp(26px, 4vw, 44px); color: #eaf3ff; }

/* ---------- footer ---------- */
.site-footer { position: relative; z-index: 1; border-top: 1px solid var(--line); margin-top: clamp(40px, 8vw, 90px); background: #070d1c; }
.foot-grid { max-width: var(--maxw); margin-inline: auto; padding: clamp(38px, 6vw, 64px) clamp(18px, 5vw, 40px) 30px; display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 34px; }
.foot-brand .foot-tag { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 32ch; }
.foot-col h3 { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot-col a, .foot-col li { color: var(--muted); font-size: 14px; }
.foot-col a:hover { color: #9fd0ff; }
.foot-bar { border-top: 1px solid var(--line); max-width: var(--maxw); margin-inline: auto; padding: 16px clamp(18px, 5vw, 40px); display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; color: var(--muted-2); font-size: 12.5px; font-family: 'IBM Plex Mono', monospace; }

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed; inset-block-end: 22px; inset-inline-end: 22px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #073; box-shadow: 0 10px 30px rgba(0,0,0,.4), 0 0 0 rgba(37,211,102,.5);
  animation: wa-pulse 2.6s ease-out infinite;
}
.wa-fab:hover { color: #062; transform: scale(1.06); }
@keyframes wa-pulse { 0% { box-shadow: 0 10px 30px rgba(0,0,0,.4), 0 0 0 0 rgba(37,211,102,.45); } 70%,100% { box-shadow: 0 10px 30px rgba(0,0,0,.4), 0 0 0 16px rgba(37,211,102,0); } }
@media (prefers-reduced-motion: reduce) { .wa-fab { animation: none; } }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-reveal="2"] { transition-delay: .08s; }
[data-reveal][data-reveal="3"] { transition-delay: .16s; }
[data-reveal][data-reveal="4"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 26px; }
  .grid-3, .care-grid, .vmp { grid-template-columns: repeat(2, 1fr); }
  .pkg { grid-template-columns: 1fr auto; }
  .pkg-inc { grid-column: 1 / -1; order: 3; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); z-index: 45;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 8px;
    background: rgba(7, 12, 26, .98); backdrop-filter: blur(18px); border-inline-start: 1px solid var(--line);
    padding: 84px 26px 30px; transform: translateX(100%); transition: transform .3s cubic-bezier(.16,1,.3,1);
  }
  body.inner[dir="rtl"] .nav-menu { inset: 0 auto 0 0; border-inline: 0; border-inline-end: 1px solid var(--line); transform: translateX(-100%); }
  .nav.open .nav-menu { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-link { font-size: 17px; padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav-link.active::after { display: none; }
  .nav-actions { flex-direction: column; align-items: stretch; gap: 14px; margin-top: 14px; }
  .nav-actions .btn-book { width: 100%; }
  .grid-2, .grid-3, .care-grid, .vmp { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .page-hero { padding-top: 120px; }
}
@media (max-width: 420px) {
  .foot-grid { grid-template-columns: 1fr; }
  .pkg { grid-template-columns: 1fr; text-align: start; }
  .pkg-price { text-align: start; }
  .wa-fab { width: 52px; height: 52px; inset-block-end: 16px; inset-inline-end: 16px; }
}

/* ---------- legal (privacy / terms) prose ---------- */
.legal-meta { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--muted-2); }
.legal { max-width: 820px; }
.legal-intro p { font-size: 1.02rem; color: var(--ink-2); }
.legal-toc { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; margin: 24px 0; }
.legal-toc .kicker { margin-bottom: 10px; }
.legal-toc ol { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 2rem; color: var(--muted); }
.legal-toc li { margin: .25rem 0; break-inside: avoid; font-size: 14px; }
@media (max-width: 560px) { .legal-toc ol { columns: 1; } }
.legal-rule { height: 1px; background: var(--line); border: 0; margin: 8px 0 4px; }
.legal section { margin: 30px 0; }
.legal h2 { font-size: 1.28rem; color: #fff; margin: 0 0 .5rem; }
.legal p { margin: .7rem 0; color: var(--ink-2); }
.legal ul { margin: .7rem 0; padding-inline-start: 1.3rem; }
.legal li { margin: .45rem 0; color: var(--ink-2); }
.legal-other { margin-top: 34px; font-family: 'IBM Plex Mono', monospace; font-size: 14px; }

/* ---------- Work: editorial case studies + device mockups ---------- */
.cases { display: grid; gap: clamp(64px, 10vw, 140px); }
.case { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 76px); align-items: center; }
.case:nth-child(even) .case-text { order: 2; }
.case-num { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--mono); margin-bottom: 16px; }
body.inner[dir="rtl"] .case-num { letter-spacing: .08em; }
.case-title { font-size: clamp(28px, 4vw, 48px); font-weight: 600; color: #eef4ff; margin: 0 0 16px; line-height: 1.08; }
.case-desc { color: var(--ink-2); font-size: clamp(15px, 1.6vw, 17px); line-height: 1.7; max-width: 48ch; }
.case-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill-tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line-2); border-radius: 999px; padding: 7px 15px; transition: border-color .2s ease, color .2s ease; }
.case:hover .pill-tag { border-color: rgba(120,170,255,.4); }
body.inner[dir="rtl"] .pill-tag { letter-spacing: 0; }

/* device frames */
.case-visual { position: relative; }
.case-visual::after { content: ''; position: absolute; inset: 10% 6% -12% 6%; z-index: -1; background: radial-gradient(ellipse at 50% 40%, rgba(76,151,222,.28), transparent 70%); filter: blur(20px); }
.mock-screen { position: relative; overflow: hidden; background: #0a1730; border: 1px solid rgba(120,170,255,.22); box-shadow: 0 34px 80px rgba(0,0,0,.55); }
.mock-laptop .mock-screen { border-radius: 12px 12px 0 0; aspect-ratio: 16 / 10; border-bottom: 0; }
.mock-base { height: 12px; border-radius: 0 0 14px 14px; background: linear-gradient(180deg, #1a2740, #0c1526); box-shadow: 0 20px 30px rgba(0,0,0,.5); position: relative; }
.mock-base::after { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 22%; height: 4px; border-radius: 0 0 6px 6px; background: rgba(120,170,255,.18); }
.mock-phone { display: flex; justify-content: center; }
.mock-phone .mock-screen { width: min(240px, 62%); aspect-ratio: 9 / 18.5; border-radius: 28px; border: 7px solid #131f36; }
.mock-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* abstract placeholder UI inside the screen */
.mock-ui { position: absolute; inset: 0; background: linear-gradient(160deg, #0b1932, #0a1428 60%, #0c1a36); display: flex; flex-direction: column; }
.mock-ui .ui-top { height: 26px; flex: none; display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid rgba(120,170,255,.12); }
.mock-ui .ui-top i { width: 8px; height: 8px; border-radius: 50%; background: rgba(120,170,255,.35); }
.mock-ui .ui-body { flex: 1; display: flex; min-height: 0; }
.mock-ui .ui-side { width: 26%; border-inline-end: 1px solid rgba(120,170,255,.12); padding: 14px 12px; display: grid; gap: 10px; align-content: start; }
.mock-ui .ui-side span { height: 9px; border-radius: 4px; background: rgba(120,170,255,.16); }
.mock-ui .ui-side span:first-child { background: rgba(120,170,255,.34); }
.mock-ui .ui-main { flex: 1; padding: 16px; display: grid; gap: 14px; align-content: start; }
.mock-ui .ui-hd { height: 16px; width: 45%; border-radius: 5px; background: rgba(140,196,255,.5); }
.mock-ui .ui-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mock-ui .ui-cards span { height: 42px; border-radius: 8px; background: rgba(120,170,255,.12); border: 1px solid rgba(120,170,255,.16); }
.mock-ui .ui-cards span:nth-child(2) { background: rgba(76,151,222,.22); }
.mock-ui .ui-chart { height: 40%; min-height: 60px; border-radius: 8px; background: linear-gradient(180deg, rgba(76,151,222,.16), transparent), repeating-linear-gradient(90deg, rgba(120,170,255,.1) 0 1px, transparent 1px 22px); border: 1px solid rgba(120,170,255,.14); }
.mock-phone .ui-side { display: none; }
.mock-phone .ui-cards { grid-template-columns: 1fr 1fr; }

@media (max-width: 860px) {
  .case { grid-template-columns: 1fr; gap: 26px; }
  .case:nth-child(even) .case-text { order: 0; }
  .case-visual { order: -1; }
  .case-desc { max-width: none; }
}

/* real project shots (already framed) */
.case-shot { display: flex; justify-content: center; }
.case-shot img { width: 100%; height: auto; max-height: 620px; object-fit: contain; display: block; filter: drop-shadow(0 30px 60px rgba(0,0,0,.5)); }
