/* =========================================================
   AS PARK 011 | aspark011.rs
   Parking kod aerodroma Nikola Tesla — Beograd
   Čist HTML/CSS, bez biblioteka (Flexbox + Grid), zero JS
   Paleta: plava + žuta (mreža sajtova aerodromparking.rs)
   ========================================================= */

:root {
  /* Boje — plava + žuta */
  --blue: #0B57D0;
  --blue-600: #0A4CB8;
  --blue-700: #083C93;
  --blue-ink: #06245C;
  --blue-soft: #EAF1FE;
  --yellow: #FFC400;
  --yellow-600: #F0B400;
  --yellow-ink: #1A2640;
  --bg: #FFFFFF;
  --bg-soft: #F3F7FE;
  --text: #16233D;
  --muted: #5A6A87;
  --on-blue: rgba(255, 255, 255, 0.88);
  --on-blue-dim: rgba(255, 255, 255, 0.62);
  --border: #DCE6F7;
  --green: #19A974;

  /* Tipografija — drugačiji par od aspark.rs (Jakarta + DM Sans) */
  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1180px;
  --r-sm: 8px;
  --r: 16px;
  --r-lg: 24px;
  --header-h: 70px;
  --sh-sm: 0 2px 10px rgba(6, 36, 92, 0.07);
  --sh: 0 18px 44px rgba(6, 36, 92, 0.12);
  --sh-yellow: 0 10px 24px rgba(255, 196, 0, 0.4);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--blue-ink);
  font-weight: 800;
}
h2 { font-size: clamp(1.75rem, 1.1rem + 2.6vw, 2.6rem); }
h3 { font-size: 1.22rem; font-weight: 700; }
p { color: var(--muted); }

/* Žuti marker ispod ključnih reči — potpisni detalj */
.mark {
  background: linear-gradient(transparent 62%, rgba(255, 196, 0, 0.55) 62%);
  padding: 0 2px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.sec { padding-block: clamp(58px, 4vw + 38px, 100px); }
.sec--soft { background: var(--bg-soft); }
.sec--blue { background: linear-gradient(165deg, var(--blue) 0%, var(--blue-700) 100%); color: var(--on-blue); }
.sec--blue h2, .sec--blue h3 { color: #fff; }
.sec--blue p { color: var(--on-blue); }

.head { max-width: 720px; margin: 0 auto clamp(36px, 4vw, 56px); text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.sec--blue .eyebrow { color: var(--yellow); }
.head p { font-size: 1.06rem; margin-top: 12px; }

section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ---------- Dugmad ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 28px;
  border-radius: 12px;
  min-height: 52px;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  white-space: nowrap;
}
.btn--yellow { background: var(--yellow); color: var(--yellow-ink); box-shadow: var(--sh-yellow); }
.btn--yellow:hover { background: var(--yellow-600); transform: translateY(-2px); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: var(--sh-sm); }
.btn--blue:hover { background: var(--blue-600); transform: translateY(-2px); }
.btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--ghost-blue { background: #fff; color: var(--blue); border: 2px solid var(--border); }
.btn--ghost-blue:hover { border-color: var(--blue); transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ====================== HEADER ====================== */
.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; font-size: 1.24rem; color: var(--blue-ink); letter-spacing: -0.02em; }
.brand__badge {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  position: relative;
}
.brand__badge::after {
  content: "P";
  font-size: 1.2rem; font-weight: 800;
}
.brand__badge i {
  position: absolute; bottom: -4px; right: -4px;
  background: var(--yellow); color: var(--yellow-ink);
  font-style: normal; font-size: 0.56rem; font-weight: 800;
  padding: 2px 4px; border-radius: 5px;
  font-family: var(--font-head);
}
.brand b { color: var(--blue); }

.menu { display: flex; align-items: center; gap: 24px; }
.menu a { font-weight: 500; font-size: 0.95rem; color: var(--text); transition: color .15s ease; }
.menu a:hover { color: var(--blue); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-tel { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; color: var(--blue-ink); }
.nav-tel svg { width: 18px; height: 18px; fill: var(--blue); }
.nav-tel:hover { color: var(--blue); }

.burger-cb { display: none; }
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; border-radius: 10px; background: var(--blue-soft); cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; margin-inline: auto; background: var(--blue-ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }

/* ====================== HERO ====================== */
.hero {
  position: relative;
  background:
    radial-gradient(820px 460px at 88% -8%, rgba(255, 196, 0, 0.22), transparent 58%),
    linear-gradient(160deg, var(--blue) 0%, var(--blue-700) 100%);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .5;
  pointer-events: none;
}
.hero__in { position: relative; z-index: 1; padding-block: clamp(54px, 5vw, 92px); max-width: 880px; margin-inline: auto; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff; font-weight: 600; font-size: 0.84rem;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero__tag b { color: var(--yellow); font-weight: 800; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 1.1rem + 4vw, 3.55rem); margin-bottom: 20px; }
.hero h1 .mark { background: linear-gradient(transparent 60%, rgba(255,196,0,.85) 60%); color: #fff; }
.hero__sub { font-size: 1.14rem; color: var(--on-blue); max-width: 620px; margin: 0 auto 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.hero__facts {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 26px;
}
.hero__facts li { flex: 1 1 0; min-width: 140px; padding-inline: 14px; }
.hero__facts .n { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--yellow); }
.hero__facts .t { font-size: 0.88rem; color: var(--on-blue-dim); }
.hero__facts li + li { border-left: 1px solid rgba(255,255,255,.16); }

/* ====================== PREDNOSTI ====================== */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit {
  display: flex; gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--sh-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: #C5D8F5; }
.benefit__ic { flex-shrink: 0; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 13px; background: var(--blue-soft); }
.benefit__ic svg { width: 26px; height: 26px; fill: var(--blue); }
.benefit h3 { margin-bottom: 6px; font-size: 1.08rem; }
.benefit p { font-size: 0.95rem; }

/* ====================== CENOVNIK (CSS tabovi) ====================== */
.ptabs { max-width: 880px; margin-inline: auto; }
.ptabs > input { position: absolute; opacity: 0; pointer-events: none; }
.ptabs__nav {
  display: flex; gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  max-width: 520px;
  margin: 0 auto 28px;
  box-shadow: var(--sh-sm);
}
.ptabs__nav label {
  flex: 1;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 11px 8px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.ptabs__nav label:hover { color: var(--blue); }
#pt1:checked ~ .ptabs__nav label[for="pt1"],
#pt2:checked ~ .ptabs__nav label[for="pt2"],
#pt3:checked ~ .ptabs__nav label[for="pt3"] { background: var(--blue); color: #fff; }
#pt1:focus-visible ~ .ptabs__nav label[for="pt1"],
#pt2:focus-visible ~ .ptabs__nav label[for="pt2"],
#pt3:focus-visible ~ .ptabs__nav label[for="pt3"] { outline: 3px solid var(--yellow); outline-offset: 2px; }

.ptabs__panel { display: none; }
#pt1:checked ~ .ptabs__panel[data-tab="1"],
#pt2:checked ~ .ptabs__panel[data-tab="2"],
#pt3:checked ~ .ptabs__panel[data-tab="3"] { display: block; }

.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--sh);
  overflow: hidden;
}
.price-card__bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--blue-ink);
  color: #fff;
  padding: 16px 22px;
  font-family: var(--font-head);
  font-weight: 700;
}
.price-card__bar .free {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--yellow); color: var(--yellow-ink);
  font-size: 0.74rem; font-weight: 800;
  padding: 5px 11px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.price-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; padding: 10px 22px 18px; }
.price-rows li {
  display: flex; align-items: baseline; gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.price-rows .d { font-weight: 500; color: var(--text); white-space: nowrap; }
.price-rows .dots { flex: 1; border-bottom: 2px dotted #C9D7EF; transform: translateY(-4px); }
.price-rows .a { font-family: var(--font-head); font-weight: 800; color: var(--blue); white-space: nowrap; }
.price-foot {
  display: flex; align-items: center; gap: 12px;
  background: var(--blue-soft);
  padding: 16px 22px;
  border-top: 1px solid var(--border);
}
.price-foot svg { width: 24px; height: 24px; fill: var(--blue); flex-shrink: 0; }
.price-foot span { font-size: 0.95rem; color: var(--text); }
.price-foot b { color: var(--blue-ink); }
.price-cta { text-align: center; margin-top: 30px; }
.price-cta p { margin-bottom: 16px; }

/* ====================== KORACI (timeline) ====================== */
.flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.flow::before {
  content: "";
  position: absolute; top: 27px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.4) 0 10px, transparent 10px 18px);
}
.flow__step { position: relative; text-align: center; padding-top: 0; }
.flow__node {
  width: 56px; height: 56px; margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--yellow); color: var(--yellow-ink);
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  box-shadow: 0 0 0 6px rgba(255,196,0,.18);
  position: relative; z-index: 1;
}
.flow__step h3 { color: #fff; font-size: 1.06rem; margin-bottom: 8px; }
.flow__step p { color: var(--on-blue); font-size: 0.95rem; }

/* ====================== LOKACIJA ====================== */
.loc { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: stretch; }
.loc__info h3 { margin: 20px 0 10px; }
.loc__info p { font-size: 1rem; }
.loc-steps { margin-top: 16px; display: grid; gap: 13px; }
.loc-steps li { display: flex; gap: 13px; align-items: flex-start; }
.loc-steps .b { flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); font-family: var(--font-head); font-weight: 800; font-size: 0.9rem; }
.loc-steps strong { color: var(--blue-ink); display: block; }
.loc-steps span.tx { color: var(--muted); font-size: 0.94rem; }
.loc__map { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh-sm); min-height: 380px; background: var(--bg-soft); }
.loc__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ====================== UTISCI ====================== */
.rating-badge {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  margin: 0 auto 34px;
  width: max-content;
}
.rating-badge .stars { color: var(--yellow); font-size: 1.5rem; letter-spacing: 2px; }
.rating-badge .score { font-family: var(--font-head); font-weight: 800; color: var(--blue-ink); }
.rating-badge .score b { font-size: 1.4rem; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 24px;
  box-shadow: var(--sh-sm);
}
.review .stars { color: var(--yellow); font-size: 1rem; letter-spacing: 1px; margin-bottom: 10px; }
.review p { color: var(--text); font-size: 0.98rem; margin-bottom: 16px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 800; }
.review .who b { display: block; color: var(--blue-ink); font-family: var(--font-head); }
.review .who span { font-size: 0.84rem; color: var(--muted); }

/* ====================== FAQ ====================== */
.faq { max-width: 820px; margin-inline: auto; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); background: #fff; }
.faq details { border-bottom: 1px solid var(--border); }
.faq details:last-child { border-bottom: none; }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.04rem; color: var(--blue-ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex-shrink: 0; position: relative; width: 22px; height: 22px; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; background: var(--blue); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.faq summary .pm::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq summary .pm::after { top: 0; left: 10px; width: 2px; height: 22px; }
.faq details[open] summary .pm::after { transform: rotate(90deg); opacity: 0; }
.faq details[open] summary { color: var(--blue); }
.faq .ans { padding: 0 24px 22px; }
.faq .ans p { font-size: 0.98rem; }
.faq .ans a { color: var(--blue); font-weight: 600; }

/* ====================== KONTAKT (boarding pass) ====================== */
.contact { display: grid; grid-template-columns: 1.05fr 1fr; gap: 42px; align-items: start; }
.contact__lead h3 { color: #fff; margin-bottom: 14px; }
.contact__lead p { color: var(--on-blue); margin-bottom: 26px; }
.chips { display: grid; gap: 13px; }
.chip {
  display: flex; align-items: center; gap: 15px;
  padding: 15px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r);
  transition: border-color .18s ease, background .18s ease;
}
.chip:hover { border-color: var(--yellow); background: rgba(255,196,0,.1); }
.chip__ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,196,0,.18); }
.chip__ic svg { width: 24px; height: 24px; fill: var(--yellow); }
.chip .k { color: var(--on-blue-dim); font-size: 0.82rem; }
.chip .v { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.04rem; }

/* Boarding-pass kartica — potpisni element */
.pass {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh);
  overflow: hidden;
  color: var(--text);
}
.pass__top { background: var(--blue-ink); color: #fff; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; }
.pass__top .lbl { font-family: var(--font-head); font-weight: 800; letter-spacing: 0.04em; }
.pass__top .plane { width: 26px; height: 26px; fill: var(--yellow); }
.pass__body { padding: 26px; }
.pass__body h3 { margin-bottom: 6px; }
.pass__body > p { font-size: 0.95rem; margin-bottom: 20px; }
.pass__body > p strong { color: var(--blue-ink); }
.pass__perf {
  position: relative;
  height: 26px;
  background:
    radial-gradient(circle at left center, var(--blue-700) 0 12px, transparent 12px) left center / 24px 100% no-repeat,
    radial-gradient(circle at right center, var(--blue-700) 0 12px, transparent 12px) right center / 24px 100% no-repeat,
    #fff;
}
.pass__perf::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 22px;
  right: 22px;
  transform: translateY(-50%);
  border-top: 2px dashed var(--border);
}
.need { display: grid; gap: 12px; }
.need-h { font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.need li { display: flex; gap: 12px; align-items: flex-start; }
.need .t { flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); font-family: var(--font-head); font-weight: 800; font-size: 0.82rem; }
.need li > span:last-child { font-size: 0.96rem; color: var(--muted); }
.need strong { color: var(--blue-ink); font-weight: 600; }

/* ====================== FOOTER ====================== */
.ftr { background: var(--blue-ink); color: var(--on-blue); padding-block: 54px 24px; }
.ftr__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 34px; margin-bottom: 40px; }
.ftr .brand { color: #fff; margin-bottom: 16px; }
.ftr .brand b { color: var(--yellow); }
.ftr__about { color: var(--on-blue-dim); font-size: 0.94rem; max-width: 320px; }
.ftr__col h4 { font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.ftr__col ul { display: grid; gap: 10px; }
.ftr__col a { color: var(--on-blue-dim); font-size: 0.94rem; transition: color .15s ease; }
.ftr__col a:hover { color: var(--yellow); }
.ftr__net { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 18px 20px; }
.ftr__net p { font-size: 0.9rem; color: var(--on-blue-dim); }
.ftr__net a { color: var(--yellow); font-weight: 600; }
.ftr__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.85rem; color: var(--on-blue-dim); }

/* Mobilni lebdeći CTA */
.mcta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 120; background: rgba(6,36,92,.97); backdrop-filter: blur(8px); border-top: 1px solid rgba(255,255,255,.14); padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap: 10px; }
.mcta .btn { flex: 1; min-height: 50px; padding: 14px 8px; font-size: 0.95rem; }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 980px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .flow::before { display: none; }
  .reviews { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .loc { grid-template-columns: 1fr; gap: 30px; }
  .contact { grid-template-columns: 1fr; }
  .contact__lead { order: 2; }
  .ftr__grid { grid-template-columns: 1fr 1fr; }
  .ftr__net { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 8px 0; transform: translateY(-135%); transition: transform .3s ease; box-shadow: var(--sh);
  }
  .menu a { padding: 15px 24px; border-bottom: 1px solid var(--border); }
  .burger-cb:checked ~ .menu { transform: translateY(0); }
  .burger { display: flex; }
  .burger-cb:checked ~ .nav-right .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger-cb:checked ~ .nav-right .burger span:nth-child(2) { opacity: 0; }
  .burger-cb:checked ~ .nav-right .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-tel__txt { display: none; }
  .mcta { display: flex; }
  body { padding-bottom: 74px; }
  .price-rows { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .benefits { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__facts li + li { border-left: none; }
  .hero__facts li { flex-basis: 45%; }
}
