/* ==========================================================================
   AUTOMACHA – hlavní stylopis
   ========================================================================== */

:root {
  --red: #e01b22;
  --red-dark: #a8121a;
  --red-light: #ff4550;
  --dark: #15161b;
  --dark-2: #1f2128;
  --dark-3: #2a2d36;
  --gray: #6b7280;
  --gray-light: #f5f5f7;
  --gray-border: #e7e7ea;
  --white: #ffffff;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(20, 20, 30, 0.08);
  --shadow-lg: 0 20px 50px rgba(20, 20, 30, 0.15);
  --container: 1200px;
  --header-h: 86px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin: 0 0 .5em;
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}

p { margin: 0 0 1em; color: var(--gray); }

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

ul { list-style: none; margin: 0; padding: 0; }

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent { color: var(--red); }

section { scroll-margin-top: 130px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(224, 27, 34, 0.35);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(224, 27, 34, 0.45);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn:disabled { opacity: .7; cursor: not-allowed; transform: none !important; }

.section-tag {
  display: inline-block;
  color: var(--red);
  background: rgba(224, 27, 34, 0.08);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.section-head p { margin: 0; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 24px;
}
.topbar__contacts { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar__contacts a,
.topbar__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar__contacts a:hover,
.topbar__location:hover { color: var(--white); }
.topbar__contacts i,
.topbar__location i { color: var(--red-light); }
.topbar__location { flex-shrink: 0; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(21, 22, 27, 0.0);
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  transition: box-shadow .3s ease, padding .3s ease;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--dark);
  text-transform: uppercase;
}
.logo i { color: var(--red); font-size: 1.5rem; }
.logo__text strong { color: var(--red); font-weight: 800; }

.nav__link.is-active { color: var(--red); }
.dropdown a.is-current { background: var(--gray-light); color: var(--red); }

.nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 100px;
  transition: background .2s ease, color .2s ease;
}
.nav__link:hover { background: var(--gray-light); color: var(--red); }
.nav__caret { font-size: 0.65rem; transition: transform .2s ease; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-dropdown:hover .nav__caret { transform: rotate(180deg); }
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--dark);
}
.dropdown li a i { color: var(--red); width: 18px; text-align: center; }
.dropdown li a:hover { background: var(--gray-light); }

.header__actions { display: flex; align-items: center; gap: 18px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--dark);
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,16,20,0.75) 0%, rgba(15,16,20,0.55) 45%, rgba(15,16,20,0.92) 100%),
    linear-gradient(100deg, rgba(224,27,34,0.35) 0%, rgba(15,16,20,0.2) 45%);
}
.hero__content { position: relative; z-index: 2; padding-top: 40px; padding-bottom: 60px; }
.hero__eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--red-light);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  max-width: 900px;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero__cta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.hero__badges li { display: flex; align-items: center; gap: 8px; }
.hero__badges i { color: var(--red-light); }

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- USP strip ---------- */
.usp {
  background: var(--dark);
  padding: 40px 0;
}
.usp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.usp__item { display: flex; align-items: flex-start; gap: 16px; }
.usp__item i {
  font-size: 1.6rem;
  color: var(--red-light);
  background: rgba(255,255,255,0.06);
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.usp__item h3 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.usp__item p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }

/* ---------- Services ---------- */
.services { padding: 110px 0 80px; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.service-cards--5 {
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 0;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card__icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: rgba(224, 27, 34, 0.08);
  color: var(--red);
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .3s ease, color .3s ease;
}
.service-card:hover .service-card__icon { background: var(--red); color: var(--white); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; margin-bottom: 18px; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--red);
}
.service-card__link i { transition: transform .25s ease; }
.service-card:hover .service-card__link i { transform: translateX(4px); }

.service-detail {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  padding: 56px 0;
  border-top: 1px solid var(--gray-border);
  scroll-margin-top: 130px;
}
.service-detail__head { display: flex; gap: 20px; align-items: flex-start; }
.service-detail__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--dark);
  color: var(--red-light);
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-detail__head h3 { font-size: 1.5rem; margin-bottom: 8px; }
.service-detail__head p { margin: 0; }

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gray-light);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background .25s ease, transform .25s ease;
}
.detail-item:hover { background: rgba(224,27,34,0.08); transform: translateX(4px); }
.detail-item i { color: var(--red); font-size: 1.1rem; width: 22px; text-align: center; flex-shrink: 0; }
.detail-item span { color: var(--dark); }

/* ---------- About ---------- */
.about { padding: 90px 0; background: var(--gray-light); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 26px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about__badge strong { display: block; font-family: var(--font-heading); font-size: 1.8rem; line-height: 1; }
.about__badge span { font-size: 0.8rem; opacity: 0.9; }

.about__content h2 { font-size: clamp(1.8rem, 3.2vw, 2.3rem); }
.about__list { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.about__list li { display: flex; align-items: flex-start; gap: 10px; color: var(--dark); font-size: 0.95rem; }
.about__list i { color: var(--red); margin-top: 3px; }

.about__stats {
  display: flex;
  gap: 36px;
  margin: 8px 0 32px;
  flex-wrap: wrap;
}
.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--red);
}
.stat__label { font-size: 0.85rem; color: var(--gray); }

/* ---------- Pricing ---------- */
.pricing { padding: 90px 0; }
.pricing__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.pricing__tab {
  background: var(--gray-light);
  border: none;
  padding: 12px 26px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  transition: background .25s ease, color .25s ease;
}
.pricing__tab.is-active,
.pricing__tab:hover { background: var(--red); color: var(--white); }

.pricing__panels { max-width: 760px; margin: 0 auto; }
.pricing__panel { display: none; }
.pricing__panel.is-active { display: block; }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px dashed var(--gray-border);
  font-size: 1rem;
}
.price-row:last-child { border-bottom: none; }
.price-row span:first-child { color: var(--dark); font-weight: 500; }
.price-row span:last-child { color: var(--red); font-family: var(--font-heading); font-weight: 700; white-space: nowrap; }

/* ---------- Contact ---------- */
.contact { padding: 90px 0 110px; background: var(--gray-light); }
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: flex-start;
}
.contact__info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.info-card i {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(224,27,34,0.08);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.info-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.info-card p { margin: 0; font-size: 0.92rem; }
.info-card a:hover { color: var(--red); }

.map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 220px;
  display: block;
  position: relative;
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15);
  pointer-events: none;
}

.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(224,27,34,0.12);
}
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid { border-color: var(--red-dark); }

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-group--checkbox input { margin-top: 4px; width: 16px; height: 16px; accent-color: var(--red); flex-shrink: 0; }
.form-group--checkbox label { margin: 0; font-weight: 400; font-size: 0.85rem; color: var(--gray); }

.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.contact__form .btn { width: 100%; }

.form-message {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}
.form-message.is-success { display: block; background: rgba(34,197,94,0.1); color: #15803d; }
.form-message.is-error { display: block; background: rgba(224,27,34,0.1); color: var(--red-dark); }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); padding-top: 70px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; }
.footer__col p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul a { font-size: 0.9rem; }
.footer__col ul a:hover { color: var(--red-light); }
.footer__contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.footer__contact i { color: var(--red-light); margin-top: 3px; }

.logo--footer { color: var(--white); margin-bottom: 16px; }
.logo--footer .logo__text strong { color: var(--red-light); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; }

/* ---------- Service subpages ---------- */
.page-hero {
  background:
    linear-gradient(135deg, rgba(224,27,34,0.18), transparent 50%),
    var(--dark);
  color: var(--white);
  padding: 70px 0 60px;
}
.page-hero__inner { max-width: 760px; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.breadcrumbs a:hover { color: var(--white); }
.page-hero__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  color: var(--red-light);
  font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin: 0;
  max-width: 640px;
}

.page-service { padding: 70px 0 90px; }
.detail-grid--page {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 56px;
}
.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.page-cta h2 { font-size: 1.4rem; margin-bottom: 8px; }
.page-cta p { margin: 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
  z-index: 400;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); }

/* ---------- Reveal animation base state ---------- */
.reveal { opacity: 0; }

/* Bez JS musí obsah zůstat viditelný (viz třída "no-js" na <html>) */
.no-js .reveal { opacity: 1; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 480px; margin: 0 auto; }
  .service-cards,
  .service-cards--5 { grid-template-columns: repeat(2, 1fr); }
  .usp__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .topbar__hours { display: none; }
  .nav {
    position: fixed;
    top: var(--header-offset, var(--header-h));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
    padding: 20px;
    z-index: 400;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { padding: 16px; font-size: 1.05rem; justify-content: space-between; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    background: var(--gray-light);
    margin: 4px 0 4px 12px;
  }
  .has-dropdown.is-open .dropdown { display: block; }
  .has-dropdown.is-open .nav__caret { transform: rotate(180deg); }
  .header__actions .btn--sm { display: none; }
  .hamburger { display: flex; }

  .service-detail { grid-template-columns: 1fr; gap: 24px; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --header-h: 72px; }
  .service-cards,
  .service-cards--5 { grid-template-columns: 1fr; }
  .usp__grid { grid-template-columns: 1fr; }
  .detail-grid,
  .detail-grid--page { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact__form { padding: 26px; }
  .hero { min-height: 100vh; }
  .footer__bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
  .page-cta { padding: 28px; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .about__badge { right: 12px; bottom: -18px; padding: 14px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
