/* =========================================================
   A-SPARK | aspark.rs
   Aerodrom Parking Beograd — produkciono spreman CSS
   Čist, moderan CSS (Flexbox + Grid), bez eksternih biblioteka
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Boje */
  --navy-deep: #081826;
  --navy: #0C2233;
  --navy-2: #13344E;
  --accent: #FF7A00;
  --accent-hover: #E66A00;
  --accent-soft: #FFB066;
  --bg: #FFFFFF;
  --bg-alt: #F4F7FA;
  --bg-card: #FFFFFF;
  --text: #1B2A38;
  --text-muted: #5C6B7A;
  --text-on-dark: rgba(255, 255, 255, 0.86);
  --text-on-dark-muted: rgba(255, 255, 255, 0.62);
  --border: #E2E8EF;
  --success: #1FB57A;

  /* Tipografija */
  --font-display: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Razmaci i radijusi */
  --container: 1160px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(8, 24, 38, 0.06);
  --shadow: 0 14px 40px rgba(8, 24, 38, 0.10);
  --shadow-accent: 0 10px 26px rgba(255, 122, 0, 0.32);

  /* Sticky header offset za sidra */
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*,
*::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;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; }

/* Smanjena animacija za korisnike koji to traže */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- Tipografija ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}

h2 {
  font-size: clamp(1.7rem, 1.1rem + 2.4vw, 2.5rem);
  font-weight: 800;
}

h3 { font-size: 1.2rem; font-weight: 700; }

p { color: var(--text-muted); }

/* ---------- Helpers / Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding-block: clamp(56px, 4vw + 36px, 96px); }

.section--alt { background: var(--bg-alt); }

.section--dark {
  background: var(--navy);
  color: var(--text-on-dark);
}
.section--dark h2,
.section--dark h3 { color: #fff; }
.section--dark p { color: var(--text-on-dark); }

.section-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-head p { font-size: 1.05rem; margin-top: 12px; }

/* Sidra ne padaju ispod sticky headera */
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ---------- Dugmad ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 28px;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  min-height: 52px;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

.btn--light {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--block { width: 100%; }

/* ====================================================
   HEADER + NAV
   ==================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 34, 51, 0.97);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.32rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo__mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
}
.logo__mark span { transform: translateY(-1px); }
.logo b { color: var(--accent); font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-on-dark);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1.02rem;
}
.nav-phone:hover { color: var(--accent-soft); }
.nav-phone svg { width: 18px; height: 18px; fill: var(--accent); }

/* Mobilni meni (CSS-only, bez JS) */
.nav-toggle { display: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(255, 122, 0, 0.18), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.05) 0, transparent 28%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  padding-block: clamp(48px, 5vw, 86px);
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 122, 0, 0.14);
  border: 1px solid rgba(255, 122, 0, 0.4);
  color: var(--accent-soft);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(31, 181, 122, 0.25);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.05rem, 1.2rem + 3.6vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero h1 .hl { color: var(--accent-soft); }

.hero__sub {
  font-size: 1.12rem;
  color: var(--text-on-dark);
  max-width: 540px;
  margin-bottom: 30px;
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-bottom: 34px;
}
.hero__benefits li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  font-size: 0.98rem;
  color: #fff;
}
.hero__benefits svg { width: 20px; height: 20px; fill: var(--accent); flex-shrink: 0; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero kartica — vizuelni „signature" element */
.hero__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow);
}
.hero__card h2 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.hero__card > p {
  color: var(--text-on-dark-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.price-snap {
  display: grid;
  gap: 10px;
}
.price-snap li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}
.price-snap .lbl { color: var(--text-on-dark); font-weight: 500; }
.price-snap .val { font-family: var(--font-display); font-weight: 800; color: var(--accent-soft); font-size: 1.05rem; }
.price-snap li.feat {
  background: rgba(255, 122, 0, 0.16);
  border: 1px solid rgba(255, 122, 0, 0.35);
}
.hero__card .note {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  text-align: center;
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-block: 30px;
  text-align: center;
}
.trust__grid .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 1rem + 1.4vw, 2rem);
  color: var(--accent);
  line-height: 1.1;
}
.trust__grid .lbl {
  color: var(--text-on-dark-muted);
  font-size: 0.86rem;
  margin-top: 4px;
}

/* ====================================================
   ZAŠTO NAS / FEATURES
   ==================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(255, 122, 0, 0.12);
  margin-bottom: 18px;
}
.feature__icon svg { width: 26px; height: 26px; fill: var(--accent); }
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: 0.96rem; }

.about-lead {
  max-width: 760px;
  margin: 0 auto clamp(34px, 4vw, 50px);
  text-align: center;
}
.about-lead p { font-size: 1.08rem; }

/* ====================================================
   CENOVNIK
   ==================================================== */
.pricing-wrap {
  max-width: 100%;
  margin-inline: auto;
}
.price-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--navy-2);
  color: #fff;
}
.price-note svg { width: 24px; height: 24px; fill: var(--accent-soft); flex-shrink: 0; }
.price-note span { font-size: 0.96rem; color: var(--text-on-dark); }
.price-note b { color: #fff; }

.pricing-cta { text-align: center; margin-top: 32px; }
.pricing-cta p { margin-bottom: 16px; }

/* --- Cenovnik: tri kolone (1-10 / 11-20 / 21-30 dana) --- */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.price-card__head {
  position: relative;
  background: var(--navy);
  padding: 20px 22px;
  overflow: hidden;
}
.price-card__head h3 {
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 800;
}
.price-ribbon {
  position: absolute;
  top: 16px;
  left: -36px;
  transform: rotate(-45deg);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 42px;
  box-shadow: var(--shadow-sm);
}
.price-list { padding: 6px 8px 10px; }
.price-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--border);
}
.price-list li:last-child { border-bottom: none; }
.price-list .p-badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--navy-2);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
}
.price-list .day {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.98rem;
}
.price-list .amt {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  font-size: 1rem;
  white-space: nowrap;
}

/* ====================================================
   KAKO FUNKCIONIŠE
   ==================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 36px 28px 30px;
}
.step__num {
  counter-increment: step;
  position: absolute;
  top: -22px;
  left: 28px;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: var(--shadow-accent);
}
.step__num::after { content: counter(step); }
.step h3 { color: #fff; margin: 8px 0 10px; }
.step p { color: var(--text-on-dark); font-size: 0.97rem; }

/* ====================================================
   LOKACIJA + MAPA
   ==================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.location-info h3 { margin: 22px 0 10px; }
.location-info p { font-size: 1rem; }
.directions {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
.directions li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.directions .pin {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255, 122, 0, 0.12);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
}
.directions strong { color: var(--navy); display: block; }
.directions span { color: var(--text-muted); font-size: 0.95rem; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  min-height: 380px;
  background: var(--bg-alt);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ====================================================
   FAQ (native <details>, bez JS)
   ==================================================== */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.12);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.25s ease;
}
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; }
.faq-item .faq-body p { font-size: 0.98rem; }

/* ====================================================
   KONTAKT + FORMA
   ==================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-aside h3 { color: #fff; margin-bottom: 14px; }
.contact-aside p { color: var(--text-on-dark); margin-bottom: 26px; }

.contact-channels { display: grid; gap: 14px; }
.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: border-color 0.18s ease, background 0.18s ease;
}
.channel:hover { border-color: rgba(255, 122, 0, 0.5); background: rgba(255, 122, 0, 0.08); }
.channel__ic {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255, 122, 0, 0.16);
}
.channel__ic svg { width: 24px; height: 24px; fill: var(--accent-soft); }
.channel .k { color: var(--text-on-dark-muted); font-size: 0.82rem; }
.channel .v { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }

/* Forma */
.reserve-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
}
.reserve-card h3 { color: var(--navy); margin-bottom: 8px; }
.reserve-card__sub { font-size: 0.96rem; margin-bottom: 22px; }
.reserve-card__sub strong { color: var(--navy); }
.reserve-card .btn { margin-bottom: 4px; }
.reserve-card__or {
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 16px 0 22px;
  position: relative;
}
.reserve-card__or::before,
.reserve-card__or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22%;
  height: 1px;
  background: var(--border);
}
.reserve-card__or::before { left: 0; }
.reserve-card__or::after { right: 0; }
.reserve-card__h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.reserve-list { display: grid; gap: 12px; }
.reserve-list li { display: flex; align-items: flex-start; gap: 13px; }
.reserve-list .rl-ic {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.12);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
}
.reserve-list li span:last-child { font-size: 0.97rem; color: var(--text-muted); padding-top: 2px; }
.reserve-list strong { color: var(--navy); font-weight: 600; }
.reserve-card__note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: var(--navy-deep);
  color: var(--text-on-dark);
  padding-block: 54px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-on-dark-muted); font-size: 0.95rem; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--text-on-dark-muted); font-size: 0.95rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--accent-soft); }
.footer-network {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.footer-network p { font-size: 0.9rem; color: var(--text-on-dark-muted); }
.footer-network a { color: var(--accent-soft); font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--text-on-dark-muted);
}

/* Lebdeći mobilni CTA bar */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 120;
  background: rgba(8, 24, 38, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta .btn { flex: 1; padding: 14px 10px; min-height: 50px; font-size: 0.95rem; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__card { order: 2; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-network { grid-column: 1 / -1; }
  .price-cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

@media (max-width: 860px) {
  /* Mobilni meni */
  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
  }
  .nav-links a { padding: 15px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .nav-toggle:checked ~ .nav-links { transform: translateY(0); }
  .nav-burger { display: flex; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-phone .nav-phone__txt { display: none; }
  .nav-actions { gap: 10px; }

  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .step { padding-top: 30px; }
  .location-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-aside { order: 2; }

  .mobile-cta { display: flex; }
  body { padding-bottom: 74px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .nav-phone__num { font-size: 0.95rem; }
}
