/* Medical Szczecin — style serwisu (odwzorowanie projektu Claude Design 1:1) */

:root {
  --navy: #0e1d56;
  --primary: #1a2f7a;
  --text: #101c47;
  --text-2: #3f4d6e;
  --text-3: #4c5a78;
  --muted: #5f6b86;
  --none: #8a94ab;
  --bg: #f5f7fb;
  --white: #fff;
  --tint: #e4eefa;
  --tint-hover: #eef3fb;
  --img-bg: #dde8f4;
  --border: #e2e8f2;
  --border-2: #cfd8e8;
  --on-navy: #d6e0f5;
  --on-navy-2: #b8c5e3;
  --nfz: #1f8fb8;
  --error: #b42318;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-head: Raleway, sans-serif;
  --header-h: 73px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font); -webkit-font-smoothing: antialiased; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--navy); }
h1, h2 { font-family: var(--font-head); }
h1, h2, h3, p { margin: 0; }
img { max-width: 100%; }
button, input, textarea { font: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid rgba(26, 47, 122, .45); outline-offset: 2px; }

.page { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
.wrap { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ——— Utilities ——— */
.grid { display: grid; }
.grid--180 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); }
.grid--260 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.grid--280 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid--300 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid--440 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr)); align-items: stretch; }
.grid--fill-320 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
.grid--fill-340 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); }
.gap-14 { gap: 14px; } .gap-16 { gap: 16px !important; } .gap-20 { gap: 20px; } .gap-22 { gap: 22px; } .gap-24 { gap: 24px; }
.stack-6, .stack-10, .stack-12, .stack-20, .stack-22, .stack-28, .stack-32, .stack-40, .stack-56 { display: flex; flex-direction: column; }
.stack-6 { gap: 6px; } .stack-10 { gap: 10px; } .stack-12 { gap: 12px; } .stack-20 { gap: 20px; } .stack-22 { gap: 22px; }
.stack-28 { gap: 28px; } .stack-32 { gap: 32px; } .stack-40 { gap: 40px; } .stack-56 { gap: 56px; }
.mt-auto { margin-top: auto; }
.fw-600 { font-weight: 600; } .fw-700 { font-weight: 700; }
.break { overflow-wrap: anywhere; }
.muted { color: var(--muted); font-size: 15px; }
.muted-strong { color: var(--muted); font-weight: 600; }
.body { color: var(--text-3); font-size: 16px; line-height: 1.65; text-wrap: pretty; }
.body-sm { color: var(--text-3); font-size: 15.5px; line-height: 1.55; }
.card--tint .body-sm { color: var(--text-2); font-size: 15px; }

/* ——— Typography ——— */
.kicker { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); }
.pill-label { align-self: flex-start; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); background: var(--tint); padding: 7px 12px; border-radius: 999px; }
.h1-hero { font-size: clamp(40px, 5.4vw, 68px); line-height: 1.02; font-weight: 800; letter-spacing: -.03em; text-wrap: balance; }
.h1-sub { font-size: clamp(36px, 4.6vw, 56px); line-height: 1.04; font-weight: 800; letter-spacing: -.03em; }
.h2 { font-size: clamp(30px, 3.4vw, 42px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
#punkty .h2 { font-size: clamp(28px, 3.2vw, 40px); }
.h2-panel { font-size: clamp(28px, 3vw, 38px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.h2-cat { font-size: clamp(26px, 2.8vw, 34px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.h2-form { font-size: clamp(26px, 2.8vw, 32px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.h3 { font-size: 22px; font-weight: 800; }
.lead { font-size: 18px; line-height: 1.55; color: var(--text-2); text-wrap: pretty; }

/* ——— Buttons ——— */
.btn { display: inline-block; padding: 15px 24px; border-radius: 999px; font-weight: 700; font-size: 16px; border: 0; cursor: pointer; text-align: center; transition: background .15s, border-color .15s, color .15s; }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--navy); color: #fff; }
.btn--outline { background: #fff; color: var(--text); border: 1.5px solid var(--border-2); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--outline-primary { background: #fff; color: var(--primary); border: 1.5px solid var(--primary); }
.btn--outline-primary:hover { background: var(--primary); color: #fff; }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--tint); color: var(--navy); }
.btn--sm { padding: 11px 18px; }
.btn--sm2 { padding: 11px 18px; font-size: 14.5px; }
.btn--md { padding: 13px 20px; }
.btn--15 { font-size: 15px; }
.btn--block { display: block; width: 100%; padding: 13px 18px; font-size: 15px; }
.btn--submit { padding: 15px 28px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--10 { gap: 10px; }

/* ——— Top bar / header / footer ——— */
.topbar { background: var(--navy); color: var(--on-navy); font-size: 13px; }
.topbar__inner { padding-top: 9px; padding-bottom: 9px; display: flex; flex-wrap: wrap; gap: 8px 28px; align-items: center; justify-content: space-between; }
.topbar__places { display: flex; flex-wrap: wrap; gap: 6px 24px; }
.topbar__places a { color: #fff; font-weight: 600; }
.topbar__social { display: flex; gap: 18px; }
.topbar__social a { color: var(--on-navy); }
.topbar__social a:hover { color: #fff; }

.header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; }
.header__inner { padding-top: 14px; padding-bottom: 14px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.header__logo { display: flex; align-items: center; }
.header__logo img { height: 44px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; font-size: 15px; font-weight: 600; }
.nav__link { padding: 10px 14px; border-radius: 8px; color: var(--text); }
.nav__link:hover, .nav__link.is-active { background: var(--tint-hover); color: var(--text); }
.nav__shop { margin-left: 8px; font-size: 15px; font-weight: 600; }

.footer { background: var(--navy); color: var(--on-navy-2); font-size: 14px; }
.footer__inner { padding-top: 36px; padding-bottom: 36px; display: flex; flex-wrap: wrap; gap: 16px 32px; justify-content: space-between; align-items: center; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer a { color: var(--on-navy-2); }
.footer a:hover { color: #fff; }

/* ——— Sections ——— */
.section { padding: 88px 24px; }
/* W sekcjach padding boczny jest na sekcji — treść ma pełne 1200px (jak w projekcie) */
.section .wrap, .sticky-filter .wrap { padding-left: 0; padding-right: 0; }
.section--flush-top { padding-top: 0; }
.section--tight-top { padding-top: 40px; }
.section--steps { padding: 48px 24px 0; }
.section--rental { padding: 8px 24px 72px; }
.section--pb72 { padding-bottom: 72px; }
.section--bank { padding: 24px 24px 88px; }
.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px; }
.section-head__aside { font-size: 16px; max-width: 380px; line-height: 1.5; }

.subhead { background: #fff; border-bottom: 1px solid var(--border); }
.subhead__inner { padding-top: 48px; padding-bottom: 52px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 28px; }
.subhead__text { display: flex; flex-direction: column; gap: 18px; max-width: 640px; }
.crumbs { display: flex; gap: 8px; font-size: 14px; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--primary); }
.crumbs [aria-current] { color: var(--text); font-weight: 600; }

/* ——— Cards ——— */
.card { background: #fff; border: 1px solid var(--border); border-radius: 22px; }
.card--tint { background: var(--tint); border-color: transparent; }
.card--xl { border-radius: 28px; }
.card--place { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.address { font-size: 20px; font-weight: 700; line-height: 1.35; }
.address br + span { font-weight: 500; color: var(--text-3); font-size: 16px; }
.address--18 { font-size: 18px; }
.address--18 br + span { font-size: 15px; }
.big-phone { align-self: flex-start; margin-top: 4px; font-size: 22px; font-weight: 800; color: var(--primary); letter-spacing: -.01em; }
.mail-link { font-size: 19px; font-weight: 700; color: var(--text); overflow-wrap: anywhere; }
.mail-link--20 { font-size: 20px; }
.num-circle { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: #fff; display: grid; place-items: center; font-weight: 800; }
.num-circle--tint { font-size: 15px; background: var(--tint); color: var(--primary); }

/* ——— Home ——— */
.hero { background: #fff; }
.hero__inner { padding-top: 64px; padding-bottom: 72px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr)); gap: 48px; align-items: center; }
.hero__text { display: flex; flex-direction: column; gap: 24px; }
.hero__lead { font-size: 19px; line-height: 1.55; color: var(--text-2); max-width: 480px; text-wrap: pretty; }
.hero__family { display: flex; align-items: center; gap: 14px; padding-top: 8px; }
.hero__family img { height: 48px; width: auto; }
.hero__family span { font-size: 14px; color: var(--muted); line-height: 1.4; }
.hero__family strong { color: var(--text); }
.hero__media { position: relative; aspect-ratio: 5 / 4; border-radius: 28px; overflow: hidden; background-color: var(--img-bg); background-position: center; background-size: cover; }
.hero__badge { position: absolute; left: 20px; bottom: 20px; right: 20px; background: rgba(255, 255, 255, .94); border-radius: 18px; padding: 18px 20px; display: flex; align-items: center; gap: 16px; max-width: 360px; font-size: 14px; line-height: 1.4; color: var(--text-2); }
.hero__badge strong { display: block; color: var(--text); font-size: 15px; }
.hero__badge-icon { flex: none; width: 48px; height: 48px; border-radius: 14px; background: var(--primary); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 15px; }

.offer { display: flex; flex-direction: column; background: #fff; border-radius: 22px; overflow: hidden; border: 1px solid var(--border); color: var(--text); transition: transform .2s, box-shadow .2s; }
.offer:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(14, 29, 86, .35); color: var(--text); }
.offer__img { aspect-ratio: 16 / 10; background-color: var(--img-bg); background-size: cover; background-position: center; }
.offer__body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.offer__title { font-size: 24px; font-weight: 800; letter-spacing: -.01em; }
.offer__text { color: var(--text-3); font-size: 15.5px; line-height: 1.6; flex: 1; text-wrap: pretty; }
.offer__cta { font-weight: 700; font-size: 15px; color: var(--primary); padding-top: 6px; }

.why { background: #fff; border-radius: 28px; border: 1px solid var(--border); padding: clamp(32px, 5vw, 64px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 48px; }
.why__intro { display: flex; flex-direction: column; gap: 16px; }
.why__intro .muted { font-size: 16px; line-height: 1.6; }
.why__years { margin-top: 12px; display: flex; align-items: baseline; gap: 10px; }
.why__years span:last-child { font-size: 15px; color: var(--text-3); font-weight: 600; }
.why__num { font-size: 64px; font-weight: 800; letter-spacing: -.04em; color: var(--primary); line-height: 1; }
.why__list { display: flex; flex-direction: column; grid-column: span 2; min-width: 0; }
.why__row { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 24px 0; border-top: 1px solid var(--border); }
.why__title { font-size: 19px; font-weight: 700; }
.why__text { color: var(--text-3); font-size: 15.5px; line-height: 1.6; text-wrap: pretty; }
@media (max-width: 700px) { .why__list { grid-column: auto; } }

.nfz { background: var(--nfz); color: #fff; border-radius: 28px; padding: clamp(32px, 4vw, 48px) clamp(28px, 5vw, 56px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.nfz__text { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nfz__text p { font-size: clamp(18px, 2vw, 22px); line-height: 1.45; font-weight: 600; max-width: 640px; text-wrap: pretty; }
.nfz__badge { flex: none; font-size: 30px; font-weight: 800; letter-spacing: .02em; background: #fff; color: var(--nfz); border-radius: 16px; padding: 14px 18px; }

/* ——— Chips / tabs ——— */
.chips { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.chips__label { font-size: 14px; color: var(--muted); font-weight: 600; margin-right: 4px; }
.chip { font-size: 14px; font-weight: 600; cursor: pointer; padding: 8px 14px; border-radius: 999px; border: 1.5px solid var(--border-2); background: #fff; color: var(--text); display: inline-flex; gap: 8px; align-items: center; transition: border-color .15s; }
.chip:hover { border-color: var(--primary); }
.chip.is-active, .chip--radio:has(input:checked) { background: var(--primary); border-color: var(--primary); color: #fff; }
.chip--lg { font-size: 14.5px; font-weight: 700; padding: 10px 16px; }
.chip__count { font-size: 12px; opacity: .75; }
.chip--radio input { position: absolute; opacity: 0; pointer-events: none; }
.chip--radio:has(input:focus-visible) { outline: 3px solid rgba(26, 47, 122, .45); outline-offset: 2px; }

.tabs { display: flex; flex-wrap: wrap; gap: 10px; padding: 6px; background: #fff; border: 1px solid var(--border); border-radius: 999px; align-self: flex-start; }
.tab { font-size: 15px; font-weight: 700; padding: 12px 18px; border-radius: 999px; display: flex; align-items: center; gap: 10px; background: transparent; color: var(--text); }
.tab:hover { background: var(--tint-hover); color: var(--text); }
.tab.is-active { background: var(--primary); color: #fff; }
.tab__badge { font-size: 12px; font-weight: 800; min-width: 24px; padding: 3px 7px; border-radius: 999px; background: var(--tint); color: var(--primary); text-align: center; }
.tab.is-active .tab__badge { background: #fff; }
@media (max-width: 560px) { .tabs { border-radius: 22px; } }

/* ——— Usługi ——— */
.subhead .pill-label { align-self: auto; }
.service { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); background: #fff; border: 1px solid var(--border); border-radius: 28px; overflow: hidden; }
.service__img { min-height: 260px; background-color: var(--img-bg); background-size: cover; background-position: center; }
.service__body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.service__body .btn-row { padding-top: 6px; }
.people-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.person { padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.person__head { display: flex; align-items: center; gap: 16px; }
.avatar { flex: none; position: relative; width: 68px; height: 68px; border-radius: 50%; overflow: hidden; background: var(--tint); display: grid; place-items: center; }
.avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.person__name { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.person__title { font-size: 18px; font-weight: 800; }
.person__loc { font-size: 14px; color: var(--text-3); font-weight: 600; }
.person__meta { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 14px; font-size: 14.5px; line-height: 1.45; border-top: 1px solid var(--border); padding-top: 16px; }
.person__meta dt { color: var(--muted); }
.person__meta dd { margin: 0; min-width: 0; }
.person__links { display: flex; flex-wrap: wrap; gap: 6px 12px; align-items: center; }
.none { color: var(--none); }
.social-pill { font-size: 13px; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: var(--tint-hover); }
.callout { background: var(--tint); border-radius: 22px; padding: 28px clamp(24px, 4vw, 40px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.callout p { font-size: 18px; font-weight: 600; line-height: 1.5; max-width: 560px; }

/* ——— Wypożyczalnia ——— */
.stat-row { display: flex; flex-wrap: wrap; gap: 12px; }
.stat { background: var(--tint); border-radius: 18px; padding: 16px 20px; display: flex; flex-direction: column; gap: 2px; }
.stat__label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); }
.stat__value { font-family: var(--font-head); font-size: 28px; font-weight: 800; }
.step { padding: 24px; display: flex; gap: 18px; align-items: flex-start; }
.step__title { font-size: 17px; font-weight: 800; }
.step__text { font-size: 15px; line-height: 1.55; color: var(--text-3); text-wrap: pretty; }
.sticky-filter { position: sticky; top: var(--header-h); z-index: 5; background: var(--bg); padding: 28px 24px 16px; }
.cat-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 20px; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.product { overflow: hidden; display: flex; flex-direction: column; }
.product__img { position: relative; aspect-ratio: 4 / 3; background: var(--tint); }
.product__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product__deposit { position: absolute; top: 14px; left: 14px; font-size: 12.5px; font-weight: 700; background: #fff; color: var(--text); padding: 6px 11px; border-radius: 999px; }
.product__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.product__name { font-size: 19px; font-weight: 800; line-height: 1.3; }
.product__price { display: flex; align-items: baseline; gap: 6px; margin-top: auto; }
.price { font-family: var(--font-head); font-size: 34px; font-weight: 800; letter-spacing: -.02em; color: var(--primary); }
.per { font-size: 15px; color: var(--text-3); font-weight: 600; }
.panel-navy { background: var(--primary); color: #fff; border-radius: 28px; padding: clamp(28px, 4vw, 48px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 32px; }
.on-navy { color: var(--on-navy); font-size: 16px; line-height: 1.6; }
.checklist { display: flex; flex-direction: column; grid-column: span 2; min-width: 0; }
.checklist__row { display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, .18); font-size: 16px; line-height: 1.55; }
.checklist__tick { width: 24px; height: 24px; border-radius: 50%; background: #fff; color: var(--primary); display: grid; place-items: center; font-size: 13px; font-weight: 800; }
@media (max-width: 700px) { .checklist { grid-column: auto; } }
.pickup { padding: 28px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 18px; }

/* ——— Kontakt ——— */
.social-btn { padding: 10px 16px; border-radius: 999px; background: #fff; font-weight: 700; font-size: 14px; }
.map-card { overflow: hidden; display: flex; flex-direction: column; }
.map-card__tabs { padding: 20px 20px 0; }
.map-card__info { padding: 18px 24px 20px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
.map-card iframe { border: 0; width: 100%; flex: 1; min-height: 340px; display: block; background: var(--tint); }
.form-card { padding: clamp(24px, 3.5vw, 40px); display: flex; flex-direction: column; gap: 20px; }
.form { display: flex; flex-direction: column; gap: 14px; }
.field { width: 100%; padding: 14px 16px; border-radius: 14px; border: 1.5px solid var(--border); background: var(--bg); font-size: 16px; color: var(--text); outline: none; transition: border-color .15s, background .15s; }
.field:focus { border-color: var(--primary); background: #fff; }
.field.is-invalid { border-color: var(--error); }
textarea.field { resize: vertical; line-height: 1.5; }
.field::placeholder { color: var(--muted); }
.form-error { color: var(--error); font-size: 13.5px; font-weight: 600; }
.form-note { font-size: 13px; color: var(--muted); line-height: 1.5; }
.form .btn--submit:disabled { opacity: .7; cursor: wait; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-success { background: var(--tint); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.form-success .num-circle { font-size: 18px; }
.form-success__title { font-size: 20px; font-weight: 800; }
.form-success .body-sm { color: var(--text-2); }
.form-success .btn { margin-top: 6px; font-size: 15px; }

.bank { background: var(--primary); color: #fff; border-radius: 28px; padding: 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 18px 32px; align-items: center; }
.bank__title { font-size: 26px; font-weight: 800; letter-spacing: -.01em; }
.bank__company { display: flex; flex-direction: column; gap: 4px; font-size: 16px; line-height: 1.5; color: var(--on-navy); }
.bank__name { color: #fff; font-weight: 700; }
.bank__account { background: rgba(255, 255, 255, .1); border-radius: 16px; padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; }
.bank__label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--on-navy-2); }
.bank__number { font-size: 18px; font-weight: 700; letter-spacing: .02em; font-variant-numeric: tabular-nums; line-height: 1.4; }
.bank__copy { align-self: flex-start; font-size: 14px; font-weight: 700; cursor: pointer; border: 0; padding: 10px 16px; border-radius: 999px; background: #fff; color: var(--primary); }
.bank__copy:hover { background: var(--tint); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .offer, .btn, .chip { transition: none; }
  .offer:hover { transform: none; }
}
