/* ===================================================
   visualspin — Stylesheet
   =================================================== */

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0D0812;
  --bg-2:        #130D1C;
  --bg-card:     #160E20;
  --pink:        #E83658;
  --pink-dim:    rgba(232, 54, 88, 0.15);
  --purple:      #98509A;
  --purple-dim:  rgba(152, 80, 154, 0.12);
  --text:        #FFFFFF;
  --muted:       #9890B0;
  --border:      rgba(255, 255, 255, 0.07);
  --border-pink: rgba(232, 54, 88, 0.25);
  --r:           16px;
  --r-sm:        10px;
  --ease:        0.28s cubic-bezier(.4,0,.2,1);
  --max-w:       1160px;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.18;
  font-weight: 700;
}

/* ── Utility ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: 80px; }

.accent {
  background: linear-gradient(100deg, #E83658 20%, #98509A 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.overline {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 { font-size: clamp(24px, 2.8vw, 40px); }
.section-header p.lead {
  color: var(--muted);
  font-size: 15px;
  margin-top: 12px;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #E83658 0%, #B02080 100%);
  color: #fff;
  box-shadow: 0 4px 22px rgba(232,54,88,.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,54,88,.48);
}

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.22);
}
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }

.btn-lg { padding: 13px 28px; font-size: 15px; }

/* ── Navigation ───────────────────────────────────── */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13,8,18,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-block: 15px;
}

.nav-logo img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  transition: color var(--ease);
}
.nav-links a:hover { color: #fff; }

.nav-cta { padding: 7px 16px; font-size: 1rem; margin-left: 4px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  transition: var(--ease);
}
.nav-hamburger { gap: 4px; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(13,8,18,.98);
  border-bottom: 1px solid var(--border);
  padding: 4px 24px 14px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #fff; }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-block: 60px 60px;
  overflow: hidden;
}

/* animated beam canvas */
.hero-beams-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  filter: blur(14px);
  opacity: 0.85;
}

/* gradient fade at bottom — hides the overflow:hidden clip edge */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 0;
}

/* soft radial glow blobs — no hard edges */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-blob-top {
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle,
    rgba(152, 80, 154, 0.20) 0%,
    rgba(232, 54, 88, 0.09) 45%,
    transparent 68%);
  top: -360px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(12px);
}
.hero-blob-bottom {
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse,
    rgba(152, 80, 154, 0.12) 0%,
    rgba(232, 54, 88, 0.06) 50%,
    transparent 70%);
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(16px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 72fr 28fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.hero-text {
  /* fills the left column */
}

.hero-text h1 {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -.018em;
  line-height: 1.22;
  -webkit-mask-image: linear-gradient(to bottom, #000 42%, rgba(0,0,0,0.55) 100%);
  mask-image: linear-gradient(to bottom, #000 42%, rgba(0,0,0,0.55) 100%);
}

.hero-sub {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 460px;
}

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

.hero-image {
  position: relative;
  overflow: hidden;
  align-self: end;
}

/* editorial bottom fade — photo dissolves into the dark bg, no hard edge */
.hero-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 360px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Problem ──────────────────────────────────────── */
.problem {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 22px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.pain-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-pink);
  box-shadow: 0 0 40px rgba(232,54,88,.07);
}

.pain-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-dim), var(--purple-dim));
  border-radius: 12px;
  margin-bottom: 16px;
}

.pain-icon img { width: 36px; height: 36px; object-fit: contain; display: block; }
.pain-card h3 { font-size: 16px; margin-bottom: 8px; }
.pain-card p  { color: var(--muted); line-height: 1.65; font-size: 15.5px; }

.problem-closing {
  text-align: center;
  padding: 64px 32px 0;
  position: relative;
  overflow: hidden;
}
.problem-closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}
.problem-closing::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 100vw);
  height: 220px;
  background: radial-gradient(ellipse, rgba(232,54,88,.07) 0%, rgba(152,80,154,.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.problem-closing .closing-sub {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.problem-closing .closing-main {
  position: relative;
  z-index: 1;
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -.018em;
}

/* ── About ────────────────────────────────────────── */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image { position: relative; }
.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 35%;
  border-radius: var(--r);
  display: block;
}

.about-text .overline { margin-bottom: 10px; }
.about-text h2 {
  font-size: clamp(24px, 2.8vw, 40px);
  margin-bottom: 32px;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.72;
  font-size: 15.5px;
}
.about-text p.intro { color: #fff; font-weight: 500; font-size: 15.5px; }

.promise {
  border-left: 2.5px solid var(--pink);
  padding-left: 18px;
  font-style: italic;
  margin: 28px 0 36px !important;
}

/* ── Cases ────────────────────────────────────────── */
.cases {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

.case-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 24px;
  transition: border-color var(--ease);
}
.case-block:hover { border-color: rgba(255,255,255,.12); }

.case-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

/* header: avatar + name only */
.case-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.case-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-pink);
  flex-shrink: 0;
}

.case-header h3  { font-size: 21px; margin-bottom: 4px; }
.case-header > div > p { color: var(--muted); font-size: 15.5px; }

/* case body */
.case-body { display: flex; flex-direction: column; gap: 18px; }

.case-text-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
}

.case-text-block h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.case-text-block p { color: var(--muted); line-height: 1.65; font-size: 15.5px; }

/* bottom row: 3 cols matching text cols above */
.case-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.stats-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  transition: border-color var(--ease);
}
.case-screenshot-img:hover { border-color: var(--border-pink); }

.stat {
  background: linear-gradient(135deg,
    rgba(232,54,88,.09) 0%,
    rgba(152,80,154,.09) 100%);
  border: 1px solid rgba(232,54,88,.16);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  text-align: left;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.stat:hover {
  border-color: rgba(232,54,88,.45);
  box-shadow: 0 0 28px rgba(232,54,88,.13);
  transform: translateY(-2px);
}
.stat-number {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 5px;
  text-shadow: 0 0 18px rgba(232,54,88,.3);
}
.stat-label { font-size: 12px; color: var(--muted); line-height: 1.4; }
.stat-number--text { font-size: 18px !important; line-height: 1.4; font-weight: 700; }

/* screenshots: compact previews, no crop */
.case-screenshots {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screenshots-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.screenshots-grid {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.screenshots-grid img {
  flex: 1 1 0;
  min-width: 0;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  transition: border-color var(--ease);
}
.screenshots-grid img:hover { border-color: var(--border-pink); }

.case-collab-note {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.6;
  margin-top: 14px;
  letter-spacing: .04em;
}

.case-quote {
  border-left: 3px solid var(--pink);
  background: linear-gradient(135deg,
    rgba(152,80,154,.07) 0%,
    rgba(232,54,88,.05) 100%);
  padding: 16px 20px;
}
.case-quote p {
  font-style: italic;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 8px;
  font-size: 1rem;
}
.case-quote cite { font-size: 12px; color: var(--pink); font-style: normal; }

/* ── Services ─────────────────────────────────────── */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.14);
}

/* Featured card */
.service-featured {
  border-color: rgba(232,54,88,.4);
  background: linear-gradient(160deg, #1C1030 0%, #130D1C 100%);
  box-shadow:
    0 0 60px rgba(232,54,88,.1),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.service-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #E83658, #98509A);
}
.service-featured:hover {
  border-color: rgba(232,54,88,.6);
  box-shadow: 0 0 80px rgba(232,54,88,.18);
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(232,54,88,.15);
  border: 1px solid rgba(232,54,88,.3);
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.service-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.service-card h3  { font-size: 18px; margin-bottom: 10px; }
.service-sub {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.62;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.service-list li {
  color: var(--muted);
  font-size: 15.5px;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

.service-note {
  color: var(--muted);
  font-size: 15.5px;
  font-style: italic;
  margin-bottom: 10px;
}
.service-effort {
  font-size: 15.5px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
.service-effort strong { color: #fff; }

/* ── CTA Section ──────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg,
    rgba(232,54,88,.07) 0%,
    rgba(152,80,154,.07) 100%);
  border-top: 1px solid rgba(232,54,88,.15);
  border-bottom: 1px solid rgba(232,54,88,.15);
}
.cta-inner {
  text-align: center;
  max-width: 660px;
}
.cta-inner h2 { font-size: clamp(24px, 2.8vw, 40px); margin-bottom: 16px; }
.cta-inner > p { color: var(--muted); font-size: 15.5px; line-height: 1.72; margin-bottom: 28px; }
.cta-note { color: var(--muted); font-size: 15.5px; margin-top: 16px; }

/* ── FAQ ──────────────────────────────────────────── */
.faq { background: var(--bg); }

.faq-list {
  max-width: 740px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item.open { border-color: var(--border-pink); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: none;
  border: none;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.faq-icon {
  font-size: 20px;
  color: var(--pink);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform var(--ease);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a p {
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.72;
  font-size: 15.5px;
}
.faq-item.open .faq-a { max-height: 280px; }

/* ── Footer ───────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding-block: 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-inner p, .footer-inner a { color: var(--muted); font-size: 1rem; }
.footer-inner a:hover { color: #fff; }

.mobile-br { display: none; }
.desktop-br { display: block; }

/* ── Scroll animations ────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────── */

/* Tablet (769–1024px) */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .about-grid { gap: 48px; }
  .case-text-cols { gap: 10px 16px; }
  .case-bottom { gap: 10px 16px; }
  .hero-inner { grid-template-columns: 65fr 35fr; gap: 36px; }
}

/* Smaller tablet (600–768px) */
@media (max-width: 768px) and (min-width: 601px) {
  .hero-inner { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .case-text-cols { grid-template-columns: 1fr; }
  .case-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --max-w: 100%; }
  .section { padding-block: 48px; }
  .container { padding-inline: 20px; }

  /* nav */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* hero */
  .hero { min-height: auto; padding-block: 10px 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .hero-text h1 { font-size: 22px; }
  .hero-pill { font-size: 11px; }
  .hero-sub { font-size: 15.5px; max-width: 100%; margin-inline: auto; }
  .hero-actions { justify-content: center; gap: 8px; }
  .hero-actions .btn { padding: 9px 16px; font-size: 12px; }
  .hero-image {
    width: 70%;
    max-width: 275px;
    margin-inline: auto;
    border-radius: 20px;
  }
  .hero-image img { border-radius: 20px; max-height: 275px; object-fit: cover; }
  .hero-image::after { height: 70px; }

  /* section headers */
  .mobile-br { display: block; }
  .desktop-br { display: none; }
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: 20px; }
  .section-header p.lead { font-size: 15.5px; }
  .overline { font-size: 10px; letter-spacing: .12em; }

  /* pain grid */
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card h3 { font-size: 1rem; }
  .pain-card p { font-size: 15.5px; }
  .problem-closing { padding: 36px 0 0; }
  .problem-closing .closing-sub { font-size: 15.5px; }
  .problem-closing .closing-main { font-size: 22px; }

  /* about */
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-image { max-width: 88%; margin-inline: auto; }
  .about-image img { max-height: 260px; object-fit: cover; object-position: center 35%; }
  .about-text { padding-inline: 10px; }
  .about-text h2 { font-size: 22px; margin-bottom: 16px; line-height: 1.3; }
  .about-text p { font-size: 15.5px; line-height: 1.68; margin-bottom: 12px; }
  .about-text p.intro { font-size: 15.5px; }

  /* cases */
  .case-block { padding: 20px 16px; overflow: hidden; }
  .case-header { gap: 12px; }
  .case-avatar { width: 56px; height: 56px; }
  .case-header h3 { font-size: 15px; }
  .case-header > div > p { font-size: 12px; }
  .case-label { font-size: 10px; margin-bottom: 12px; }
  .case-text-cols { grid-template-columns: 1fr; gap: 20px; }
  .case-text-block h4 { font-size: 9px; margin-bottom: 5px; }
  .case-text-block p { font-size: 15.5px; }
  .case-bottom { grid-template-columns: 1fr; gap: 12px; }
  .stats-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat { padding: 10px 10px; }
  .stat-number { font-size: 15px; margin-bottom: 3px; }
  .stat-label { font-size: 9.5px; }
  .case-screenshot-img { width: 78%; margin-inline: auto; }
  .case-bottom .case-screenshot-img:nth-child(3) { display: none; }
  .case-quote p { font-size: 14px; }

  /* services */
  .service-card h3 { font-size: 16px; }
  .service-sub { font-size: 15.5px; }
  .service-list li { font-size: 15.5px; }

  /* cta */
  .cta-inner h2 { font-size: 22px; }
  .cta-inner > p { font-size: 15.5px; }

  /* faq */
  .faq-q { font-size: 15.5px; padding: 14px 16px; }
  .faq-a p { font-size: 15.5px; }

  /* footer */
  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
  .footer-inner p, .footer-inner a { font-size: 12.5px; }
}

@media (max-width: 480px) {
  .section-header { margin-bottom: 48px; }
  .case-block { padding: 20px 16px; }
  .screenshots-grid { grid-template-columns: 1fr 1fr; }
}
