:root {
  --ink: #111827;
  --muted: #64748b;
  --soft: #f2f7fb;
  --line: #d9e2ea;
  --paper: #f4f8fb;
  --white: #ffffff;
  --navy: #08345a;
  --blue: #0f75bc;
  --blue-dark: #075184;
  --cyan: #15a8d8;
  --gold: #ffcc33;
  --red: #e02020;
  --shadow: 0 24px 64px rgba(15, 23, 42, 0.16);
  --shadow-soft: 0 16px 38px rgba(15, 23, 42, 0.09);
  --surface: rgba(255, 255, 255, 0.84);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbff 0%, var(--paper) 38%, #ffffff 100%);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 9px clamp(18px, 4vw, 64px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-top: 4px solid var(--red);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  overflow: hidden;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(8, 52, 90, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.22);
}

.brand-copy {
  display: none;
}

.brand-copy strong {
  font-size: 17px;
  line-height: 1.2;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 22px);
  margin-left: auto;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 9px 10px;
  color: var(--navy);
  border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 39px;
  padding: 9px 10px;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--red);
  background: rgba(224, 32, 32, 0.08);
}

.nav-dropdown-menu {
  position: fixed;
  top: 82px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 0;
  width: min(1180px, calc(100vw - 36px));
  max-height: calc(100vh - 112px);
  overflow: auto;
  padding: 0;
  color: var(--white);
  pointer-events: none;
  background: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 10px);
  transition: opacity 0.18s ease 0.16s, transform 0.18s ease 0.16s, visibility 0s linear 0.34s;
  visibility: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0);
  transition-delay: 0s;
  visibility: visible;
}

.nav-dropdown-menu div {
  display: grid;
  align-content: start;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-dropdown-menu div:first-child {
  border-left: 0;
}

.nav-dropdown-menu h3 {
  margin: 0;
  padding: 14px 16px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
  background: rgba(8, 52, 90, 0.56);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}

.nav-dropdown-menu a::before {
  content: "› ";
  color: var(--gold);
  font-weight: 800;
}

.nav-dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  display: none;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--red);
  background: rgba(224, 32, 32, 0.08);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-call {
  min-width: max-content;
  padding: 12px 18px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--red), #ff5a3d);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(224, 32, 32, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 8px;
}

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

.hero {
  position: relative;
  height: clamp(520px, 56vw, 760px);
  min-height: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  margin-top: 82px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.hero-image.is-changing {
  opacity: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 26, 46, 0.48) 0%, rgba(6, 26, 46, 0.22) 42%, rgba(6, 26, 46, 0) 100%),
    linear-gradient(0deg, rgba(6, 26, 46, 0.25) 0%, rgba(6, 26, 46, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, 92vw);
  align-self: end;
  padding: 0 0 clamp(36px, 5vw, 72px) clamp(18px, 6vw, 84px);
}

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

.hero .eyebrow,
.feature-band .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.7vw, 46px);
  line-height: 1.13;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  font: inherit;
  font-weight: 800;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #ff6a3d);
  box-shadow: 0 16px 34px rgba(232, 63, 54, 0.28);
}

.btn.secondary {
  color: var(--white);
  background: rgba(6, 26, 46, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(12px);
}

.btn.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(520px, 100%);
}

.hero-metrics span {
  min-width: 0;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(6, 26, 46, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  display: block;
  color: var(--white);
  font-size: 17px;
  line-height: 1.2;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 54px;
  z-index: 2;
  width: min(320px, calc(100% - 36px));
  padding: 22px;
  color: var(--white);
  background: rgba(6, 26, 46, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  padding-left: 18px;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.status-dot {
  position: absolute;
  top: 28px;
  left: 22px;
  width: 10px;
  height: 10px;
  background: #2ee59d;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(46, 229, 157, 0.16);
}

.quick-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(1180px, calc(100% - 36px));
  margin: 28px auto 0;
  overflow: visible;
  background: transparent;
  border-radius: 8px;
  box-shadow: none;
}

.quick-strip div {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.quick-strip div::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.quick-strip div:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  margin-bottom: 7px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--navy);
}

.quick-strip span {
  color: var(--muted);
  font-size: 14px;
}

.local-seo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 54px auto 0;
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.local-seo h2 {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 44px);
}

.local-seo p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
}

.section,
.feature-band,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 8vw, 104px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card,
.steps article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.service-card:hover,
.steps article:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 105, 218, 0.28);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red), var(--blue));
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(224, 32, 32, 0.18);
}

.issues-section {
  padding-top: 0;
}

.issues-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  align-items: stretch;
}

.issues-copy,
.issue-list {
  margin: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.issues-copy h3 {
  color: var(--navy);
  text-transform: uppercase;
}

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

.issue-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.issue-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
}

.issue-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "✓";
  color: var(--red);
  font-weight: 800;
}

.service-card p,
.steps p,
.feature-copy p,
.contact-copy p {
  color: var(--muted);
}

.repair-gallery-section {
  padding-top: 0;
}

.repair-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.repair-gallery figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.repair-gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.repair-gallery figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(6, 26, 46, 0.86));
}

.repair-gallery figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: var(--white);
  font-weight: 800;
}

.repair-gallery figure:hover img {
  transform: scale(1.05);
}

.product-section {
  padding-top: 0;
}

.product-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 22px;
  align-items: start;
}

.product-menu {
  position: sticky;
  top: 104px;
  display: grid;
  max-height: calc(100vh - 128px);
  overflow: auto;
  background: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.product-menu strong {
  padding: 18px 20px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.product-menu a {
  padding: 10px 18px 10px 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
}

.product-menu a:hover {
  padding-left: 32px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.menu-group {
  display: grid;
}

.menu-group h3 {
  margin: 0;
  padding: 13px 16px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
  background: rgba(8, 52, 90, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.menu-group a::before {
  content: "› ";
  color: var(--gold);
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: end;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.product-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 17, 30, 0.06) 0%, rgba(7, 17, 30, 0.72) 62%, rgba(7, 17, 30, 0.95) 100%),
    linear-gradient(90deg, rgba(15, 117, 188, 0.22), rgba(224, 32, 32, 0.08));
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
}

.product-card div {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.product-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  background: var(--gold);
  border-radius: 8px;
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.product-card p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.product-card a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--white);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.product-card.highlight {
  grid-column: span 2;
  min-height: 300px;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 7vw, 82px);
  align-items: center;
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 52, 90, 0.98), rgba(15, 117, 188, 0.92)),
    var(--navy);
}

.feature-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
}

.price-table {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-row {
  display: grid;
  grid-template-columns: 56px minmax(220px, 1.25fr) minmax(140px, 0.8fr) minmax(150px, 0.8fr) minmax(130px, 0.7fr);
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}

.price-row:not(.price-head):nth-child(odd) {
  background: #f9fcff;
}

.price-row:first-child {
  border-top: 0;
}

.price-row strong {
  color: var(--red);
}

.price-head {
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--red), var(--blue-dark));
}

.price-row span:nth-child(4),
.price-row span:last-child {
  color: var(--muted);
}

.price-head span:nth-child(4),
.price-head span:last-child {
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps article span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 30px;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-lines a,
.contact-lines span {
  padding: 15px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfdff;
  border: 1px solid #ccd9e3;
  border-radius: 8px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(9, 105, 218, 0.16);
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 700;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, #071827, #0a3556),
    #08243b;
  border-top: 5px solid var(--red);
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: clamp(28px, 5vw, 72px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 46px 0 38px;
}

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

.footer-column,
.footer-company {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column a,
.footer-company a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.18s ease;
}

.footer-column a::before {
  content: "› ";
  color: var(--gold);
}

.footer-column a:hover,
.footer-company a:hover {
  color: var(--white);
}

.footer-company strong {
  color: var(--gold);
  font-size: 18px;
}

.footer-company p {
  margin: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.footer-social a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  color: var(--white);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
  margin: 0;
}

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

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 14px;
}

.floating-actions a {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(14, 30, 36, 0.24);
  isolation: isolate;
}

.floating-actions a::before,
.floating-actions a::after {
  position: absolute;
  inset: -7px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  animation: contact-pulse 1.8s ease-out infinite;
}

.floating-actions a::after {
  animation-delay: 0.55s;
}

.float-call {
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  background: var(--red);
  animation: contact-shake 1.8s ease-in-out infinite;
}

.float-call::before,
.float-call::after {
  border: 1px solid rgba(224, 32, 32, 0.62);
  background: rgba(224, 32, 32, 0.18);
}

.float-call span {
  transform: translateY(-1px);
}

.float-zalo {
  padding: 8px;
  background: var(--white);
  animation: contact-bounce 2.4s ease-in-out infinite;
}

.float-zalo::before,
.float-zalo::after {
  border: 1px solid rgba(15, 117, 188, 0.62);
  background: rgba(15, 117, 188, 0.18);
}

.float-zalo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes contact-pulse {
  0% {
    opacity: 0.78;
    transform: scale(0.86);
  }

  70% {
    opacity: 0;
    transform: scale(1.38);
  }

  100% {
    opacity: 0;
    transform: scale(1.38);
  }
}

.thank-you-page {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 52, 90, 0.94), rgba(7, 81, 132, 0.9)),
    var(--navy);
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  text-align: center;
}

.thank-you h1 {
  font-size: clamp(42px, 8vw, 78px);
}

.thank-you p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.thank-you .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.service-page {
  background: #f6f9fd;
}

.service-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 10px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.92);
  border-top: 4px solid var(--red);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.service-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}

.service-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.service-topbar nav {
  display: flex;
  gap: 14px;
  margin-left: auto;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.service-topbar nav a {
  padding: 9px 10px;
  border-radius: 8px;
}

.service-topbar nav a:hover {
  color: var(--red);
  background: rgba(224, 32, 32, 0.08);
}

.service-call {
  min-width: max-content;
  padding: 11px 16px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--red), #ff5a3d);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(224, 32, 32, 0.2);
}

.service-hero-small,
.service-detail-small,
.service-related-small {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.service-hero-small {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(48px, 7vw, 86px) 0 42px;
}

.service-hero-small h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(38px, 5.2vw, 68px);
}

.service-hero-small p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.service-hero-small img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-detail-small {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
  padding: 28px 0 clamp(62px, 8vw, 96px);
}

.service-detail-small article,
.service-detail-small aside,
.service-related-small {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.service-detail-small article {
  padding: clamp(24px, 4vw, 38px);
}

.service-detail-small aside {
  position: sticky;
  top: 98px;
  padding: 24px;
}

.service-detail-small h2,
.service-related-small h2 {
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
}

.service-detail-small p {
  color: var(--muted);
  font-size: 16px;
}

.service-detail-small ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.service-detail-small li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
}

.service-detail-small li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--red);
  font-weight: 800;
}

.service-box {
  display: grid;
  gap: 8px;
  padding: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  border-radius: 8px;
}

.service-box span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.service-related-small {
  padding: 28px;
  margin-bottom: clamp(52px, 7vw, 82px);
}

.service-related-small div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-related-small a {
  padding: 10px 13px;
  color: var(--navy);
  font-weight: 800;
  background: #f3f8fc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-related-small a:hover {
  color: var(--red);
  background: var(--white);
}

@keyframes contact-shake {
  0%,
  100% {
    transform: rotate(0);
  }

  8%,
  20% {
    transform: rotate(-12deg);
  }

  14%,
  26% {
    transform: rotate(12deg);
  }

  32% {
    transform: rotate(0);
  }
}

@keyframes contact-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-4px);
  }

  34% {
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 78px;
  }

  .hero {
    height: clamp(440px, 62vw, 620px);
    margin-top: 78px;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: rgba(8, 23, 39, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 14px 12px;
    color: var(--white);
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 14px 12px;
    color: var(--white);
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition: max-height 0.22s ease;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    max-height: 0;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 760px;
    overflow: auto;
  }

  .nav-dropdown-menu div {
    border-left: 0;
  }

  .header-call {
    margin-left: auto;
  }

  .nav-toggle {
    display: block;
  }

  .quick-strip,
  .service-grid,
  .repair-gallery,
  .issues-layout,
  .product-layout,
  .steps,
  .feature-band,
  .contact-section,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .product-menu {
    position: static;
    max-height: none;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

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

  .feature-band,
  .contact-section {
    gap: 28px;
  }

  .feature-copy {
    grid-column: 1 / -1;
  }

  .hero-panel {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 10px;
    padding-inline: 14px;
    min-height: 72px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
    padding: 3px;
  }

  .brand-copy small {
    display: none;
  }

  .main-nav {
    top: 72px;
  }

  .header-call {
    display: none;
  }

  .hero {
    height: 72vh;
    min-height: 520px;
    margin-top: 72px;
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 17, 32, 0.6), rgba(4, 17, 32, 0.34)),
      linear-gradient(0deg, rgba(4, 17, 32, 0.32), rgba(4, 17, 32, 0.03));
  }

  .hero-content {
    width: 100%;
    padding: 0 18px 44px;
  }

  .hero-actions .btn {
    flex: 1 1 145px;
  }

  .quick-strip,
  .service-grid,
  .repair-gallery,
  .issues-layout,
  .product-layout,
  .product-grid,
  .steps,
  .feature-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card.highlight {
    grid-column: auto;
    min-height: 320px;
  }

  .quick-strip {
    width: min(100% - 32px, 1180px);
    margin-top: 24px;
    border-radius: 8px;
  }

  .quick-strip div {
    min-height: auto;
  }

  .local-seo {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1180px);
    margin-top: 34px;
  }

  .section,
  .feature-band,
  .contact-section {
    width: min(100% - 32px, 1180px);
    padding-block: 62px;
  }

  .feature-band {
    width: 100%;
    padding-inline: 18px;
  }

  .price-table {
    border-radius: 8px;
  }

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

  .price-row {
    padding: 16px;
  }

  .price-head {
    display: none;
  }

  .price-row span:first-child {
    width: max-content;
    padding: 4px 8px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    background: var(--blue-dark);
    border-radius: 8px;
  }

  .contact-form {
    padding: 22px;
  }

  .site-footer {
    padding-bottom: 78px;
  }

  .footer-inner {
    width: min(100% - 32px, 1180px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 36px 0 28px;
  }

  .footer-bottom {
    flex-direction: column;
    padding-inline: 16px;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 52px;
    height: 52px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-metrics span {
    padding: 10px 12px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }
}
