:root {
  --ink: #111827;
  --muted: #5b6678;
  --line: #d9e1ea;
  --bg: #f4f7fa;
  --white: #ffffff;
  --accent: #0f8f9f;
  --accent-dark: #0a6671;
  --warning: #f2b84b;
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  line-height: 1.6;
}

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

.site-notice {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 58px 10px 24px;
  color: #07131f;
  background: var(--warning);
  box-shadow: 0 10px 30px rgba(7, 19, 31, 0.18);
}

.site-notice[hidden],
.notice-dismissed .site-notice {
  display: none;
}

.site-notice p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.notice-close {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: #07131f;
  background: rgba(255, 255, 255, 0.42);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.notice-close:hover {
  background: rgba(255, 255, 255, 0.74);
}

.site-header {
  min-height: 100vh;
  background: #0f172a;
}

.nav {
  position: fixed;
  top: var(--notice-offset, 0px);
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(9, 18, 32, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #091220;
  background: var(--warning);
  font-weight: 800;
  font-size: 22px;
}

.brand strong {
  display: block;
}

.brand strong {
  line-height: 1.15;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
}

.nav-links a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.82);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--accent);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 116px clamp(20px, 5vw, 72px) 56px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero-autoszyby-glejzer.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 13, 24, 0.92) 0%, rgba(7, 13, 24, 0.72) 42%, rgba(7, 13, 24, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 13, 24, 0.38), rgba(7, 13, 24, 0.05));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero .eyebrow {
  color: var(--warning);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  line-height: 0.98;
  font-size: clamp(52px, 9vw, 104px);
}

h2 {
  margin-bottom: 16px;
  line-height: 1.1;
  font-size: clamp(32px, 5vw, 56px);
}

h3 {
  margin-bottom: 10px;
  line-height: 1.2;
  font-size: 22px;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.button.primary {
  color: #07131f;
  background: var(--warning);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
}

.hero-points li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  background: var(--white);
}

.intro p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
}

.service-carousel {
  position: relative;
}

.service-track {
  display: grid;
  grid-auto-columns: calc((100% - 54px) / 4);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
}

.service-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  min-height: 260px;
  padding: 26px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.service-card .icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent-dark);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
}

.service-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 999px;
  color: #07131f;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.16);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.service-control:hover {
  background: var(--warning);
}

.service-prev {
  left: -18px;
}

.service-next {
  right: -18px;
}

.service-control:disabled {
  opacity: 0.36;
  cursor: default;
}

.service-control:disabled:hover {
  background: var(--white);
}

.band {
  padding: 0 clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #0b1725, #122840);
  color: var(--white);
}

.band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  padding: clamp(48px, 7vw, 76px) 0;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.steps span {
  color: rgba(255, 255, 255, 0.72);
}

.trusted-section {
  padding-block: clamp(34px, 4vw, 52px);
  background:
    linear-gradient(180deg, rgba(7, 13, 24, 0.98), rgba(9, 18, 32, 0.94)),
    var(--ink);
  color: var(--white);
}

.trusted-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.trusted-section .section-heading {
  margin-bottom: 22px;
}

.trusted-section h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.trusted-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 184, 67, 0.18), transparent 30%),
    linear-gradient(135deg, #081321 0%, #12253a 100%);
  box-shadow: var(--shadow);
}

.gallery {
  background: var(--white);
  border-top: 1px solid rgba(7, 13, 24, 0.08);
}

.trusted-card-media {
  position: relative;
  height: 100%;
  min-height: 310px;
  overflow: hidden;
  background: #07111e;
}

.trusted-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 24, 0), rgba(7, 13, 24, 0.54));
  pointer-events: none;
}

.trusted-card-media .carousel-slide img {
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.trusted-card-media .carousel-track,
.trusted-card-media .carousel-slide {
  height: 100%;
}

.trusted-card h3 {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 13, 24, 0), rgba(7, 13, 24, 0.86)),
    url("assets/hero-autoszyby-glejzer.png");
  background-size: cover;
  box-shadow: var(--shadow);
}

.gallery-b { background-position: 65% center; }
.gallery-c { background-position: 40% center; }
.gallery-d { background-position: 80% center; }

.gallery-item > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 24, 0), rgba(7, 13, 24, 0.86));
  pointer-events: none;
}

.gallery-item figcaption,
.gallery-carousel h3 {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
}

.gallery-carousel {
  background: #07111e;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 260ms ease;
}

.carousel-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  margin: 0;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.carousel-slide figcaption {
  position: absolute;
  left: 18px;
  bottom: 56px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 7px;
  color: var(--white);
  background: rgba(7, 13, 24, 0.74);
  font-weight: 800;
  font-size: 13px;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(7, 13, 24, 0.62);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-control:hover {
  background: rgba(7, 13, 24, 0.84);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 52px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--warning);
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
}

.why-panel {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.why-panel p:last-child {
  max-width: 780px;
  color: var(--muted);
}

.stats {
  display: grid;
  gap: 14px;
}

.stats div {
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--accent-dark);
}

.stats strong {
  display: block;
  line-height: 1;
  font-size: 42px;
}

.stats span {
  color: rgba(255, 255, 255, 0.78);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: start;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
  background: #0b1725;
  color: var(--white);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-list a,
.contact-list p {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-list span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.map-card {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.map-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(15, 143, 159, 0.26), rgba(242, 184, 75, 0.14)),
    rgba(7, 13, 24, 0.34);
}

.map-placeholder strong {
  font-size: 20px;
}

.map-placeholder p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.map-placeholder .button {
  margin-top: 4px;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.map-card a {
  display: block;
  padding: 14px 16px;
  color: var(--white);
  font-weight: 800;
  background: rgba(15, 143, 159, 0.22);
}

.reviews-banner {
  margin-top: 14px;
  padding: 14px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(242, 184, 75, 0.22), rgba(15, 143, 159, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.google-rating-card {
  position: relative;
  display: grid;
  gap: 8px;
  align-items: center;
  padding: 16px 46px 16px 16px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 13, 24, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.google-rating-card:hover {
  border-color: rgba(242, 184, 75, 0.65);
  background: rgba(7, 13, 24, 0.52);
}

.google-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.google-brand b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--white);
  background: #4285f4;
  font-size: 17px;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.rating-row strong {
  color: #caa5ff;
  font-size: 32px;
  line-height: 1;
}

.rating-row span {
  color: var(--warning);
  letter-spacing: 0.04em;
}

.rating-row small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.external-mark {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.recent-reviews {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.recent-reviews > span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
}

.review-carousel-frame {
  overflow: hidden;
}

.review-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.28s ease;
}

.review-slide {
  display: grid;
  flex: 0 0 100%;
  gap: 5px;
  min-height: 142px;
  padding: 10px 12px;
  border-radius: 7px;
  background: rgba(7, 13, 24, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.review-slide > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.recent-reviews b {
  color: var(--white);
}

.review-slide > div span {
  color: var(--warning);
  letter-spacing: 0.04em;
  font-size: 13px;
}

.recent-reviews p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.review-prev,
.review-next {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(7, 13, 24, 0.34);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.review-prev:hover,
.review-next:hover {
  border-color: rgba(242, 184, 75, 0.65);
  background: rgba(7, 13, 24, 0.54);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.review-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

.review-dots button.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--warning);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  align-self: start;
  padding: 24px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  gap: 5px;
  align-content: start;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #f9fbfd;
  font: inherit;
}

input.is-invalid {
  border-color: #d83b3b;
  background: #fff7f7;
  box-shadow: 0 0 0 3px rgba(216, 59, 59, 0.12);
}

.field-error {
  color: #b42318;
  font-size: 12px;
  font-weight: 700;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: -6px;
  font-weight: 700;
}

.privacy-summary {
  margin: -4px 0 -2px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: #f9fbfd;
  font-size: 12px;
  line-height: 1.45;
}

.privacy-summary a,
.privacy-note a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.privacy-note {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: #f9fbfd;
  font-size: 12px;
  line-height: 1.55;
}

.privacy-note strong {
  color: var(--ink);
}

.privacy-check a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-page {
  min-height: 100vh;
  padding: 120px clamp(20px, 5vw, 72px) 72px;
  background: var(--bg);
}

.privacy-content {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.privacy-content h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 64px);
}

.privacy-content h2 {
  margin-top: 30px;
  font-size: 24px;
}

.privacy-content p {
  color: var(--muted);
}

.privacy-content a:not(.button) {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-lead {
  max-width: 760px;
  font-size: 18px;
}

.privacy-updated {
  margin-top: 28px;
  font-size: 14px;
  font-weight: 700;
}

.privacy-content .button {
  margin-top: 18px;
}

.price-page {
  min-height: 100vh;
  padding: 120px clamp(20px, 5vw, 72px) 72px;
  color: var(--white);
  background: linear-gradient(135deg, #07111e, #0b1725 58%, #102235);
}

.price-hero,
.price-card,
.price-note {
  max-width: 980px;
  margin: 0 auto;
}

.price-hero {
  margin-bottom: 28px;
}

.price-hero h1 {
  max-width: 900px;
  margin: 8px 0 16px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1;
}

.price-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.price-card {
  display: grid;
  border-radius: 8px;
  background: rgba(7, 13, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 24px clamp(18px, 4vw, 34px);
  border-bottom: 1px solid rgba(242, 184, 75, 0.4);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row h2 {
  margin: 0 0 4px;
  color: #f26a25;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.price-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 3vw, 28px);
  line-height: 1.25;
}

.price-row strong {
  color: var(--warning);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  white-space: nowrap;
}

.price-note {
  margin-top: 24px;
  padding: 24px clamp(18px, 4vw, 34px);
  border-radius: 8px;
  background: rgba(15, 143, 159, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.price-note h2 {
  margin-top: 0;
  font-size: 28px;
}

.price-note p {
  color: rgba(255, 255, 255, 0.78);
}

.price-note a {
  color: var(--warning);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot {
  display: none;
}

.full {
  grid-column: 1 / -1;
}

.form-banner {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  border-radius: 7px;
  color: #0f3b23;
  background: #d8f5df;
  border: 1px solid #8bd39a;
  font-weight: 800;
}

.form-banner.is-error {
  color: #6f1d1d;
  background: #ffe0e0;
  border-color: #f0a3a3;
}

.contact-form.is-sending button[type="submit"] {
  opacity: 0.72;
  cursor: wait;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #07111e;
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .intro,
  .band-inner,
  .why,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trusted-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .nav {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 8px;
    background: rgba(9, 18, 32, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 13, 24, 0.94), rgba(7, 13, 24, 0.54));
  }

  .gallery-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .trusted-grid {
    grid-template-columns: 1fr;
  }

  .trusted-card {
    max-width: 420px;
  }

  .trusted-card-media,
  .trusted-card-media .carousel-slide img {
    height: 250px;
    min-height: 250px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .service-track {
    grid-auto-columns: 100%;
    padding-inline: 0;
  }

  .service-prev {
    left: 10px;
  }

  .service-next {
    right: 10px;
  }

  .service-control {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.94);
  }

  .service-card {
    min-height: 230px;
    padding: 24px 22px;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gallery-item,
  .gallery-item > img,
  .gallery-item .carousel-slide img {
    min-height: 250px;
  }

  .google-rating-card {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 460px) {
  h1 {
    font-size: 48px;
  }

  .button {
    width: 100%;
  }

  .hero-points li {
    display: flex;
    align-items: baseline;
  }
}
