:root {
  --black: #070707;
  --ink: #121212;
  --muted: #6d6d6d;
  --line: #e6e6e6;
  --soft: #f7f7f7;
  --white: #ffffff;
  --blue: #d90429;
  --blue-dark: #8f0016;
  --yellow: #f5f5f5;
  --orange: #e50914;
  --steel: #1a1a1a;
  --radius: 8px;
  --shadow: 0 18px 44px rgba(11, 17, 32, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--black);
  color: #d7deea;
  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a {
  color: var(--white);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(16, 21, 34, .08);
  box-shadow: 0 6px 24px rgba(7, 9, 15, .05);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 218px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > a,
.nav-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  border-radius: 6px;
}

.main-nav > a:hover,
.nav-button:hover {
  background: var(--soft);
  color: var(--blue);
}

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  margin-left: 8px;
}

.has-mega {
  position: static;
}

.mega-panel {
  position: absolute;
  left: 50%;
  top: 116px;
  width: min(1180px, calc(100vw - 32px));
  max-height: calc(100vh - 132px);
  overflow: auto;
  transform: translate(-50%, 12px);
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 21, 34, .1);
  box-shadow: var(--shadow);
  padding: 28px;
  border-radius: 8px;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel,
.mega-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

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

.mega-group h3,
.mega-title {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
}

.mega-group ul,
.repair-card ul,
.detail-panel ul,
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-group li,
.repair-card li {
  position: relative;
  padding-left: 16px;
  margin: 6px 0;
  color: var(--muted);
  font-size: 14px;
}

.mega-group li::before,
.repair-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
}

.mega-group a:hover,
.repair-card a:hover,
.text-link:hover {
  color: var(--blue);
}

.mega-all {
  color: var(--blue);
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  padding: 10px;
}

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

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(7, 9, 15, .96), rgba(7, 9, 15, .74) 42%, rgba(7, 9, 15, .18)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue), var(--black));
}

.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 640px;
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--blue);
}

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

.hero h1 {
  font-size: 56px;
  line-height: 1.04;
  margin: 14px 0 18px;
  max-width: 680px;
}

.hero p {
  max-width: 620px;
  color: #dce5f2;
  font-size: 19px;
}

.hero-actions,
.split-head,
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn.is-done {
  background: var(--orange);
  color: var(--white);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .06);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.hero-stats span {
  padding: 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  color: #dce5f2;
}

.hero-stats strong {
  display: block;
  color: var(--blue);
  font-size: 24px;
}

.service-band {
  position: relative;
  z-index: 2;
  background: #050505;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.band-grid div {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  font-weight: 800;
}

.band-grid span {
  color: var(--blue);
}

.section {
  padding: 84px 0;
}

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

.section-dark {
  background: var(--black);
  color: var(--white);
}

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

.section-head h2,
.split-head h2,
.process-copy h2,
.faq-layout h2,
.note-panel h2 {
  font-size: 34px;
  line-height: 1.18;
  margin: 8px 0 10px;
}

.section-head p,
.process-copy p,
.note-panel p {
  color: var(--muted);
}

.section-dark .split-head p,
.section-dark .eyebrow {
  color: var(--white);
}

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

.repair-card {
  min-height: 210px;
}

.repair-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.image-card-grid,
.campaign-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.image-card-grid.all-services {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.image-card,
.campaign-card,
.blog-card,
.detail-panel,
.article-side,
.note-panel {
  background: var(--white);
  border: 1px solid rgba(16, 21, 34, .1);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16, 21, 34, .08);
  overflow: hidden;
}

.image-card img,
.campaign-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transition: filter .25s ease, transform .25s ease;
}

.image-card:hover img,
.campaign-card:hover img,
.blog-card:hover img {
  filter: grayscale(.2) contrast(1.05);
  transform: scale(1.03);
}

.image-card div,
.blog-card div,
.campaign-body {
  padding: 20px;
}

.image-card span,
.badge {
  display: inline-flex;
  padding: 5px 9px;
  background: rgba(217, 4, 41, .12);
  color: var(--blue-dark);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
}

.image-card h3,
.blog-card h3,
.campaign-card h3 {
  margin: 12px 0 8px;
  font-size: 21px;
  line-height: 1.24;
}

.image-card p,
.blog-card p,
.campaign-card p {
  color: var(--muted);
}

.process-grid,
.detail-grid,
.faq-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: start;
}

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

.steps div {
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(16, 21, 34, .1);
  border-radius: 8px;
}

.steps span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 12px;
}

.steps strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.steps p {
  color: var(--muted);
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(7, 9, 15, .94), rgba(7, 9, 15, .62), rgba(7, 9, 15, .24)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  font-size: 46px;
  line-height: 1.08;
  margin: 10px 0 12px;
}

.page-hero p {
  max-width: 720px;
  color: #dce5f2;
  font-size: 18px;
}

.detail-main {
  min-width: 0;
}

.detail-main h2 {
  font-size: 34px;
  line-height: 1.18;
}

.check-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25em;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 4px solid var(--blue);
  border-radius: 50%;
}

.detail-panel,
.article-side,
.note-panel {
  padding: 26px;
}

.detail-panel h3,
.article-side h3 {
  margin-bottom: 14px;
}

.detail-panel li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.detail-panel .btn {
  margin-top: 18px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid rgba(16, 21, 34, .1);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

.faq-list p {
  color: var(--muted);
  margin: 12px 0 0;
}

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

.campaign-card {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
}

.campaign-card img {
  height: 100%;
  aspect-ratio: auto;
}

.blog-grid.single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.post-meta span {
  padding: 4px 8px;
  background: var(--soft);
  border-radius: 5px;
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) 330px;
}

.article-body {
  max-width: 820px;
}

.article-body h2 {
  font-size: 28px;
  margin: 28px 0 10px;
}

.article-body p {
  color: #4c5568;
  font-size: 17px;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  background: #090d15;
  color: #dbe3ef;
}

.footer-cta {
  background: var(--blue);
  color: var(--white);
  padding: 32px 0;
}

.footer-cta h2 {
  margin: 8px 0 0;
  font-size: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr 1fr;
  gap: 36px;
  padding: 56px 0 34px;
}

.footer-brand img {
  width: 220px;
  background: var(--white);
  border-radius: 8px;
  padding: 4px 8px;
  margin-bottom: 18px;
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 18px;
}

.site-footer p,
.site-footer li {
  color: #aeb8c8;
}

.site-footer li {
  margin: 9px 0;
}

.site-footer a:hover {
  color: var(--white);
}

.social-row {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.social-row a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border-radius: 6px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #aeb8c8;
  font-size: 14px;
}

.hero-slider {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.slider-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity .8s ease, visibility .8s ease, transform 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(.86);
  transform: scale(1.08);
}

.hero-slider .hero-copy {
  max-width: 680px;
  padding: 0;
}

.hero-slide h1 {
  font-size: 56px;
  line-height: 1.04;
  margin: 14px 0 18px;
  max-width: 720px;
}

.hero-slide p {
  max-width: 640px;
  color: #dce5f2;
  font-size: 19px;
}

.slide-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.slide-points li {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px 8px 34px;
  color: #f5f5f5;
  background: rgba(0, 0, 0, .34);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.slide-points li::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border: 3px solid var(--white);
  border-radius: 50%;
}

.hero-slide.is-active img {
  animation: slideZoom 6500ms ease forwards;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .66) 48%, rgba(0, 0, 0, .26));
}

.hero-slide-inner {
  position: relative;
  z-index: 3;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 680px) 320px;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding: 94px 0 132px;
}

.hero-slide:not(.is-active) .hero-copy > * {
  opacity: 0;
  transform: translateY(18px);
}

.hero-slide.is-active .hero-copy > * {
  opacity: 1;
  transform: translateY(0);
  animation: copyIn .7s ease;
}

.hero-slide.is-active .hero-copy > *:nth-child(2) {
  animation-delay: .12s;
}

.hero-slide.is-active .hero-copy > *:nth-child(3) {
  animation-delay: .22s;
}

.hero-slide.is-active .hero-copy > *:nth-child(4) {
  animation-delay: .32s;
}

.hero-slide.is-active .hero-copy > *:nth-child(5) {
  animation-delay: .42s;
}

.hero-slide.is-active .hero-copy > *:nth-child(6) {
  animation-delay: .52s;
}

.slide-service-card {
  align-self: center;
  margin: 0;
  padding: 24px;
  background: rgba(12, 12, 12, .72);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(14px);
  border-radius: 8px;
  transform: translateY(28px);
  opacity: 0;
}

.hero-slide.is-active .slide-service-card {
  animation: cardRise .8s ease .35s forwards;
}

.slide-service-card span {
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
}

.slide-service-card h3 {
  margin: 8px 0;
  font-size: 24px;
}

.slide-service-card p {
  color: #dce5f2;
  font-size: 15px;
}

.slide-service-card a {
  color: var(--white);
  font-weight: 900;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(7, 9, 15, .42);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}

.slider-arrow:hover {
  background: var(--blue);
  transform: translateY(-50%) scale(1.06);
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

.slider-ui {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .36);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.slider-dots button.is-active {
  width: 54px;
  background: var(--blue);
}

.slider-progress {
  width: 220px;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, .24);
  border-radius: 999px;
}

.slider-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--white), var(--blue));
}

.section-tight {
  padding: 42px 0;
}

.footer-grid {
  grid-template-columns: 1.2fr .78fr .78fr .78fr 1fr;
}

.quick-book {
  background: linear-gradient(90deg, #0a0e17, #11192a);
  color: var(--white);
}

.quick-book-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.quick-copy p {
  color: #cbd6e5;
}

.booking-panel,
.contact-form {
  display: grid;
  gap: 12px;
}

.booking-panel {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 18px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-panel label,
.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.booking-panel input,
.booking-panel select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
}

.booking-panel input:focus,
.booking-panel select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(0, 103, 216, .18);
  border-color: var(--blue);
}

.marquee-band {
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.marquee-band div {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 18px 0;
  animation: marquee 24s linear infinite;
}

.marquee-band span {
  position: relative;
  font-weight: 900;
  white-space: nowrap;
}

.marquee-band span::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  transform: translateY(-50%);
}

.why-grid,
.promo-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-card,
.testimonial,
.promo-tile {
  background: var(--white);
  border: 1px solid rgba(16, 21, 34, .1);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16, 21, 34, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.why-card {
  min-height: 220px;
  padding: 24px;
}

.why-card:hover,
.image-card:hover,
.blog-card:hover,
.campaign-card:hover,
.promo-tile:hover,
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(16, 21, 34, .14);
  border-color: rgba(0, 103, 216, .28);
}

.why-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  font-weight: 900;
}

.why-card h3 {
  margin: 18px 0 8px;
}

.why-card p,
.testimonial p {
  color: var(--muted);
  margin-bottom: 0;
}

.workshop-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.story-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--black), var(--blue), var(--white));
}

.story-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .5s ease;
}

.story-image:hover img {
  transform: scale(1.04);
}

.story-copy h2 {
  font-size: 38px;
  line-height: 1.14;
  margin: 8px 0 14px;
}

.story-copy p {
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.metric-grid div {
  padding: 18px;
  background: var(--soft);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
}

.metric-grid strong {
  display: block;
  color: var(--blue);
  font-size: 32px;
  line-height: 1;
}

.metric-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.home-campaigns .promo-grid {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promo-tile {
  overflow: hidden;
  background: #101827;
  border-color: rgba(255, 255, 255, .12);
}

.promo-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.promo-tile div {
  padding: 20px;
}

.promo-tile h3 {
  margin: 12px 0 8px;
  color: var(--white);
}

.promo-tile p {
  color: #cbd6e5;
}

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

.testimonial {
  padding: 26px;
}

.testimonial p {
  font-size: 17px;
  margin-bottom: 20px;
}

.testimonial strong {
  display: block;
}

.testimonial span {
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  color: var(--white);
  background: linear-gradient(120deg, #07090f, #0d2a56 52%, #141720);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(217, 4, 41, .16), rgba(255, 255, 255, .05));
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.final-cta h2 {
  margin: 12px 0 0;
  font-size: 42px;
  line-height: 1.12;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 28px;
  align-items: start;
}

.contact-panel,
.contact-info {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(16, 21, 34, .1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  font-size: 34px;
  line-height: 1.16;
  margin: 8px 0 22px;
}

.contact-form textarea {
  resize: vertical;
}

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

.contact-info li {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info strong {
  color: var(--black);
}

.contact-info span,
.contact-info a {
  color: var(--muted);
}

.map-box {
  min-height: 190px;
  display: grid;
  place-items: center;
  margin-top: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), var(--blue-dark));
  border-radius: 8px;
  font-weight: 900;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.legal-body {
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(16, 21, 34, .1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-intro {
  font-size: 18px;
  color: #4c5568;
}

.legal-date {
  display: inline-flex;
  padding: 6px 10px;
  margin-bottom: 16px;
  color: var(--blue-dark);
  background: rgba(217, 4, 41, .12);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.legal-body section {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-body h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.legal-body p {
  color: var(--muted);
}

.legal-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--white);
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--white);
  background: var(--black);
  font-size: 14px;
}

.legal-table td {
  color: var(--muted);
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-note {
  margin-top: 20px;
  padding: 14px;
  color: #4c5568;
  background: var(--soft);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  font-size: 14px;
}

.article-side .text-link {
  display: block;
  margin-top: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes sliderProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes slideZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@keyframes copyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 1020px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 116px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    box-shadow: var(--shadow);
  }

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

  .main-nav > a,
  .nav-button {
    justify-content: flex-start;
    width: 100%;
  }

  .mega-panel {
    position: static;
    width: 100%;
    max-height: 56vh;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 18px;
    margin-top: 8px;
  }

  .has-mega:hover .mega-panel,
  .has-mega:focus-within .mega-panel {
    transform: none;
  }

  .mega-panel.is-open {
    display: block;
    transform: none;
  }

  .mega-grid,
  .repair-grid,
  .image-card-grid.all-services,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-grid,
  .detail-grid,
  .faq-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-slider,
  .hero-slide-inner {
    min-height: 690px;
  }

  .hero-slide-inner,
  .quick-book-grid,
  .workshop-story,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .slide-service-card {
    align-self: start;
    max-width: 520px;
    margin: -58px 0 70px;
  }

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

  .why-grid,
  .promo-grid,
  .home-campaigns .promo-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .nav-shell {
    min-height: 72px;
  }

  .main-nav {
    top: 110px;
  }

  .brand img {
    width: 184px;
  }

  .hero {
    min-height: 620px;
    background-position: 62% center;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-slide h1 {
    font-size: 38px;
  }

  .hero p,
  .hero-slide p,
  .page-hero p {
    font-size: 16px;
  }

  .hero-stats,
  .band-grid,
  .mega-grid,
  .repair-grid,
  .image-card-grid,
  .image-card-grid.all-services,
  .campaign-grid,
  .blog-grid,
  .steps,
    .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider,
  .hero-slide-inner {
    min-height: 700px;
  }

  .hero-slide-inner {
    padding: 64px 0 96px;
  }

  .slide-service-card {
    display: none;
  }

  .slider-arrow {
    top: auto;
    bottom: 84px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .slider-prev {
    left: 16px;
  }

  .slider-next {
    right: 16px;
  }

  .slider-ui {
    align-items: flex-start;
    flex-direction: column;
    bottom: 24px;
  }

  .slider-progress {
    width: min(260px, calc(100vw - 32px));
  }

  .booking-panel,
  .why-grid,
  .promo-grid,
  .home-campaigns .promo-grid,
  .testimonial-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .final-cta h2,
  .story-copy h2 {
    font-size: 32px;
  }

  .split-head,
  .footer-cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 58px 0;
  }

  .section-head h2,
  .split-head h2,
  .process-copy h2,
  .faq-layout h2,
  .detail-main h2,
  .note-panel h2 {
    font-size: 28px;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero h1 {
    font-size: 36px;
  }
}
