/* ===================================================================
   ABK Advertising — component styles
   =================================================================== */

/* ---------------- HEADER ---------------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.hdr.is-stuck { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: var(--sh-sm); border-bottom-color: var(--border); }
.hdr__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }
.hdr__logo { display: flex; align-items: center; }
.hdr__logo img { height: 50px; width: auto; }
.hdr__nav { display: flex; align-items: center; gap: 4px; }
.hdr__nav a {
  font-size: 15px; font-weight: 600; color: var(--text);
  padding: 9px 14px; border-radius: var(--r-sm); position: relative;
  transition: color .18s, background .18s;
}
.hdr__nav a:hover { color: var(--secondary); background: var(--surface); }
.hdr__cta { display: flex; align-items: center; gap: 10px; }
.hdr__tel { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--primary); padding: 8px 6px; }
.hdr__tel svg { width: 17px; height: 17px; color: var(--secondary); }
.hdr__burger { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); align-items: center; justify-content: center; color: var(--primary); border: 1px solid var(--border); background:#fff; }
.hdr__burger svg { width: 24px; height: 24px; }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 70; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(14,26,87,.5); opacity: 0; transition: opacity .3s; }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 360px);
  background: #fff; padding: 20px; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .34s cubic-bezier(.2,.8,.2,1);
  box-shadow: var(--sh-lg);
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.drawer__top img { height: 42px; }
.drawer__close { width: 44px; height: 44px; border-radius: var(--r-sm); display: grid; place-items: center; border: 1px solid var(--border); color: var(--primary); }
.drawer__close svg { width: 22px; height: 22px; }
.drawer__links { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; }
.drawer__links a { font-size: 18px; font-weight: 700; color: var(--text); padding: 15px 12px; border-radius: var(--r-md); display: flex; justify-content: space-between; align-items: center; }
.drawer__links a:hover, .drawer__links a:active { background: var(--surface); color: var(--secondary); }
.drawer__links a svg { width: 18px; height: 18px; opacity: .4; }
.drawer__foot { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border); display: grid; gap: 10px; }

/* ---------------- HERO ---------------- */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(28px, 5vw, 60px)); padding-bottom: clamp(40px, 6vw, 80px); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(900px 500px at 85% -8%, rgba(232,51,46,.07), transparent 60%),
  radial-gradient(700px 600px at 8% 8%, rgba(22,39,122,.06), transparent 60%); z-index: -1; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.hero__title { font-size: clamp(34px, 5.6vw, 62px); font-weight: 800; line-height: 1.02; letter-spacing: -0.025em; text-wrap: balance; }
.hero__title em { font-style: normal; color: var(--secondary); }
.hero__lead { margin-top: 22px; font-size: clamp(17px, 1.9vw, 20px); color: var(--muted); max-width: 46ch; line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

/* hero collage */
.collage { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 78px; gap: 14px; }
.collage__item { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--border); background:#fff; position: relative; }
.collage__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.collage__item:hover img { transform: scale(1.06); }
.collage__item.a { grid-column: 1 / 4; grid-row: 1 / 4; }
.collage__item.b { grid-column: 4 / 7; grid-row: 1 / 3; }
.collage__item.c { grid-column: 4 / 7; grid-row: 3 / 6; }
.collage__item.d { grid-column: 1 / 4; grid-row: 4 / 6; }
.collage__badge {
  position: absolute; z-index: 3; bottom: 16px; left: 16px;
  background: #fff; border-radius: var(--r-md); padding: 12px 16px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 12px; border: 1px solid var(--border);
}
.collage__badge b { font-size: 22px; font-weight: 800; color: var(--primary); line-height: 1; }
.collage__badge span { font-size: 12px; font-weight: 600; color: var(--muted); display: block; }
.collage__badge .dot { width: 38px; height: 38px; border-radius: 11px; background: var(--ink-grad); color: #fff; display: grid; place-items: center; font-weight: 800; }

/* ---------------- TRUST STRIP ---------------- */
.trust { border-block: 1px solid var(--border); background: #fff; }
.trust__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { padding: 26px 20px; display: flex; align-items: center; gap: 14px; border-left: 1px solid var(--border); }
.trust__item:first-child { border-left: none; }
.trust__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--surface); display: grid; place-items: center; color: var(--secondary); flex-shrink: 0; }
.trust__ic svg { width: 22px; height: 22px; }
.trust__item b { display: block; font-size: 16px; font-weight: 800; color: var(--text); line-height: 1.2; }
.trust__item span { font-size: 13px; color: var(--muted); }

/* ---------------- SERVICES GRID ---------------- */
.svc-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.svc-card {
  grid-column: span 2; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: transform .24s cubic-bezier(.2,.8,.2,1), box-shadow .24s, border-color .24s;
}
.svc-card:nth-child(1), .svc-card:nth-child(2) { grid-column: span 3; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--border-2); }
.svc-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--surface); position: relative; }
.svc-card:nth-child(1) .svc-card__media, .svc-card:nth-child(2) .svc-card__media { aspect-ratio: 16/8; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.svc-card:hover .svc-card__media img { transform: scale(1.05); }
.svc-card__num { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(255,255,255,.92); backdrop-filter: blur(4px); color: var(--primary); font-weight: 800; font-size: 13px; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; box-shadow: var(--sh-sm); }
.svc-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 { font-size: 21px; font-weight: 800; letter-spacing: -.01em; }
.svc-card__body p { margin-top: 8px; color: var(--muted); font-size: 15px; line-height: 1.55; flex: 1; }
.svc-card__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.svc-card__tags span { font-size: 12.5px; font-weight: 600; color: var(--primary); background: var(--surface); padding: 6px 11px; border-radius: var(--r-pill); }
.svc-card__link { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14.5px; color: var(--secondary); }
.svc-card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }

/* ---------------- SERVICE DETAIL ---------------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.svc-detail + .svc-detail { margin-top: clamp(56px, 8vw, 104px); }
.svc-detail.flip .svc-detail__media { order: -1; }
.svc-detail__kicker { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--secondary); }
.svc-detail__kicker .n { font-variant-numeric: tabular-nums; color: var(--primary); background: var(--surface); padding: 4px 9px; border-radius: 7px; }
.svc-detail h3 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -.02em; margin-top: 16px; line-height: 1.1; }
.svc-detail p { margin-top: 14px; color: var(--muted); font-size: 16.5px; line-height: 1.65; max-width: 52ch; }
.svc-detail__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin-top: 24px; }
.svc-detail__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; font-weight: 500; }
.svc-detail__list li svg { width: 18px; height: 18px; color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.svc-detail__actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.svc-detail__media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.svc-detail__media .m { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh-md); aspect-ratio: 1; background: var(--surface); }
.svc-detail__media .m:first-child:nth-last-child(1) { grid-column: span 2; aspect-ratio: 16/10; }
.svc-detail__media .m.tall { grid-row: span 2; aspect-ratio: auto; }
.svc-detail__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------- PORTFOLIO ---------------- */
.pf-filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.pf-filters button { font-size: 14px; font-weight: 700; padding: 10px 18px; border-radius: var(--r-pill); color: var(--muted); background: #fff; border: 1px solid var(--border); transition: all .18s; }
.pf-filters button:hover { color: var(--primary); border-color: var(--border-2); }
.pf-filters button.is-active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: var(--sh-md); }
.pf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pf-item { position: relative; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 1; background: var(--surface); cursor: pointer; box-shadow: var(--sh-sm); transition: transform .22s, box-shadow .22s; }
.pf-item:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.pf-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.pf-item:hover img { transform: scale(1.07); }
.pf-item__cap { position: absolute; inset: auto 0 0 0; padding: 30px 16px 14px; background: linear-gradient(to top, rgba(14,26,87,.85), transparent); color: #fff; font-weight: 700; font-size: 14px; opacity: 0; transform: translateY(8px); transition: opacity .25s, transform .25s; display: flex; align-items: center; gap: 8px; }
.pf-item__cap svg { width: 16px; height: 16px; }
.pf-item:hover .pf-item__cap { opacity: 1; transform: none; }
.pf-item.span2 { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }

/* lightbox */
.lb { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; padding: 24px; background: rgba(10,18,52,.88); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: opacity .25s; }
.lb.is-open { opacity: 1; visibility: visible; }
.lb__img { max-width: min(92vw, 820px); max-height: 82vh; border-radius: var(--r-md); box-shadow: var(--sh-lg); background:#fff; }
.lb__cap { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: #fff; font-weight: 700; font-size: 15px; background: rgba(0,0,0,.4); padding: 8px 18px; border-radius: var(--r-pill); }
.lb__btn { position: absolute; top: 20px; right: 20px; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); }
.lb__btn:hover { background: rgba(255,255,255,.26); }
.lb__btn svg { width: 24px; height: 24px; }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.14); color:#fff; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); }
.lb__nav:hover { background: rgba(255,255,255,.26); }
.lb__nav svg { width: 26px; height: 26px; }
.lb__nav.prev { left: 18px; } .lb__nav.next { right: 18px; }

/* ---------------- CLIENTS ---------------- */
.clients { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.client-chip { display: flex; align-items: center; justify-content: center; text-align: center; min-height: 96px; padding: 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); font-weight: 800; color: var(--primary); font-size: 17px; letter-spacing: -.01em; transition: transform .2s, box-shadow .2s, border-color .2s; }
.client-chip:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--border-2); }
.client-chip span { display: block; font-size: 11.5px; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; margin-top: 5px; }

/* ---------------- ABOUT ---------------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.stat { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.stat b { font-size: clamp(30px, 4vw, 42px); font-weight: 800; color: var(--secondary); line-height: 1; letter-spacing: -.02em; display:block; }
.stat span { display: block; margin-top: 8px; font-size: 14.5px; color: var(--muted); font-weight: 500; }
.about__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--border); }
.about__media img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.about__media .iso { position: absolute; bottom: 18px; left: 18px; background: #fff; border-radius: var(--r-md); padding: 13px 18px; box-shadow: var(--sh-lg); display: flex; align-items: center; gap: 12px; }
.about__media .iso b { color: var(--primary); font-size: 17px; font-weight: 800; line-height: 1.1; }
.about__media .iso span { font-size: 11.5px; color: var(--muted); }
.about__media .iso .seal { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--secondary); color: var(--secondary); display: grid; place-items: center; font-weight: 800; font-size: 11px; flex-shrink: 0; }

/* ---------------- CTA BAND ---------------- */
.cta-band { background: var(--ink-grad); color: #fff; border-radius: var(--r-xl); padding: clamp(36px, 6vw, 64px); position: relative; overflow: hidden; text-align: center; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 85% 110%, rgba(232,51,46,.4), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; letter-spacing: -.02em; line-height: 1.08; text-wrap: balance; }
.cta-band p { margin-top: 14px; color: rgba(255,255,255,.82); font-size: clamp(16px,1.7vw,19px); max-width: 52ch; margin-inline: auto; }
.cta-band__btns { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------------- CONTACT ---------------- */
.contact { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px, 4vw, 56px); }
.contact__info { display: flex; flex-direction: column; gap: 14px; }
.info-card { display: flex; gap: 16px; padding: 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); align-items: flex-start; }
.info-card__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--surface); color: var(--secondary); display: grid; place-items: center; flex-shrink: 0; }
.info-card__ic svg { width: 22px; height: 22px; }
.info-card h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.info-card p { margin-top: 4px; font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.45; }
.info-card p a:hover { color: var(--secondary); }
.info-card small { color: var(--muted); font-weight: 500; font-size: 13px; }
.map-ph { position: relative; border-radius: var(--r-md); overflow: hidden; border: 1px dashed var(--border-2); background:
  repeating-linear-gradient(45deg, var(--surface), var(--surface) 12px, var(--surface-2) 12px, var(--surface-2) 24px);
  min-height: 180px; display: grid; place-items: center; text-align: center; }
.map-ph__inner { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px 22px; box-shadow: var(--sh-sm); max-width: 80%; }
.map-ph__inner svg { width: 26px; height: 26px; color: var(--secondary); margin-bottom: 6px; }
.map-ph__inner b { display:block; font-size: 14px; color: var(--text); }
.map-ph__inner span { font-size: 12.5px; color: var(--muted); }

/* form */
.form { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--sh-md); }
.form h3 { font-size: 24px; font-weight: 800; letter-spacing: -.01em; }
.form > p { color: var(--muted); margin-top: 6px; font-size: 15px; }
.field { margin-top: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; color: var(--text); }
.field label .req { color: var(--secondary); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--border); border-radius: var(--r-sm); background: var(--surface);
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--secondary); background: #fff; box-shadow: 0 0 0 4px rgba(232,51,46,.1); }
.field textarea { resize: vertical; min-height: 110px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__note { margin-top: 14px; font-size: 12.5px; color: var(--muted); display: flex; gap: 7px; align-items: flex-start; }
.form__note svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--secondary); }
.form__ok { text-align: center; padding: 30px 10px; }
.form__ok .check { width: 64px; height: 64px; border-radius: 50%; background: rgba(232,51,46,.1); color: var(--secondary); display: grid; place-items: center; margin: 0 auto 16px; }
.form__ok .check svg { width: 34px; height: 34px; }
.form__ok h3 { font-size: 22px; }
.form__ok p { color: var(--muted); margin-top: 8px; }

/* ---------------- FOOTER ---------------- */
.ft { background: var(--primary-d); color: #fff; padding-top: clamp(48px, 6vw, 72px); }
.ft__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; }
.ft__brand img { height: 56px; background:#fff; padding: 10px 14px; border-radius: var(--r-md); }
.ft__brand p { margin-top: 18px; color: rgba(255,255,255,.7); font-size: 14.5px; line-height: 1.6; max-width: 34ch; }
.ft h5 { font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.ft__links { display: flex; flex-direction: column; gap: 11px; }
.ft__links a, .ft__contact li { color: rgba(255,255,255,.82); font-size: 14.5px; transition: color .18s; }
.ft__links a:hover { color: #fff; }
.ft__contact { display: flex; flex-direction: column; gap: 13px; }
.ft__contact li { display: flex; gap: 11px; align-items: flex-start; line-height: 1.5; }
.ft__contact li svg { width: 18px; height: 18px; color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.ft__contact a:hover { color: #fff; }
.ft__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.ft__bottom p { color: rgba(255,255,255,.6); font-size: 13.5px; }
.ft__social { display: flex; gap: 10px; }
.ft__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; transition: background .2s; }
.ft__social a:hover { background: var(--secondary); }
.ft__social svg { width: 18px; height: 18px; }

/* ---------------- MOBILE ACTION BAR ---------------- */
.mbar { position: fixed; inset: auto 0 0 0; z-index: 55; display: none; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(20,34,74,.1); padding: 8px; padding-bottom: max(8px, env(safe-area-inset-bottom)); }
.mbar__row { display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 8px; }
.mbar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; min-height: 52px; border-radius: var(--r-md); font-size: 12px; font-weight: 700; }
.mbar a svg { width: 20px; height: 20px; }
.mbar a.call { background: var(--surface); color: var(--primary); }
.mbar a.wa { background: #ECFBF1; color: #128C45; }
.mbar a.quote { background: var(--secondary); color: #fff; flex-direction: row; }

/* ---------------- QUOTE MODAL ---------------- */
.qm { position: fixed; inset: 0; z-index: 95; display: grid; place-items: center; padding: 18px; opacity: 0; visibility: hidden; transition: opacity .25s; }
.qm.is-open { opacity: 1; visibility: visible; }
.qm__scrim { position: absolute; inset: 0; background: rgba(10,18,52,.6); backdrop-filter: blur(6px); }
.qm__panel { position: relative; width: min(560px, 100%); max-height: 92vh; overflow-y: auto; background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg); transform: translateY(20px) scale(.98); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.qm.is-open .qm__panel { transform: none; }
.qm__close { position: absolute; top: 14px; right: 14px; z-index: 3; width: 42px; height: 42px; border-radius: 50%; background: var(--surface); color: var(--primary); display: grid; place-items: center; }
.qm__close:hover { background: var(--secondary); color:#fff; }
.qm__close svg { width: 22px; height: 22px; }
.qm__hd { background: var(--ink-grad); color: #fff; padding: 28px 30px; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.qm__hd .eyebrow { color: #fff; }
.qm__hd .eyebrow::before { background: var(--secondary); }
.qm__hd h3 { font-size: 25px; font-weight: 800; margin-top: 10px; letter-spacing: -.01em; }
.qm__hd p { color: rgba(255,255,255,.8); font-size: 14.5px; margin-top: 6px; }
.qm__body { padding: 26px 30px 30px; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .collage { max-width: 560px; }
  .svc-detail__list { grid-template-columns: 1fr; }
  .ft__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  :root { --header-h: 66px; }
  .hdr__nav, .hdr__tel { display: none; }
  .hdr__burger { display: grid; }
  .hdr__cta .btn--primary { display: none; }
  .trust__row { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(2) { border-left: none; }
  .trust__item:nth-child(3), .trust__item:nth-child(4) { border-top: 1px solid var(--border); }
  .trust__item:nth-child(3) { border-left: none; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-card, .svc-card:nth-child(1), .svc-card:nth-child(2) { grid-column: span 1; }
  .svc-detail { grid-template-columns: 1fr; }
  .svc-detail.flip .svc-detail__media { order: 0; }
  .pf-grid { grid-template-columns: 1fr 1fr; }
  .clients { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .mbar { display: block; }
  body { padding-bottom: 72px; }
  .ft__bottom { justify-content: center; text-align: center; }
}
@media (max-width: 560px) {
  .hero__cta .btn { flex: 1; }
  .svc-grid { grid-template-columns: 1fr; }
  .pf-item.span2 { grid-column: span 1; grid-row: span 1; }
  .ft__grid { grid-template-columns: 1fr; gap: 28px; }
  .field--row { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .collage { grid-auto-rows: 64px; }
}
