:root {
  --dark: #1e2024;
  --dark-alt: #1e2024;
  --accent: #2ccbd4;
  --accent-hover: #23b5be;
  --accent-glow: rgba(44, 203, 212, 0.2);
  --white: #ffffff;
  --off-white: #f7f8fa;
  --light-grey: #e5e7eb;
  --mid-grey: #9ca3af;
  --text-body: #4b5563;
  --text-heading: #111827;
  --text-light: #d1d5db;
  --font-heading: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --section-pad: 80px;
  --section-pad-mob: 50px;
  --section-pad-sm: 42px;
  --container-max: 1200px;
  --container-pad: 24px;
  --card-pad: 28px;
  --gap: 24px;
  --touch-target-min: 44px;
  --radius: 0;
  --radius-form: 8px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s;
  --t-normal: 0.35s;
  --t-slow: 0.6s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  scroll-padding-top: 77px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: clip;
}

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

/* Enforce sharp corners for every form surface and control. */
form input,
form textarea,
form select,
form button,
.form-card {
  border-radius: 0 !important;
}

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

svg {
  width: 100%;
  height: 100%;
}

svg path,
svg line,
svg polyline,
svg rect,
svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 10px 14px;
  z-index: 1000;
  transition: top var(--t-fast) var(--ease);
}

.skip-link:focus {
  top: 16px;
}

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

section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  color: var(--text-light);
  background: var(--dark);
}

.section-white {
  color: var(--text-body);
  background: var(--white);
}

.section-light {
  color: var(--text-body);
  background: var(--off-white);
}

.section-photo {
  position: relative;
}

.section-photo .bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.lazy-bg {
  background-color: #2b2e33;
}

.section-photo .bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.section-photo .container {
  position: relative;
  z-index: 2;
}

h1,
h2,
h3 {
  color: var(--text-heading);
  line-height: 1.15;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

h1 {
  font-family: var(--font-body);
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h2 {
  font-family: var(--font-body);
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h3 {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.section-heading.centered {
  text-align: center;
}

.section-heading h2,
.process .section-heading h2 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.kicker {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  margin-bottom: 20px;
  border-radius: 0;
}

.logos-kicker {
  text-align: center;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--accent);
  color: var(--white);
  padding: 0;
  border: 3px solid var(--accent);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  min-height: var(--touch-target-min);
  touch-action: manipulation;
  transition: background var(--t-normal) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-normal) var(--ease);
}

.btn-primary .btn-text {
  padding: 15px 26px;
  white-space: nowrap;
}

.btn-primary .btn-arrow {
  background: #090909;
  color: var(--white);
  min-width: 58px;
  height: 100%;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  transition: background var(--t-fast) var(--ease);
}

.btn-primary .btn-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t-fast) var(--ease-spring);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(44, 203, 212, 0.28);
}

.btn-primary:hover .btn-arrow svg {
  transform: translate(2px, -2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  color: var(--text-heading);
  border: 3px solid var(--text-heading);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  min-height: var(--touch-target-min);
  touch-action: manipulation;
  transition: background var(--t-normal) var(--ease), border-color var(--t-normal) var(--ease), color var(--t-normal) var(--ease), transform var(--t-fast) var(--ease);
}

.btn-secondary .btn-text {
  padding: 15px 24px;
  white-space: nowrap;
}

.btn-secondary .btn-arrow {
  padding: 15px 16px;
  background: var(--text-heading);
  color: var(--white);
  min-width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary .btn-arrow svg {
  width: 16px;
  height: 16px;
}

.btn-secondary.dark {
  background: var(--white);
  color: var(--text-heading);
  border-color: var(--white);
}

.btn-secondary.dark .btn-arrow {
  background: #090909;
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--text-heading);
  border-color: var(--text-heading);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary:hover .btn-arrow {
  background: var(--accent);
  color: var(--white);
}

.btn-secondary.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.84);
}

.btn-secondary.btn-ghost .btn-arrow {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary.btn-ghost:hover,
.btn-secondary.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  color: var(--white);
}

.btn-secondary.btn-ghost:hover .btn-arrow,
.btn-secondary.btn-ghost:focus-visible .btn-arrow {
  background: var(--accent);
  color: var(--white);
}

.hero-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: transparent;
  color: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  min-height: var(--touch-target-min);
  touch-action: manipulation;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: background var(--t-normal) var(--ease), border-color var(--t-normal) var(--ease), transform var(--t-fast) var(--ease);
}

.hero-call-btn .btn-text {
  padding: 15px 24px;
  white-space: nowrap;
}

.hero-call-btn .btn-arrow {
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  min-width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-call-btn .btn-arrow svg {
  width: 16px;
  height: 16px;
}

.hero-call-btn .btn-arrow svg path {
  fill: currentColor;
  stroke: none;
}

.hero-call-btn:hover,
.hero-call-btn:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.hero-call-btn:hover .btn-arrow,
.hero-call-btn:focus-visible .btn-arrow {
  background: var(--accent);
}

.hero-quote-btn {
  display: none;
}

.btn-block {
  width: 100%;
  justify-content: space-between;
}

.centered {
  text-align: center;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  padding: 15px 0;
  background: rgba(30, 32, 36, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--t-normal), box-shadow var(--t-normal);
}

.header.scrolled {
  background: rgba(30, 32, 36, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  width: 168px;
  height: auto;
}

.header-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  position: relative;
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease);
}

.header-phone::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform var(--t-normal) var(--ease);
}

.header-phone:hover,
.header-phone:focus-visible {
  color: var(--accent);
}

.header-phone:hover::after,
.header-phone:focus-visible::after {
  transform: scaleX(1);
}

.header-phone-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.header-phone-icon svg path {
  fill: currentColor;
  stroke: none;
}

.header-cta .btn-text {
  padding: 10px 19px;
}

.header-cta .btn-text-mobile {
  display: none;
}

.header-cta .btn-arrow {
  background: rgba(0, 0, 0, 0.16);
}

.header-cta:hover .btn-arrow,
.header-cta:focus-visible .btn-arrow {
  background: rgba(0, 0, 0, 0.25);
}

.hero {
  min-height: 80vh;
  padding: 90px 0 28px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(30, 32, 36, 0.92), rgba(30, 32, 36, 0.82));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  width: 100%;
}

.hero-text {
  max-width: 680px;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.hero-subheadline {
  font-size: clamp(16px, 1.35vw, 20px);
  color: var(--text-light);
  margin-top: 14px;
  max-width: 58ch;
}

.hero-bullets {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 8px;
  color: var(--white);
}

.hero-bullet-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent);
}

.hero-bullet-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bullet {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: flex-start;
  column-gap: 10px;
}

.hero-bullet-copy {
  display: block;
  line-height: 1.45;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.hero-trust-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  padding: 5px 10px;
  white-space: nowrap;
}

.hero-trust-g {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-trust-stars {
  color: #f4b400;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero-trust-score {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.hero-trust-bar > img {
  height: 36px;
  width: auto;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 8px;
}

.hero-note {
  margin-top: 12px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.55;
  max-width: 62ch;
}

.hero-phone {
  margin-top: 16px;
  color: var(--text-light);
}

.hero-phone a {
  color: var(--white);
  font-weight: 600;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
}

.form-card {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 0;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  transition: border-color var(--t-normal) var(--ease), box-shadow var(--t-normal) var(--ease);
}

.form-card.form-card-highlight {
  border-color: var(--accent);
  box-shadow:
    0 0 0 4px rgba(44, 203, 212, 0.33),
    0 18px 56px rgba(0, 0, 0, 0.3);
  animation: formCardHighlight 1.4s var(--ease) 1;
}

@keyframes formCardHighlight {
  0% {
    box-shadow:
      0 0 0 0 rgba(44, 203, 212, 0.46),
      0 16px 48px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(44, 203, 212, 0),
      0 20px 58px rgba(0, 0, 0, 0.3);
  }
  100% {
    box-shadow:
      0 0 0 4px rgba(44, 203, 212, 0.33),
      0 18px 56px rgba(0, 0, 0, 0.3);
  }
}

.hero-form-shell {
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}

#form {
  scroll-margin-top: 88px;
}

.form-heading {
  font-family: var(--font-body);
  font-size: clamp(24px, 3.2vw, 32px);
  color: var(--text-heading);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-dark .form-heading {
  color: var(--text-heading);
}

.form-subheading {
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 8px;
}

.form-field {
  margin-bottom: 12px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--light-grey);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--off-white);
  color: var(--text-heading);
  min-height: 48px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6b7280;
  transition: opacity var(--t-fast) var(--ease);
}

.form-field input:focus::placeholder,
.form-field textarea:focus::placeholder {
  opacity: 0;
}

.form-field textarea {
  resize: none;
  min-height: 56px;
  max-height: 72px;
  line-height: 1.35;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-field input.error,
.form-field textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error-summary {
  min-height: 0;
  margin: 6px 0 0;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 600;
}

.form-rating {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid #d7dce3;
}

.form-rating-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.form-rating-copy {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-rating-stars {
  margin: 0;
  color: #f4b400;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1;
}

.form-rating-text {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.bot-field {
  display: none;
}

.client-logos {
  padding: 28px 0 44px;
}

.logo-grid {
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  padding: 24px 0;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}

.logo-row:last-child {
  margin-bottom: 0;
}

.logo-row img {
  max-height: 175px;
  height: 175px;
  width: auto;
  filter: grayscale(1) opacity(0.72);
  transition: filter var(--t-normal) var(--ease);
}

.logo-row img:hover {
  filter: grayscale(0) opacity(1);
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 56px;
  height: 100%;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-carousel-track {
  display: flex;
  align-items: center;
  gap: 46px;
  width: max-content;
  padding: 22px 0;
  animation: logoCarouselScroll 32s linear infinite;
}

.logo-carousel-item {
  max-height: 138px;
  width: auto;
  filter: grayscale(1) opacity(0.72);
  transition: filter var(--t-normal) var(--ease);
  flex-shrink: 0;
}

.logo-carousel-item:hover {
  filter: grayscale(0) opacity(1);
}

@keyframes logoCarouselScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .logo-carousel::before,
  .logo-carousel::after {
    width: 32px;
  }

  .logo-carousel-track {
    gap: 28px;
    padding: 18px 0;
    animation-duration: 26s;
  }

  .logo-carousel-item {
    max-height: 90px;
  }
}

.services {
  background: var(--dark);
}

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

.services-intro {
  margin: 14px auto 0;
  max-width: 62ch;
  color: var(--text-light);
}

.services-experience {
  margin: 10px auto 0;
  max-width: 68ch;
  color: #e5e7eb;
  font-size: 15px;
  line-height: 1.65;
}

.services-alert {
  margin: 10px auto 0;
  max-width: 64ch;
  color: var(--accent);
  font-size: 14px;
  line-height: 1.6;
}

.service-card {
  position: relative;
  min-height: clamp(300px, 34vw, 380px);
  padding: clamp(24px, 2.6vw, 34px) var(--card-pad);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--t-normal) var(--ease), box-shadow var(--t-normal) var(--ease);
}

.service-card .card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow) var(--ease);
}

.service-card .card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 32, 36, 0.92) 30%, rgba(30, 32, 36, 0.5) 100%);
}

.service-card h3,
.service-card p,
.service-card .service-card-cta {
  position: relative;
  z-index: 2;
}

.service-card h3 {
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.service-card .service-card-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (any-pointer: coarse) {
  .service-card .service-card-cta {
    min-height: 48px;
  }
}

.service-card .service-card-cta:hover,
.service-card .service-card-cta:focus-visible {
  color: var(--white);
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.service-card:focus-within {
  border-color: var(--accent);
}

.service-card:hover .card-bg {
  transform: scale(1.05);
}

.services-link-wrap {
  margin-top: 28px;
  text-align: center;
}

.services-link {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
}

.services-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast) var(--ease);
}

.services-link:hover::after,
.services-link:focus-visible::after {
  transform: scaleX(1);
}

.why-alu-subtitle {
  margin: 14px auto 0;
  max-width: 64ch;
}

.completed-jobs-intro {
  margin: 12px auto 20px;
  max-width: 58ch;
  text-align: center;
}

.completed-jobs-note {
  margin-top: 6px;
  color: #5b6472;
  font-size: 14px;
  line-height: 1.55;
}

.completed-jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.manufacturer-logos-grid {
  grid-template-columns: repeat(6, 1fr);
}

.manufacturer-logos-grid .manufacturer-logo-card {
  grid-column: span 2;
}

.manufacturer-logos-grid .manufacturer-logo-card:nth-child(4) {
  grid-column: span 2;
}

.manufacturer-logo-card {
  padding: 22px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.completed-job-card.manufacturer-logo-card img {
  width: min(220px, 100%);
  height: 90px;
  aspect-ratio: auto;
  object-fit: contain;
}

.completed-job-card.manufacturer-logo-card:hover img,
.completed-job-card.manufacturer-logo-card:focus-within img {
  transform: none;
}

.manufacturer-logo-name {
  margin-top: 10px;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.completed-job-card {
  background: var(--white);
  border: 2px solid #d8dfeb;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
  overflow: hidden;
  transition: border-color var(--t-normal) var(--ease), box-shadow var(--t-normal) var(--ease);
}

.completed-job-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--t-normal) var(--ease);
}

.completed-job-card:hover img,
.completed-job-card:focus-within img {
  transform: scale(1.03);
}

.completed-job-card:hover,
.completed-job-card:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(44, 203, 212, 0.32), 0 10px 28px rgba(17, 24, 39, 0.08);
}

.completed-job-caption {
  padding: 12px 14px 14px;
  border-top: 1px solid #dde3ec;
  background: #f8fafc;
}

.completed-job-title {
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
}

.completed-job-scope {
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
}

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

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

.trust-card {
  background: var(--white);
  border: 1px solid #d8dfeb;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-card-logo {
  width: 100%;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.trust-card-logo img {
  width: min(220px, 100%);
  height: auto;
}

.trust-card-logo-text {
  max-width: 220px;
  min-height: 68px;
  padding: 16px 18px;
  border: 1px solid #d5deea;
  background: linear-gradient(140deg, #f7fafd, #ecf2f8);
  color: #111827;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-card-copy {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.trust-card-verified {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-card-check {
  width: 20px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-card-check svg {
  width: 12px;
  height: 12px;
}

.process {
  background: var(--dark);
}

.process-overlay {
  background: linear-gradient(135deg, rgba(30, 32, 36, 0.95), rgba(30, 32, 36, 0.92));
}

.process-steps {
  position: relative;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.connecting-line {
  position: absolute;
  top: 25px;
  left: 16.66%;
  right: 16.66%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.process-step {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 34px 22px 24px;
  text-align: center;
}

.step-number {
  display: inline-block;
  color: var(--accent);
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 14px;
}

.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-light);
}

.section-cta {
  margin-top: 30px;
}

.testimonials {
  background: #f1f2f4;
}

.testimonials-carousel {
  margin: 0 auto;
  max-width: 1248px;
  overflow: hidden;
  padding: 24px 0 36px;
}

.testimonials-carousel-shell {
  margin: 30px auto 0;
  position: relative;
  max-width: 1248px;
  padding: 0;
}

.testimonials-track {
  display: flex;
  gap: 0;
  align-items: center;
  will-change: transform;
}

.testimonial-card {
  width: 100%;
  min-height: auto;
  background: var(--white);
  border: 1px solid #d9dde2;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  transform: scale(0.92);
  transform-origin: center center;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.72;
  z-index: 1;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: var(--touch-target-min);
  height: var(--touch-target-min);
  border-radius: 999px;
  border: 1px solid #cfd4db;
  background: rgba(255, 255, 255, 0.92);
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.testimonials-carousel-shell .swiper-button-prev,
.testimonials-carousel-shell .swiper-button-next {
  margin-top: 0;
}

.testimonials-carousel-shell .swiper-button-prev {
  left: 0;
  transform: translate(-60px, -50%);
}

.testimonials-carousel-shell .swiper-button-next {
  right: 0;
  transform: translate(60px, -50%);
}

.testimonials-carousel-shell .swiper-button-prev::after,
.testimonials-carousel-shell .swiper-button-next::after {
  display: none;
}

.testimonial-nav:hover,
.testimonial-nav:focus-visible {
  background: var(--white);
  color: #1f2937;
  outline: none;
}

.testimonials-carousel-shell .swiper-button-prev:hover,
.testimonials-carousel-shell .swiper-button-prev:focus-visible {
  transform: translate(-60px, calc(-50% - 1px));
}

.testimonials-carousel-shell .swiper-button-next:hover,
.testimonials-carousel-shell .swiper-button-next:focus-visible {
  transform: translate(60px, calc(-50% - 1px));
}

.testimonial-nav svg {
  width: 20px;
  height: 20px;
}

.testimonials-carousel .swiper-slide-active,
.testimonials-carousel .swiper-slide-duplicate-active {
  transform: scale(1.06);
  opacity: 1;
  z-index: 4;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: testimonial-center-pop 520ms ease;
}

.testimonials-carousel .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-duplicate-active) {
  transform: scale(0.92);
  opacity: 0.72;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@keyframes testimonial-center-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1.06);
  }
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-meta {
  min-width: 0;
}

.stars {
  color: #ffd700;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 16px;
  line-height: 1;
  margin: 0;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.rating-score {
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.testimonial-text {
  color: var(--text-body);
  margin: 0 0 20px;
  font-size: 19px;
  line-height: 1.7;
  flex: 1;
}

.review-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eef2f7;
  color: #1f2937;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  color: #1f2937;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
}

.testimonial-posted {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #d4d8de;
  padding-top: 14px;
}

.google-mark {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.testimonial-posted-text {
  color: #374151;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.rating-line {
  margin-top: 8px;
  text-align: center;
  color: #4b5563;
  font-weight: 500;
}

.faq {
  background: var(--dark);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  line-height: 1.35;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex: 0 0 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 20px;
  height: 2px;
  background: var(--accent);
  transition: transform var(--t-fast) var(--ease);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height var(--t-normal) var(--ease), opacity var(--t-fast) var(--ease), padding-bottom var(--t-fast) var(--ease);
}

.faq-answer p {
  color: var(--text-light);
  padding-right: 26px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 20px;
}

.faq-item.open .faq-icon::after {
  transform: rotate(0);
}

.final-cta {
  background: var(--dark-alt);
  padding: 104px 0;
}

.cta-overlay {
  background: linear-gradient(135deg, rgba(30, 32, 36, 0.9), rgba(30, 32, 36, 0.85));
}

.cta-body {
  max-width: 55ch;
  margin: 0 auto;
  color: var(--text-light);
}

.cta-buttons {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  border-top: 3px solid var(--accent);
  padding-top: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.2fr;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer h3 {
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 14px;
}

.footer address {
  font-style: normal;
  color: var(--text-light);
  margin-bottom: 10px;
}

.footer p,
.footer li {
  color: var(--text-light);
  font-size: 15px;
}

.footer-links,
.hours-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer a {
  transition: color var(--t-fast) var(--ease);
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--accent);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-target-min);
  height: var(--touch-target-min);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  transition: border-color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  border-color: var(--accent);
  background-color: rgba(84, 209, 179, 0.12);
  color: var(--accent);
}

.footer-social-wrap {
  margin-top: 12px;
}

.accreditation-grid {
  display: grid;
  gap: 10px;
}

.accreditation-grid img {
  width: 100%;
  max-width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  padding: 12px var(--container-pad) 18px;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
}

.thinkonline-link {
  position: relative;
  padding-bottom: 2px;
}

.thinkonline-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast) var(--ease);
}

.thinkonline-link:hover::after,
.thinkonline-link:focus-visible::after {
  transform: scaleX(1);
}

.thankyou-main {
  padding-top: 80px;
}

.thankyou-section {
  min-height: calc(100dvh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0;
}

.thankyou-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--light-grey);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  padding: 44px 36px;
  text-align: center;
}

.thankyou-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-icon svg {
  width: 40px;
  height: 40px;
}

.thankyou-card h1 {
  color: var(--text-heading);
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.thankyou-card p {
  margin-bottom: 8px;
}

.thankyou-phone {
  margin: 18px 0 22px;
  font-size: clamp(24px, 4.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.thankyou-phone a {
  color: var(--accent);
  font-weight: 700;
}

.thankyou-review {
  max-width: 340px;
  margin: 0 auto;
}

.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 499;
    padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    background: rgba(30, 32, 36, 0.97);
    backdrop-filter: blur(8px);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s var(--ease);
    pointer-events: none;
  }

  .sticky-cta.visible {
    transform: translateY(0);
    pointer-events: auto;
  }

  .sticky-cta[aria-hidden="true"] {
    transform: translateY(100%);
    pointer-events: none;
  }

  .sticky-cta-inner {
    max-width: var(--container-max);
    margin: 0 auto;
  }

  .sticky-cta .btn-block {
    min-height: 50px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}

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

.reveal-stagger:nth-child(1) {
  transition-delay: 0ms;
}

.reveal-stagger:nth-child(2) {
  transition-delay: 100ms;
}

.reveal-stagger:nth-child(3) {
  transition-delay: 200ms;
}

.reveal-stagger:nth-child(4) {
  transition-delay: 300ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

@media (hover: none) and (pointer: coarse) {
  .service-card:hover,
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
    box-shadow: none;
  }

  .service-card:hover .card-bg {
    transform: none;
  }

  .logo-row img:hover {
    filter: grayscale(1) opacity(0.72);
  }
}

@media (max-width: 1160px) {
  .header {
    padding: 11px 0;
  }

  .header-phone {
    font-size: 13px;
  }

  .header-cta .btn-text {
    padding: 9px 16px;
  }

  .header-actions {
    gap: 10px;
  }

  .logo-link img {
    width: 152px;
  }
}

@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: auto;
    padding: 82px 0 30px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .completed-jobs-grid {
    gap: 14px;
  }

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

  .testimonials-carousel {
    padding: 22px 0 30px;
    max-width: none;
  }

  .process-step {
    padding: 30px 22px 22px;
  }

  .connecting-line {
    display: none;
  }

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

@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-sm);
    --container-pad: 18px;
  }

  section {
    padding: var(--section-pad-sm) 0;
  }

  .header {
    padding: 6px 0;
  }

  .header-phone {
    display: none;
  }

  .logo-link img {
    width: 101px;
  }

  .header-cta .btn-text {
    padding: 8px 11px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .header-cta .btn-text-desktop {
    display: none;
  }

  .header-cta .btn-text-mobile {
    display: inline-block;
  }

  .header-cta .btn-arrow {
    min-width: 35px;
    padding: 8px;
  }

  .header-actions {
    gap: 6px;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 72px 0 32px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero .bg-image {
    background-image: url("../img/curtainwallinghero.webp") !important;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(30, 32, 36, 0.80) 0%,
      rgba(30, 32, 36, 0.72) 50%,
      rgba(30, 32, 36, 0.85) 100%
    );
  }

  .hero .kicker {
    display: inline-block;
    font-size: 11px;
    padding: 7px 14px;
    margin-bottom: 12px;
  }

  .hero h1 {
    text-transform: none;
  }

  h1 {
    font-size: clamp(26px, 7.5vw, 36px);
  }

  h2 {
    font-size: clamp(24px, 7.2vw, 32px);
  }

  h3 {
    font-size: clamp(18px, 5.5vw, 22px);
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .kicker {
    margin-bottom: 14px;
    padding: 8px 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
    gap: 10px;
  }

  .hero-call-btn {
    width: 100%;
    justify-content: space-between;
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    font-size: 14px;
    min-height: 52px;
    box-shadow: 0 6px 24px rgba(44, 203, 212, 0.25);
  }

  .hero-call-btn .btn-text {
    padding: 14px 18px;
    flex: 1;
  }

  .hero-call-btn .btn-arrow {
    background: rgba(0, 0, 0, 0.18);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    min-width: 52px;
  }

  .hero-call-btn:hover,
  .hero-call-btn:focus-visible {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
  }

  .hero-call-btn:hover .btn-arrow,
  .hero-call-btn:focus-visible .btn-arrow {
    background: rgba(0, 0, 0, 0.25);
  }

  .hero-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    width: 100%;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    min-height: 52px;
    touch-action: manipulation;
    transition: background var(--t-normal) var(--ease), border-color var(--t-normal) var(--ease);
  }

  .hero-quote-btn .btn-text {
    padding: 14px 18px;
    white-space: nowrap;
  }

  .hero-quote-btn .btn-arrow {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-quote-btn .btn-arrow svg {
    width: 16px;
    height: 16px;
  }

  .hero-quote-btn:hover,
  .hero-quote-btn:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .hero-trust-bar {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-trust-bar > img {
    height: 34px;
    padding: 3px 6px;
  }

  .hero-trust-rating {
    padding: 4px 8px;
    gap: 5px;
  }

  .hero-trust-g {
    width: 16px;
    height: 16px;
  }

  .hero-trust-stars {
    font-size: 12px;
  }

  .hero-trust-score {
    font-size: 12px;
  }

  .btn-primary,
  .btn-secondary {
    min-height: 52px;
  }

  .btn-primary .btn-text,
  .btn-secondary .btn-text {
    padding: 13px 16px;
    letter-spacing: 0.1em;
  }

  .btn-primary .btn-arrow,
  .btn-secondary .btn-arrow {
    min-width: 50px;
    padding: 12px;
  }

  .hero-subheadline {
    font-size: 15px;
    line-height: 1.6;
    max-width: 46ch;
    margin-top: 16px;
  }

  .hero-bullets {
    gap: 12px;
    margin-top: 20px;
  }

  .hero-bullet-copy {
    font-size: 15px;
    line-height: 1.5;
  }

  .testimonials-carousel {
    padding: 14px 0 6px;
  }

  .testimonials-carousel-shell {
    max-width: none;
    padding: 0;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
      "carousel carousel"
      "prev next";
    justify-content: center;
    row-gap: 14px;
    column-gap: 12px;
  }

  .testimonials-carousel-shell .testimonials-carousel {
    grid-area: carousel;
    width: min(100%, calc(100vw - (var(--container-pad) * 2)));
  }

  .testimonials-carousel .swiper-wrapper {
    align-items: flex-start;
  }

  .testimonials-carousel .swiper-slide {
    height: auto;
  }

  .testimonials-carousel-shell .swiper-button-prev,
  .testimonials-carousel-shell .swiper-button-next {
    position: relative;
    inset: auto;
    transform: none;
    margin-top: 0;
  }

  .testimonials-carousel-shell .swiper-button-prev {
    grid-area: prev;
    justify-self: end;
  }

  .testimonials-carousel-shell .swiper-button-next {
    grid-area: next;
    justify-self: start;
  }

  .testimonials-carousel-shell .swiper-button-prev:hover,
  .testimonials-carousel-shell .swiper-button-prev:focus-visible,
  .testimonials-carousel-shell .swiper-button-next:hover,
  .testimonials-carousel-shell .swiper-button-next:focus-visible {
    transform: translateY(-1px);
  }

  .testimonials-track {
    gap: 0;
  }

  .testimonial-card {
    width: 100%;
    max-width: none;
    transform: scale(1);
    opacity: 1;
    padding: 24px 16px 20px;
  }

  .testimonials-carousel .swiper-slide-active,
  .testimonials-carousel .swiper-slide-duplicate-active,
  .testimonials-carousel .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-duplicate-active) {
    transform: scale(1);
    opacity: 1;
    animation: none;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 14px;
    flex: initial;
  }

  .testimonial-name {
    font-size: 19px;
  }

  .review-badge {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }

  .testimonial-rating {
    gap: 8px;
    margin-top: 4px;
  }

  .stars {
    font-size: 13px;
  }

  .rating-score {
    font-size: 12px;
  }

  .testimonial-posted-text {
    font-size: 13px;
  }

  .google-mark {
    width: 30px;
    height: 30px;
  }

  .hero-bullet {
    grid-template-columns: 18px 1fr;
    column-gap: 9px;
  }

  .hero-bullet-icon {
    width: 18px;
    height: 18px;
  }
  .client-logos {
    padding: 20px 0 30px;
  }

  .logo-grid {
    padding: 18px 0;
  }

  .logo-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 16px;
    margin-bottom: 18px;
  }

  .logo-row img {
    width: min(150px, calc(50vw - 32px));
    max-width: 100%;
    max-height: 82px;
    height: auto;
    object-fit: contain;
  }

  .form-card {
    padding: 22px 18px;
  }

  .form-rating {
    justify-content: flex-start;
  }

  .form-rating-copy {
    flex-wrap: wrap;
    row-gap: 2px;
  }

  .form-heading {
    font-size: 26px;
  }

  .form-subheading {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .form-field {
    margin-bottom: 14px;
  }

  .form-field textarea {
    min-height: 92px;
    max-height: 160px;
  }

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

  .service-card {
    min-height: 300px;
    padding: 24px 18px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 1.65;
  }

  .services-alert {
    margin-top: 8px;
    font-size: 13px;
  }

  .services-experience {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
  }

  .completed-jobs-intro {
    margin-bottom: 14px;
  }

  .completed-jobs-note {
    font-size: 13px;
  }

  .completed-jobs-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-left: calc(var(--container-pad) * -1);
    margin-right: calc(var(--container-pad) * -1);
    padding: 2px var(--container-pad) 10px;
    margin-bottom: 16px;
  }

  .manufacturer-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .manufacturer-logos-grid .manufacturer-logo-card {
    grid-column: auto;
  }

  .manufacturer-logos-grid .manufacturer-logo-card:nth-child(4) {
    grid-column: auto;
  }

  .manufacturer-logo-card {
    flex: initial;
    padding: 16px 12px 12px;
  }

  .manufacturer-logo-card img {
    height: 68px;
  }

  .manufacturer-logo-name {
    margin-top: 8px;
    font-size: 13px;
  }

  .completed-jobs-grid::-webkit-scrollbar {
    display: none;
  }

  .completed-job-card {
    flex: 0 0 min(82vw, 350px);
    scroll-snap-align: start;
  }

  .completed-job-caption {
    padding: 10px 12px 12px;
  }

  .completed-job-title {
    font-size: 13px;
  }

  .completed-job-scope {
    font-size: 12px;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-areas:
      "logo copy"
      "logo verified";
    align-items: center;
    column-gap: 12px;
    row-gap: 6px;
    padding: 14px 12px;
    text-align: left;
  }

  .trust-card-logo {
    grid-area: logo;
    min-height: auto;
    margin-bottom: 0;
    width: 86px;
  }

  .trust-card-copy {
    grid-area: copy;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .trust-card-verified {
    grid-area: verified;
    margin-top: 0;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .trust-card-check {
    width: 18px;
    height: 18px;
  }

  .trust-card-check svg {
    width: 10px;
    height: 10px;
  }

  .process-steps {
    margin-top: 18px;
    gap: 14px;
  }

  .process-step {
    text-align: left;
    padding: 24px 16px 18px;
  }

  .step-number {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .process-step h3 {
    margin-bottom: 8px;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px 0;
    min-height: 48px;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .faq-item.open .faq-answer {
    padding-bottom: 16px;
  }

  .form-field input,
  .form-field textarea {
    min-height: 48px;
  }

  .final-cta {
    padding: 58px 0;
  }

  .footer {
    padding-bottom: 72px;
  }

  .cta-body {
    line-height: 1.6;
  }

  .cta-buttons {
    margin-top: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: space-between;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    padding: 12px var(--container-pad) 8px;
    flex-direction: column;
    gap: 8px;
  }

  .thankyou-main {
    padding-top: 48px;
  }

  .thankyou-section {
    min-height: calc(100dvh - 48px);
  }

  .thankyou-card {
    padding: 34px 20px;
  }
}

@media (max-width: 480px) {
  :root {
    --container-pad: 16px;
  }

  .hero {
    height: auto;
    min-height: auto;
    padding: 64px 0 26px;
  }

  .hero .bg-image {
    background-image: url("../img/curtainwallinghero.webp") !important;
  }

  .hero-subheadline {
    font-size: 14px;
    line-height: 1.55;
    margin-top: 14px;
  }

  .hero-bullets {
    gap: 10px;
    margin-top: 16px;
  }

  .hero-bullet-copy {
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-trust-bar {
    gap: 6px;
    margin-top: 14px;
  }

  .hero-trust-bar > img {
    height: 30px;
    padding: 2px 4px;
  }

  .hero-trust-rating {
    padding: 3px 6px;
    gap: 4px;
  }

  .hero-trust-stars {
    font-size: 11px;
  }

  .hero-trust-score {
    font-size: 11px;
  }

  .logos-kicker {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .logo-row {
    gap: 12px 10px;
    margin-bottom: 16px;
  }

  .logo-row img {
    width: calc(50vw - 28px);
    max-width: 138px;
    max-height: 72px;
  }

  .completed-jobs-grid {
    gap: 10px;
    padding-bottom: 8px;
  }

  .completed-job-card {
    flex-basis: min(84vw, 300px);
  }

  .trust-card {
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 10px;
    padding: 12px 10px;
  }

  .trust-card-logo {
    width: 72px;
  }

  .trust-card-copy {
    -webkit-line-clamp: 2;
    font-size: 13px;
    line-height: 1.4;
  }

  .thankyou-phone {
    font-size: clamp(20px, 7vw, 28px);
  }

  .header-cta .btn-text {
    padding: 7px 8px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .header-cta .btn-arrow {
    min-width: 34px;
    padding: 7px;
  }

  .btn-primary .btn-text,
  .btn-secondary .btn-text {
    padding: 12px 14px;
    font-size: 13px;
  }

  .btn-primary .btn-arrow,
  .btn-secondary .btn-arrow {
    min-width: var(--touch-target-min);
  }

  .form-card {
    padding: 20px 14px;
  }

  .form-heading {
    font-size: 24px;
  }

  .testimonial-head {
    gap: 10px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .process-step p {
    font-size: 15px;
    line-height: 1.55;
  }

  .completed-job-card img {
    aspect-ratio: 5 / 4;
  }
}

@media (max-height: 900px) and (min-width: 1025px) {
  .hero {
    min-height: 72vh;
    padding: 104px 0 14px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-subheadline {
    margin-top: 12px;
  }

  .hero-bullets {
    margin-top: 14px;
    gap: 6px;
  }

  .form-card {
    padding: 24px;
  }

  .form-heading {
    font-size: 26px;
  }

  .client-logos {
    padding-top: 20px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
