: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 {
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

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

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

.topbar-ticker {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.topbar-track {
  width: max-content;
  display: flex;
  animation: topbarMarquee 28s linear infinite;
  will-change: transform;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 40px;
  padding: 0 28px;
}

.topbar-group span {
  position: relative;
  white-space: nowrap;
}

.topbar-group span::after {
  content: "";
  position: absolute;
  right: -17px;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--white);
  border-radius: 50%;
  transform: translateY(-50%);
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header {
  position: relative;
  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: 118px;
  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,
.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,
.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,
.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transition: filter .25s ease, transform .25s ease;
}

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

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

.image-card span {
  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 {
  margin: 12px 0 8px;
  font-size: 21px;
  line-height: 1.24;
}

.image-card p,
.blog-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;
}

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

.seo-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-directory-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(16, 21, 34, .1);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16, 21, 34, .08);
}

.seo-directory-card h3 {
  margin-bottom: 14px;
  font-size: 20px;
}

.seo-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-link-list a,
.related-link-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--black);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.seo-link-list a:hover,
.related-link-grid a:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.seo-blog-card .post-meta {
  margin-bottom: 10px;
}

.blog-index-hero {
  padding: 78px 0 34px;
  background: var(--white);
  text-align: center;
}

.blog-index-hero-inner {
  max-width: 920px;
}

.blog-index-hero h1 {
  margin: 14px auto 18px;
  color: #07111f;
  font-size: 54px;
  line-height: 1.05;
}

.blog-index-hero p {
  max-width: 820px;
  margin: 0 auto;
  color: #657186;
  font-size: 18px;
}

.blog-listing-section {
  padding-top: 34px;
  background: linear-gradient(180deg, var(--white), #f5f6f8);
}

.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.blog-listing-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 21, 34, .1);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16, 21, 34, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.blog-listing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 4, 41, .28);
  box-shadow: 0 24px 54px rgba(16, 21, 34, .14);
}

.blog-listing-media {
  display: block;
  overflow: hidden;
}

.blog-listing-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
  transition: filter .25s ease, transform .25s ease;
}

.blog-listing-card:hover .blog-listing-media img {
  filter: saturate(1.18) contrast(1.04);
  transform: scale(1.04);
}

.blog-listing-body {
  padding: 24px;
}

.blog-listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.blog-listing-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  color: #6b7280;
  background: #f4f5f7;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
}

.blog-listing-category {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.blog-listing-card h2 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.22;
}

.blog-listing-card h2 a {
  color: #111827;
}

.blog-listing-card h2 a:hover {
  color: var(--blue);
}

.blog-listing-card p {
  min-height: 92px;
  color: #5f6b7d;
  font-size: 15px;
}

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

.blog-listing-link:hover {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.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;
}

.seo-article {
  background: var(--white);
}

.seo-post-hero {
  padding: 54px 0 22px;
}

.seo-post-wrap {
  max-width: 920px;
}

.breadcrumb-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 900;
}

.seo-post-hero h1 {
  max-width: 860px;
  margin: 0 0 16px;
  color: #071a3d;
  font-size: 46px;
  line-height: 1.05;
}

.seo-hero-image {
  position: relative;
  max-width: 820px;
  margin: 28px 0 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.seo-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
}

.seo-hero-image figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 22px 18px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .76));
  font-size: 22px;
  font-weight: 900;
}

.seo-content {
  padding: 18px 0 72px;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px) 280px;
  gap: 42px;
  align-items: start;
}

.seo-body p {
  color: #334155;
  font-size: 17px;
}

.seo-body h2 {
  margin: 44px 0 12px;
  color: #071a3d;
  font-size: 30px;
  line-height: 1.14;
}

.seo-body a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-faq {
  margin-top: 46px;
}

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

.seo-faq summary {
  cursor: pointer;
  color: #071a3d;
  font-weight: 900;
}

.seo-faq summary::marker {
  color: var(--blue);
}

.seo-faq p {
  margin: 12px 0 0;
}

.seo-cta {
  margin: 46px 0 34px;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(135deg, #0b1c42, #2056d6);
  border-radius: 8px;
  text-align: center;
}

.seo-cta h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 28px;
}

.seo-cta p {
  color: #dce5f2;
}

.seo-cta .hero-actions {
  justify-content: center;
}

.related-pages {
  margin-top: 36px;
}

.related-pages h2 {
  margin-bottom: 14px;
}

.related-intro {
  max-width: 760px;
  margin: -4px 0 16px;
  color: var(--muted);
}

.related-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-sidebar {
  position: sticky;
  top: 144px;
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-sidebar h3 {
  margin-bottom: 12px;
}

.seo-sidebar a {
  display: block;
  padding: 10px 0;
  color: #334155;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.seo-sidebar a:last-child {
  border-bottom: 0;
}

.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-seo-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 42px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-seo-group h3 {
  margin: 0 0 12px;
  font-size: 17px;
}

.footer-keyword-links {
  color: #6f7b90;
  line-height: 1.9;
}

.footer-keyword-links a {
  color: #aeb8c8;
  font-weight: 800;
}

.footer-keyword-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 3px;
}

.footer-link-separator {
  display: inline-block;
  margin: 0 7px;
  color: rgba(255, 255, 255, .28);
}

.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: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border-radius: 6px;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.social-row a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.social-row svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.social-row .youtube-play {
  fill: #090d15;
}

.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;
}

.footer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 0 15px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  box-shadow: inset 0 -1px rgba(255, 255, 255, .06);
  color: #76849a;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.footer-credit a {
  color: #b6c0d1;
  font-weight: 900;
}

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

.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: saturate(1.12) contrast(1.03) brightness(.92);
  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, .72), rgba(0, 0, 0, .42) 48%, rgba(0, 0, 0, .18)),
    linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .38));
}

.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;
}

.service-areas-section {
  background: var(--white);
}

.service-areas-head {
  max-width: 980px;
  margin: 0 auto 46px;
  text-align: center;
}

.service-areas-head .eyebrow {
  justify-content: center;
  color: var(--blue);
}

.service-areas-head .eyebrow::before {
  display: none;
}

.service-areas-head h2 {
  margin: 12px 0 18px;
  color: #07111f;
  font-size: 50px;
  line-height: 1.08;
}

.service-areas-head p {
  max-width: 820px;
  margin: 0 auto;
  color: #6f7a8d;
  font-size: 19px;
}

.service-areas-panel {
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(16, 21, 34, .12);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(16, 21, 34, .08);
}

.service-area-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.area-tab {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: #17304f;
  background: var(--white);
  border: 1px solid rgba(16, 21, 34, .14);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(16, 21, 34, .05);
  cursor: pointer;
  font-weight: 900;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.area-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 4, 41, .34);
}

.area-tab.is-active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 14px 30px rgba(217, 4, 41, .24);
}

.area-tab-mark,
.area-pin {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
}

.area-tab-mark {
  border-radius: 6px;
}

.area-tab-mark::before,
.area-tab-mark::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.area-tab-mark::before {
  left: 4px;
  right: 4px;
  top: 5px;
  height: 2px;
}

.area-tab-mark::after {
  left: 4px;
  right: 4px;
  bottom: 5px;
  height: 2px;
}

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

.service-area-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: #17304f;
  background: var(--white);
  border: 1px solid rgba(16, 21, 34, .12);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 21, 34, .05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.service-area-card:hover {
  color: var(--blue);
  transform: translateY(-3px);
  border-color: rgba(217, 4, 41, .32);
  box-shadow: 0 16px 34px rgba(16, 21, 34, .1);
}

.area-pin {
  width: 20px;
  height: 20px;
  color: var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.area-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.service-area-card strong {
  display: block;
  min-width: 0;
  font-size: 18px;
  line-height: 1.18;
}

.service-area-note {
  margin: 34px 0 0;
  color: #6f7a8d;
  font-size: 20px;
  font-weight: 900;
}

.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,
.booking-panel textarea,
.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,
.booking-panel textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(0, 103, 216, .18);
  border-color: var(--blue);
}

.booking-panel textarea {
  resize: vertical;
}

.booking-panel .field-message {
  grid-column: span 3;
}

.booking-panel button[type="submit"] {
  align-self: end;
  min-height: 46px;
}

.marquee-band {
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track {
  width: max-content;
  display: flex;
  animation: marqueeRight 26s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  gap: 34px;
  padding: 18px 34px 18px max(16px, calc((100vw - 1180px) / 2 + 16px));
}

.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,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-card,
.testimonial {
  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,
.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;
}

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

.testimonials-section {
  overflow: hidden;
}

.testimonial-marquee {
  width: 100%;
  margin-top: 28px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.testimonial-track {
  width: max-content;
  display: flex;
  animation: testimonialRight 48s linear infinite;
  will-change: transform;
}

.testimonial-set {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.testimonial {
  width: min(360px, calc(100vw - 48px));
  flex: 0 0 min(360px, calc(100vw - 48px));
  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;
}

.home-blog-showcase {
  padding: 92px 0 104px;
  background: linear-gradient(180deg, var(--white), #f4f5f7);
}

.home-blog-head {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.home-blog-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.home-blog-eyebrow::before,
.home-blog-eyebrow::after {
  content: "";
  width: 48px;
  height: 3px;
  background: var(--blue);
}

.home-blog-head h2 {
  margin: 12px 0 0;
  color: #07111f;
  font-size: 56px;
  line-height: 1.04;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.home-blog-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 21, 34, .1);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 21, 34, .1);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home-blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 4, 41, .28);
  box-shadow: 0 26px 56px rgba(16, 21, 34, .16);
}

.home-blog-media {
  position: relative;
  display: block;
  overflow: hidden;
}

.home-blog-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transition: transform .3s ease, filter .3s ease;
}

.home-blog-card:hover .home-blog-media img {
  filter: saturate(1.16) contrast(1.04);
  transform: scale(1.04);
}

.home-blog-date {
  position: absolute;
  left: 24px;
  bottom: 0;
  min-width: 62px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px 8px 0 0;
  font-size: 26px;
  font-weight: 900;
}

.home-blog-body {
  padding: 34px 24px 26px;
}

.home-blog-category {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-blog-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.25;
}

.home-blog-card h3 a {
  color: #17304f;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.home-blog-card p {
  min-height: 84px;
  color: #657186;
  font-size: 16px;
}

.home-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 7px;
  color: #0e293f;
  border-bottom: 2px solid var(--blue);
  font-weight: 900;
}

.home-blog-link:hover {
  color: var(--blue);
}

.home-blog-more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.home-faq-section {
  background: var(--white);
}

.home-faq-head {
  max-width: 960px;
  margin: 0 auto 36px;
  text-align: center;
}

.home-faq-head h2 {
  max-width: 880px;
  margin: 12px auto 16px;
  color: #17304f;
  font-size: 52px;
  line-height: 1.08;
}

.home-faq-head p {
  max-width: 760px;
  margin: 0 auto;
  color: #657186;
  font-size: 17px;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.home-faq-item {
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(16, 21, 34, .14);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 21, 34, .06);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.home-faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 4, 41, .28);
  box-shadow: 0 20px 42px rgba(16, 21, 34, .1);
}

.home-faq-item summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: #17304f;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary i {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.home-faq-item[open] {
  border-color: rgba(217, 4, 41, .24);
}

.home-faq-item[open] summary i {
  transform: translateY(5px) rotate(225deg);
}

.home-faq-item p {
  margin: -4px 24px 24px;
  color: #657186;
  font-size: 16px;
  line-height: 1.72;
}

.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;
  align-content: center;
  justify-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), var(--blue-dark));
  border-radius: 8px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.map-box:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(16, 21, 34, .18);
}

.map-box span {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-box strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1.15;
}

.map-box small {
  max-width: 320px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.5;
}

.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);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-action {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(217, 4, 41, .22);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.floating-action svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: translateY(-3px);
  background: var(--black);
  box-shadow: 0 18px 34px rgba(7, 7, 7, .24);
}

.floating-action:focus-visible {
  outline: 3px solid rgba(217, 4, 41, .26);
  outline-offset: 4px;
}

@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 topbarMarquee {
  from {
    transform: translateX(0);
  }

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

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes testimonialRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(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: 118px;
    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,
  .seo-directory-grid,
  .footer-seo-links,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .blog-index-hero h1 {
    font-size: 44px;
  }

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

  .seo-sidebar {
    position: static;
  }

  .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));
  }

  .booking-panel .field-message,
  .booking-panel button[type="submit"] {
    grid-column: span 2;
  }

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

  .service-areas-head h2 {
    font-size: 40px;
  }

  .home-blog-head h2 {
    font-size: 46px;
  }

  .home-faq-head h2 {
    font-size: 42px;
  }
}

@media (max-width: 720px) {
  .floating-actions {
    right: 12px;
    bottom: 14px;
    gap: 8px;
  }

  .floating-action {
    width: 48px;
    height: 48px;
    border-radius: 11px;
  }

  .floating-action svg {
    width: 25px;
    height: 25px;
  }

  .topbar-inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .topbar-group {
    min-height: 36px;
  }

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

  .main-nav {
    top: 112px;
  }

  .brand img {
    width: 184px;
  }

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

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

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

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

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

  .service-areas-head h2 {
    font-size: 31px;
  }

  .service-areas-head p {
    font-size: 16px;
  }

  .home-blog-showcase {
    padding: 66px 0 72px;
  }

  .home-blog-head h2 {
    font-size: 38px;
  }

  .home-faq-head h2 {
    font-size: 34px;
  }

  .home-faq-head p {
    font-size: 16px;
  }

  .home-blog-eyebrow {
    gap: 10px;
    letter-spacing: .12em;
  }

  .home-blog-eyebrow::before,
  .home-blog-eyebrow::after {
    width: 30px;
  }

  .service-areas-panel {
    padding: 18px;
  }

  .service-area-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .area-tab {
    width: 100%;
  }

  .hero-stats,
  .band-grid,
  .mega-grid,
  .repair-grid,
  .image-card-grid,
  .image-card-grid.all-services,
  .blog-grid,
  .blog-listing-grid,
  .seo-directory-grid,
  .footer-seo-links,
  .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,
  .testimonial-grid,
  .service-area-grid,
  .home-blog-grid,
  .home-faq-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel .field-message,
  .booking-panel button[type="submit"] {
    grid-column: auto;
  }

  .home-blog-card p {
    min-height: 0;
  }

  .home-faq-item summary {
    min-height: 68px;
    padding: 18px;
    font-size: 16px;
  }

  .home-faq-item p {
    margin: -2px 18px 20px;
  }

  .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;
  }

  .seo-post-hero {
    padding-top: 38px;
  }

  .blog-index-hero {
    padding: 52px 0 20px;
  }

  .blog-index-hero h1 {
    font-size: 34px;
  }

  .blog-index-hero p {
    font-size: 16px;
  }

  .blog-listing-card p {
    min-height: 0;
  }

  .seo-body h2 {
    font-size: 25px;
  }

  .seo-hero-image figcaption {
    font-size: 18px;
  }
}
