:root {
  --bg: #f3f5f8;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --text: #141625;
  --muted: #5e637a;
  --brand: #33408a;
  --brand-dark: #1f2a63;
  --accent: #7ea51f;
  --accent-soft: rgba(126, 165, 31, 0.14);
  --line: rgba(31, 42, 99, 0.12);
  --shadow: 0 18px 50px rgba(31, 35, 79, 0.1);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(126, 165, 31, 0.08), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(51, 64, 138, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.35;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: rgba(65, 56, 143, 0.18);
  top: -80px;
  right: -80px;
}

.orb-2 {
  width: 260px;
  height: 260px;
  background: rgba(143, 190, 37, 0.2);
  left: -90px;
  top: 35%;
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 42, 99, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 42, 99, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  opacity: 0.03;
}

.site-header,
.section {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

.site-header {
  width: 100%;
  max-width: none;
  position: sticky;
  top: 0;
  z-index: 50;
  margin-top: 0;
  padding: 0;
  border-bottom: 1px solid rgba(65, 56, 143, 0.1);
  background: rgba(251, 252, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(39, 42, 77, 0.06);
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.top-strip {
  background: linear-gradient(90deg, #1f2558 0%, #2a3171 45%, #1f2558 100%);
  color: rgba(255, 255, 255, 0.92);
}

.top-strip-inner {
  width: min(calc(100% - 48px), 1360px);
  min-height: 34px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 0;
  text-align: center;
  letter-spacing: 0.01em;
}

.top-strip-text {
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.top-strip-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.34);
}

.top-strip-contact {
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.site-header.is-scrolled {
  background: rgba(251, 252, 255, 0.94);
  box-shadow: 0 14px 32px rgba(39, 42, 77, 0.1);
}

.header-inner {
  width: min(calc(100% - 48px), 1360px);
  margin: 0 auto;
  min-height: 100px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  transition: min-height 0.25s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 86px;
}

.brand-logo {
  display: block;
  width: clamp(170px, 18vw, 230px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.9rem;
  color: var(--muted);
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
}

.nav-overlay {
  display: none;
}

.nav a {
  position: relative;
  padding: 10px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  color: var(--brand);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav a:hover::after,
.nav a.active::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav a.active,
.nav a[aria-current="page"] {
  color: var(--brand);
  font-weight: 700;
}

.nav-cta {
  justify-self: end;
  padding: 13px 20px;
  border-radius: 999px;
  color: white !important;
  background: linear-gradient(135deg, var(--brand), #5a4dc1);
  box-shadow: 0 10px 20px rgba(65, 56, 143, 0.2);
  white-space: nowrap;
}

.nav-cta-mobile {
  display: none;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  position: relative;
  width: 52px;
  height: 48px;
  padding: 0;
  font: inherit;
  background: var(--brand);
  color: transparent;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(65, 56, 143, 0.2);
  z-index: 60;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  transition:
    transform 0.2s ease,
    top 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.menu-toggle::before {
  top: calc(50% - 7px);
  box-shadow: 0 7px 0 #fff;
}

.menu-toggle::after {
  top: calc(50% + 5px);
}

.menu-toggle[aria-expanded="true"]::before {
  top: 50%;
  box-shadow: none;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.section {
  padding: 64px 0 0;
}

.section-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 24px 0;
}

.section-band-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 247, 252, 0.94)),
    radial-gradient(circle at top left, rgba(65, 56, 143, 0.04), transparent 36%);
}

.section-band-tint {
  background:
    linear-gradient(180deg, rgba(240, 243, 252, 0.98), rgba(233, 238, 249, 0.96)),
    radial-gradient(circle at right top, rgba(143, 190, 37, 0.08), transparent 34%);
}

.band-inner {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

.faq-band {
  padding-bottom: 0;
}

.cta-band {
  padding-top: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding-top: 40px;
}

.home-banner {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  overflow: hidden;
  background: #f7f8fc;
}

.home-banner-image {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow,
.section-kicker,
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(65, 56, 143, 0.08);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-heading-wide {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.section-heading-wide h2 {
  max-width: 19ch;
}

.section-heading-wide .section-intro {
  margin-top: 0;
}

.section-cta-link {
  width: fit-content;
  color: var(--brand);
  font-weight: 800;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 15ch;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
}

.lead {
  max-width: 60ch;
  margin: 14px 0 0;
  font-size: clamp(0.92rem, 0.95vw, 1rem);
  line-height: 1.58;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), #564bc0);
  box-shadow: 0 16px 30px rgba(65, 56, 143, 0.25);
}

.button-secondary {
  color: var(--brand);
  background: rgba(65, 56, 143, 0.08);
  border: 1px solid rgba(65, 56, 143, 0.12);
}

.trust-counters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.trust-counters article,
.hero-card,
.card,
.quote-card,
.faq-list details,
.contact-form,
.timeline-step {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.trust-counters article {
  padding: 18px;
}

.trust-counters strong {
  display: block;
  font-size: 1.7rem;
  color: var(--brand);
}

.trust-counters span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.services-hero-visual {
  align-self: stretch;
}

.services-hero-image-card {
  overflow: hidden;
  min-height: 190px;
  border-radius: 28px;
  border: 1px solid rgba(65, 56, 143, 0.1);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(65, 56, 143, 0.06), rgba(255, 255, 255, 0.92));
}

.services-hero-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-card {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 42, 99, 0.08);
  box-shadow: 0 16px 34px rgba(31, 35, 79, 0.12);
  backdrop-filter: blur(10px);
}

.hero-card p,
.hero-card li,
.card p,
.quote-card p,
.contact-copy p,
.faq-list p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-card.accent {
  background:
    linear-gradient(180deg, rgba(21, 26, 56, 0.14), rgba(21, 26, 56, 0.18)),
    rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 18px 38px rgba(15, 18, 36, 0.22);
}

.about-hero .hero-card.accent {
  color: #12162f;
}

.about-hero .hero-card.accent .label,
.about-hero .hero-card.accent p {
  color: #12162f;
}

.hero-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(65, 56, 143, 0.08);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.split-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 30px;
  align-items: end;
  padding-top: 104px;
}

.contact-spotlight {
  align-items: stretch;
}

.cta-band .split-section {
  padding-top: 0;
  align-items: start;
}

.contact-spotlight-copy {
  display: grid;
  align-content: start;
  gap: 0;
}

.section-intro {
  margin: 18px 0 0;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.contact-highlight {
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(65, 56, 143, 0.1);
  box-shadow: 0 14px 28px rgba(31, 35, 79, 0.06);
}

.contact-highlight-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(65, 56, 143, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-highlight a {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand);
}

.contact-highlight p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(143, 190, 37, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.86);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(65, 56, 143, 0.08);
  pointer-events: none;
}

.contact-card-top {
  display: grid;
  gap: 8px;
}

.contact-card-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(65, 56, 143, 0.08);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-top h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.3;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-detail {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(65, 56, 143, 0.04);
  border: 1px solid rgba(65, 56, 143, 0.08);
}

.contact-detail span {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail p {
  margin: 0;
  color: var(--brand-dark);
  line-height: 1.7;
}

.split-section h2,
.section-heading h2,
.contact-copy h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
}

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

.section-heading h2 {
  max-width: 18ch;
}

.section-heading-wide {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.section-heading-wide h2 {
  max-width: 16ch;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading-wide .section-intro {
  margin-top: 0;
}

.section-cta-link {
  width: fit-content;
  color: var(--brand);
  font-weight: 800;
}

.process-heading h2 {
  max-width: 34ch;
}

.gallery-section {
  width: 100vw;
  margin-top: 56px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 64px 0 72px;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
}

.gallery-heading {
  width: min(calc(100% - 48px), var(--content));
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  display: grid;
  gap: 12px;
}

.gallery-heading .section-kicker {
  display: block;
  margin: 0 0 12px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-heading h2 {
  max-width: 18ch;
}

.gallery-heading .section-intro {
  margin-top: 0;
}

.gallery-grid {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: end start;
  min-height: 180px;
  padding: 20px;
  color: white;
  background-color: #4b4a7f;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-shadow: 0 2px 10px rgba(13, 16, 38, 0.25);
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(18, 22, 47, 0.12), rgba(18, 22, 47, 0.42));
}

.gallery-card > * {
  position: relative;
  z-index: 1;
}

.gallery-card-stone {
  background-image:
    linear-gradient(180deg, rgba(18, 22, 47, 0.12), rgba(18, 22, 47, 0.42)),
    url("Assets/Service%20Images%20Home%20/Stone%20Machine%20.jpg");
}

.gallery-card-carpet {
  background-image:
    linear-gradient(180deg, rgba(18, 22, 47, 0.12), rgba(18, 22, 47, 0.42)),
    url("Assets/Service%20Images%20Home%20/Carpet%20Cleaning.jpeg");
}

.gallery-card-glass {
  background-image:
    linear-gradient(180deg, rgba(18, 22, 47, 0.12), rgba(18, 22, 47, 0.42)),
    url("Assets/Service%20Images%20Home%20/Glass%20Film%20Application%20.jpg");
}

.gallery-card-upholstery {
  background-image:
    linear-gradient(180deg, rgba(18, 22, 47, 0.12), rgba(18, 22, 47, 0.42)),
    url("Assets/Service%20Images%20Home%20/Upholstery%20Care.png");
}

.gallery-card-sun-control {
  background-image:
    linear-gradient(180deg, rgba(18, 22, 47, 0.12), rgba(18, 22, 47, 0.42)),
    url("Assets/Service Images Home /Sun control film.webp");
}

.gallery-card-surface {
  background-image:
    linear-gradient(180deg, rgba(18, 22, 47, 0.12), rgba(18, 22, 47, 0.42)),
    url("Assets/Service%20Images%20Home%20/Surface%20Protection%20.png");
}

.gallery-card.tall {
  grid-row: span 2;
  min-height: 376px;
}

.gallery-card.wide {
  grid-column: span 2;
}

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

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

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

.service-card,
.industry-card,
.benefit-card,
.before-after-card,
.testimonial-placeholder {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.service-card:hover,
.industry-card:hover,
.benefit-card:hover,
.before-after-card:hover,
.testimonial-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(31, 35, 79, 0.14);
  border-color: rgba(65, 56, 143, 0.16);
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 18px;
}

.card-media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(65, 56, 143, 0.08), rgba(143, 190, 37, 0.08));
}

.card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card .card-media {
  height: 172px;
}

.service-card:hover .card-media img,
.industry-card:hover .industry-media img {
  transform: scale(1.04);
}

.service-card .card-icon,
.benefit-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(65, 56, 143, 0.12), rgba(143, 190, 37, 0.18));
  color: var(--brand);
}

.service-card .card-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  box-shadow: 0 14px 30px rgba(31, 35, 79, 0.12);
}

.service-card .card-icon svg,
.benefit-card .card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-card h3,
.industry-card h3,
.benefit-card h3,
.before-after-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.28;
}

.service-card p,
.industry-card p,
.benefit-card p,
.before-after-card p,
.testimonial-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.service-card a {
  width: fit-content;
  color: var(--brand);
  font-weight: 700;
}

.service-card-media {
  height: 170px;
}

.service-card-media img {
  object-fit: cover;
  object-position: center;
}

.service-card-media-carpet img {
  object-position: center 40%;
}

.service-card-media-stone img {
  object-position: center;
}

.service-card-media-upholstery img {
  object-position: center 35%;
}

.service-card-media-glass img {
  object-position: center;
}

.service-card-media-sun img {
  object-position: center 40%;
}

.service-card-media-protect img {
  object-position: center 55%;
}

.service-category-grid,
.outcome-grid,
.compact-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.service-category-card,
.outcome-card,
.compact-process-card {
  padding: 20px 18px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(65, 56, 143, 0.1);
  box-shadow: var(--shadow);
}

.service-category-card {
  display: grid;
  gap: 12px;
}

.service-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(65, 56, 143, 0.1), rgba(143, 190, 37, 0.14));
  color: var(--brand);
  font-weight: 800;
}

.service-category-card h3,
.outcome-card h3,
.compact-process-card h3 {
  margin: 0;
  font-size: 1rem;
}

.service-category-card p,
.outcome-card p,
.compact-process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

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

.outcome-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 253, 0.96));
}

.why-page .section-heading-wide h2 {
  max-width: 18ch;
}

.why-service-standard {
  padding-top: 56px;
}

.why-service-standard .why-heading {
  max-width: 820px;
  margin-bottom: 22px;
}

.why-service-standard .section-intro {
  max-width: 70ch;
}

.why-heading {
  margin-bottom: 18px;
}

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

.why-card,
.standard-card,
.difference-step {
  padding: 22px 20px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid rgba(65, 56, 143, 0.1);
  box-shadow: var(--shadow);
}

.why-card {
  display: grid;
  gap: 12px;
}

.why-card-index {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(65, 56, 143, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.why-card h3,
.standard-card h3,
.difference-step h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.3;
}

.why-card p,
.standard-card p,
.difference-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.difference-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.difference-step {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.difference-step::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.difference-step span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(65, 56, 143, 0.08);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.difference-step div {
  display: grid;
  gap: 8px;
}

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

.why-outcome-card {
  padding: 20px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 253, 0.98));
}

.why-outcome-card:hover,
.why-card:hover,
.standard-card:hover {
  transform: translateY(-4px);
}

.why-standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.standard-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 20px 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 253, 0.94));
  border: 1px solid rgba(65, 56, 143, 0.1);
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.standard-card span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(65, 56, 143, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.why-outcome-card h3,
.standard-card h3,
.why-card h3,
.difference-step h3,
.service-category-card h3,
.outcome-card h3,
.compact-process-card h3 {
  line-height: 1.22;
}

.standard-card:hover {
  transform: translateY(-4px);
  border-color: rgba(65, 56, 143, 0.14);
  box-shadow: 0 22px 44px rgba(31, 35, 79, 0.1);
}

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

.compact-process-card {
  position: relative;
  display: grid;
  gap: 10px;
}

.compact-process-card span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(65, 56, 143, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.services-industry-grid .industry-media {
  height: 160px;
}

.industry-media {
  overflow: hidden;
  border-radius: 20px;
}

.industry-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-media-residential img {
  object-position: center;
}

.industry-media-commercial img {
  object-position: center 35%;
}

.industry-media-hospitality img {
  object-position: center 40%;
}

.industry-media-industrial img {
  object-position: center 55%;
}

.faq-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.faq-heading h2 {
  max-width: none;
}

.faq-preview {
  margin-top: 22px;
}

.service-final-cta {
  padding-top: 18px;
}

.service-final-cta-inner {
  padding: 34px 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(143, 190, 37, 0.12), transparent 30%),
    linear-gradient(180deg, #1f2558 0%, #171c43 100%);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 20, 48, 0.18);
}

.service-final-cta-inner h2 {
  margin: 10px 0 0;
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.service-final-cta-inner p {
  max-width: 58ch;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.service-final-cta .hero-cta-row {
  margin-top: 22px;
}

.service-cta-note {
  margin-top: 18px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

.service-detail-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  margin-top: 18px;
}

.service-detail-section.reverse {
  direction: rtl;
}

.service-detail-section.reverse > * {
  direction: ltr;
}

.service-detail-media {
  min-width: 0;
  overflow: hidden;
  border-radius: 28px;
  min-height: 320px;
  border: 1px solid rgba(65, 56, 143, 0.1);
  box-shadow: var(--shadow);
}

.service-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-copy {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.service-detail-copy h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.service-detail-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-list-block,
.service-result-block {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(65, 56, 143, 0.1);
  box-shadow: var(--shadow);
}

.service-list-block strong,
.service-result-block strong {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-list-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.service-result-block p {
  margin: 0;
  color: var(--brand-dark);
}

.service-cta-link {
  width: fit-content;
  color: var(--brand);
  font-weight: 800;
}

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

.solution-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  box-shadow: 0 20px 48px rgba(31, 35, 79, 0.16);
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 22, 47, 0.18), rgba(18, 22, 47, 0.55));
}

.solution-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 10px;
  height: 100%;
}

.solution-index {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.solution-card p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.solution-card-carpet {
  background-image:
    linear-gradient(180deg, rgba(18, 22, 47, 0.18), rgba(18, 22, 47, 0.55)),
    url("Assets/Service Images Home /Carpet Cleaning.jpeg");
}

.solution-card-stone {
  background-image:
    linear-gradient(180deg, rgba(18, 22, 47, 0.18), rgba(18, 22, 47, 0.55)),
    url("Assets/Service Images Home /Stone Machine .jpg");
}

.solution-card-glass {
  background-image:
    linear-gradient(180deg, rgba(18, 22, 47, 0.18), rgba(18, 22, 47, 0.55)),
    url("Assets/Service Images Home /Glass Film Application .jpg");
}

.solution-card-upholstery {
  background-image:
    linear-gradient(180deg, rgba(18, 22, 47, 0.18), rgba(18, 22, 47, 0.55)),
    url("Assets/Service Images Home /Upholstery Care.png");
}

.industry-grid,
.benefit-grid,
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.industry-card {
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 16px;
}

.industry-media {
  height: 180px;
}

.industry-card h3 {
  font-size: 1.08rem;
}

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

.benefit-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

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

.before-after-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.before-after-frame {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 240px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(65, 56, 143, 0.1);
  box-shadow: 0 14px 30px rgba(31, 35, 79, 0.08);
}

.before-panel,
.after-panel {
  position: relative;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(23, 28, 67, 0.38)),
    linear-gradient(135deg, rgba(65, 56, 143, 0.18), rgba(143, 190, 37, 0.12));
}

.after-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(23, 28, 67, 0.22)),
    linear-gradient(135deg, rgba(143, 190, 37, 0.18), rgba(65, 56, 143, 0.16));
}

.before-panel span,
.after-panel span,
.testimonial-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.before-panel p,
.after-panel p {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-placeholder {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.testimonial-badge {
  background: rgba(65, 56, 143, 0.12);
  color: var(--brand);
}

.testimonial-placeholder footer {
  margin-top: 2px;
  color: var(--brand);
  font-weight: 700;
}

.faq-heading {
  align-items: start;
}

.faq-preview {
  gap: 14px;
}

.faq-preview details {
  padding: 22px 24px;
}

.faq-preview summary {
  font-size: 1.04rem;
  line-height: 1.4;
}

.faq-page .faq-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px 20px;
  margin-bottom: 14px;
}

.faq-page .faq-heading h2 {
  max-width: 18ch;
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
  line-height: 1.06;
}

.faq-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-filter {
  border: 1px solid rgba(65, 56, 143, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-dark);
  padding: 10px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.faq-filter:hover,
.faq-filter.is-active {
  background: linear-gradient(135deg, rgba(65, 56, 143, 0.12), rgba(143, 190, 37, 0.14));
  color: var(--brand);
  border-color: rgba(65, 56, 143, 0.16);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.faq-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 253, 0.92));
  border: 1px solid rgba(65, 56, 143, 0.08);
  box-shadow: 0 14px 34px rgba(31, 35, 79, 0.08);
}

.faq-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(65, 56, 143, 0.24), rgba(143, 190, 37, 0.26));
  opacity: 0.65;
}

.faq-card.is-hidden {
  display: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.faq-question::before {
  content: attr(data-index);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  border-radius: 999px;
  background: rgba(65, 56, 143, 0.06);
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.faq-question span:first-child {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.faq-toggle {
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--brand);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-card.is-open .faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 22px;
  transition:
    max-height 0.35s ease,
    opacity 0.28s ease,
    padding 0.28s ease;
}

.faq-card.is-open .faq-answer {
  padding: 0 22px 18px;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  color: rgba(94, 99, 122, 0.94);
  line-height: 1.62;
  max-width: 68ch;
  font-size: 0.96rem;
}

.faq-card.is-open {
  border-color: rgba(65, 56, 143, 0.12);
  box-shadow: 0 18px 38px rgba(31, 35, 79, 0.1);
}

.faq-card.is-open::before {
  opacity: 0.95;
}

.faq-page .hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
  align-items: start;
  padding-top: 28px;
}

.faq-page .hero h1 {
  max-width: 11ch;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.02;
}

.faq-page .hero .lead {
  max-width: 44ch;
  font-size: 0.98rem;
  line-height: 1.55;
}

.faq-page .hero-panel {
  align-self: start;
  margin-top: 14px;
}

.faq-page .section {
  padding-top: 32px;
}

.faq-cta {
  padding-top: 32px;
}

.faq-cta-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 22px;
  align-items: start;
  margin-top: 6px;
}

.faq-cta-grid .section-heading {
  margin-bottom: 0;
}

.faq-cta-grid h2 {
  max-width: 12ch;
}

.faq-cta-card {
  padding: 22px 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(143, 190, 37, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(65, 56, 143, 0.08);
  box-shadow: 0 16px 36px rgba(31, 35, 79, 0.08);
}

.faq-cta-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-highlights-cta {
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-highlights-cta .contact-highlight:first-child {
  background: linear-gradient(135deg, rgba(65, 56, 143, 0.08), rgba(143, 190, 37, 0.08));
}

.card,
.quote-card {
  padding: 24px;
}

.card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.card-link {
  display: block;
  color: inherit;
}

.card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(65, 56, 143, 0.16);
  box-shadow: 0 24px 54px rgba(31, 35, 79, 0.16);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.card-link span {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brand);
  font-weight: 700;
}

.page-hero {
  padding-top: 56px;
}

.page-hero .hero {
  padding-top: 20px;
}

.page-hero .hero h1 {
  max-width: 13ch;
}

.industries-page .page-hero .hero h1 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.services-page .page-hero .hero h1 {
  max-width: 11ch;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.01;
  letter-spacing: -0.04em;
}

.services-page .page-hero .lead {
  max-width: 48ch;
  font-size: clamp(0.94rem, 1.15vw, 1.02rem);
  line-height: 1.62;
}

.services-page .hero {
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
  gap: clamp(16px, 1.8vw, 24px);
  align-items: center;
}

.services-page .section-heading h2,
.services-page .section-heading-wide h2 {
  max-width: 18ch;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.services-page .service-card h3 {
  font-size: 1.02rem;
  line-height: 1.26;
}

.services-page .service-card p {
  font-size: 0.94rem;
  line-height: 1.55;
}

.services-page .service-category-card h3,
.services-page .outcome-card h3,
.services-page .compact-process-card h3 {
  font-size: 1rem;
}

.services-page .service-detail-copy h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
}

.services-page .service-detail-copy p,
.services-page .service-list-block p,
.services-page .service-result-block p {
  font-size: 0.98rem;
}

.services-page .service-final-cta-inner h2 {
  max-width: 12ch;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.about-page {
  padding-top: 0;
  padding-bottom: 16px;
}

.about-page .section {
  padding-top: 0;
}

.about-page .section-band {
  padding: 28px 0;
}

.about-page .section-band:first-of-type {
  margin-top: 0;
  padding-top: 20px;
}

.about-page .section-heading-wide {
  gap: 6px;
  margin-bottom: 12px;
}

.about-page .section-heading-wide h2 {
  max-width: 24ch;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-page .section-intro,
.about-page .page-intro {
  max-width: 760px;
}

.about-page .section-heading-wide .section-kicker {
  margin-bottom: 0;
}

.about-page .section-heading-wide .section-intro,
.about-page .page-intro {
  margin: 0;
}

.about-page .page-intro + .page-intro {
  margin-top: 10px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(22px, 2.8vw, 36px);
  align-items: center;
  padding-top: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(31, 42, 99, 0.08);
}

.about-page .about-hero {
  margin-bottom: 0;
}

.about-hero-copy {
  min-width: 0;
}

.about-hero-copy .eyebrow {
  margin-bottom: 10px;
}

.about-hero-copy h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.7rem, 4.7vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.about-hero-copy .lead {
  max-width: 620px;
  margin-top: 10px;
}

.about-hero-visual {
  min-width: 0;
}

.about-hero-media {
  position: relative;
  min-height: clamp(340px, 33vw, 450px);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(65, 56, 143, 0.08), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(65, 56, 143, 0.1);
  box-shadow: var(--shadow);
}

.about-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-card-overlay {
  position: absolute;
  right: 22px;
  width: min(320px, 82%);
  padding: 16px 16px 14px;
}

.hero-card-top {
  top: 18px;
}

.hero-card-bottom {
  bottom: 18px;
}

.about-copy-stack {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.about-page .section-band-light,
.about-page .section-band-tint {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 252, 0.98));
}

.about-image-card {
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(65, 56, 143, 0.06), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(65, 56, 143, 0.1);
  box-shadow: var(--shadow);
}

.about-image-card {
  align-self: stretch;
  aspect-ratio: 16 / 17;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(65, 56, 143, 0.06), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(65, 56, 143, 0.1);
  box-shadow: var(--shadow);
}

.about-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.split-two {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(18px, 1.8vw, 24px);
}

.split-two {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(22px, 2.4vw, 32px);
  align-items: start;
}

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

.expertise-card {
  position: relative;
  min-height: 200px;
  padding: 18px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.expertise-card::before,
.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 15, 36, 0.06) 0%, rgba(12, 15, 36, 0.78) 100%);
  z-index: -1;
}

.expertise-card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 22ch;
  color: #ffffff;
}

.expertise-card-inner h3,
.expertise-card-inner p,
.work-card h3,
.work-card p {
  margin: 0;
}

.expertise-card-inner p,
.work-card p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.expertise-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.expertise-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.expertise-card-carpet {
  background-image:
    linear-gradient(180deg, rgba(18, 21, 40, 0.08), rgba(18, 21, 40, 0.82)),
    url("Assets/Service Images Home /Carpet Cleaning.jpeg");
}

.expertise-card-stone {
  background-image:
    linear-gradient(180deg, rgba(18, 21, 40, 0.08), rgba(18, 21, 40, 0.82)),
    url("Assets/Service Images Home /Stone Machine .jpg");
}

.expertise-card-upholstery {
  background-image:
    linear-gradient(180deg, rgba(18, 21, 40, 0.08), rgba(18, 21, 40, 0.82)),
    url("Assets/Service Images Home /Upholstery Care.png");
}

.expertise-card-glass {
  background-image:
    linear-gradient(180deg, rgba(18, 21, 40, 0.08), rgba(18, 21, 40, 0.82)),
    url("Assets/Service Images Home /Glass Film Application .jpg");
}

.expertise-card-sun {
  background-image:
    linear-gradient(180deg, rgba(18, 21, 40, 0.08), rgba(18, 21, 40, 0.82)),
    url("Assets/Service Images Home /Sun control film.webp");
}

.expertise-card-protect {
  background-image:
    linear-gradient(180deg, rgba(18, 21, 40, 0.08), rgba(18, 21, 40, 0.82)),
    url("Assets/Service Images Home /Surface Protection .png");
}

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

.about-page .page-intro {
  margin: 0;
}

.about-page .page-intro + .page-intro {
  margin-top: 10px;
}

.about-page .section-heading-wide .section-kicker {
  margin-bottom: 0;
}

.about-page .section-band-tint {
  padding-top: 18px;
}

.about-page .section-band-tint .section-heading-wide {
  margin-bottom: 12px;
}

.about-timeline .timeline-step {
  min-height: 0;
  padding: 18px 18px 16px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-timeline .timeline-step::after {
  display: none;
}

.about-timeline .timeline-step::before {
  display: none;
}

.about-timeline .timeline-step span {
  width: 40px;
  height: 40px;
  margin-top: 0;
  font-size: 0.92rem;
}

.about-timeline .timeline-step h3 {
  font-size: 0.95rem;
}

.about-timeline .timeline-step p {
  font-size: 0.92rem;
  line-height: 1.45;
}

.about-feature-card,
.principle-card,
.value-card {
  min-height: 100%;
}

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

.principle-card {
  padding: 20px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(65, 56, 143, 0.1);
  box-shadow: var(--shadow);
}

.principle-card h3,
.value-card h3,
.work-card h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
}

.principle-card p,
.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.value-card {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(65, 56, 143, 0.1);
  box-shadow: var(--shadow);
}

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

.work-card {
  position: relative;
  min-height: 200px;
  padding: 20px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.work-card-residential {
  background-image:
    linear-gradient(180deg, rgba(12, 15, 36, 0.08), rgba(12, 15, 36, 0.82)),
    url("Assets/Homepage.jpeg");
}

.work-card-commercial {
  background-image:
    linear-gradient(180deg, rgba(12, 15, 36, 0.08), rgba(12, 15, 36, 0.82)),
    url("Assets/about-maintenance.jpg");
}

.work-card-hospitality {
  background-image:
    linear-gradient(180deg, rgba(12, 15, 36, 0.08), rgba(12, 15, 36, 0.82)),
    url("Assets/Service Images Home /Upholstery Care.png");
}

.work-card-industrial {
  background-image:
    linear-gradient(180deg, rgba(12, 15, 36, 0.08), rgba(12, 15, 36, 0.82)),
    url("Assets/Service Images Home /Surface Protection .png");
}

.about-commitment {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 54px 0;
  background: linear-gradient(180deg, #1f2558 0%, #171c43 100%);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 20, 48, 0.18);
}

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

.about-commitment h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2.2rem, 3.8vw, 3.55rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.about-commitment p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.section-kicker-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.final-about-cta {
  align-items: start;
}

.final-cta-panel {
  align-self: start;
}

.final-cta-panel h3 {
  margin-top: 0;
}

.final-cta-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.final-cta-panel .hero-cta-row {
  margin-top: 22px;
}

.about-page .hero-cta-row {
  margin-top: 16px;
}

.about-page .section-band-tint {
  padding-top: 22px;
}

.about-page .section-band-tint .section-heading-wide {
  margin-bottom: 16px;
}

.about-page .section-heading-wide {
  gap: 10px;
}

.about-page .section-heading-wide .section-kicker {
  margin-bottom: 0;
}

.about-page .section-heading-wide h2 {
  max-width: 24ch;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-page .section-heading-wide .section-intro {
  max-width: 700px;
  margin-top: 0;
}

.about-premium {
  width: 100%;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 16px;
  padding: 44px 0 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(243, 245, 248, 0.96)),
    radial-gradient(circle at top right, rgba(51, 64, 138, 0.05), transparent 34%);
  border-top: 1px solid rgba(31, 42, 99, 0.06);
  border-bottom: 1px solid rgba(31, 42, 99, 0.06);
}

.about-premium-inner {
  width: 100%;
  max-width: none;
  padding: 0 0 0 clamp(24px, 4vw, 64px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}

.about-copy,
.about-visual {
  min-width: 0;
  height: 100%;
}

.about-copy {
  display: flex;
  flex-direction: column;
  min-height: auto;
}

.about-visual {
  display: flex;
  align-items: flex-end;
  align-self: stretch;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(51, 64, 138, 0.08);
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(3.2rem, 3.6vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  max-width: 18ch;
}

.about-text {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.03rem;
  max-width: 640px;
}

.about-text-compact {
  margin-top: 14px;
  color: var(--brand-dark);
  max-width: 680px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(24px, 2.4vw, 34px);
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 42, 99, 0.08);
  box-shadow: 0 14px 26px rgba(31, 35, 79, 0.05);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
  min-width: 0;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 42, 99, 0.12);
  box-shadow: 0 22px 44px rgba(31, 35, 79, 0.1);
}

.feature-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  overflow-wrap: normal;
}

.feature-card > div {
  min-width: 0;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(51, 64, 138, 0.12), rgba(126, 165, 31, 0.16));
  color: var(--brand);
}

.feature-icon svg {
  display: block;
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.feature-icon svg path {
  fill: currentColor;
}

.about-art {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(420px, 40vw, 520px);
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(31, 42, 99, 0.08);
  box-shadow: 0 18px 40px rgba(31, 35, 79, 0.1);
}

.about-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 42, 99, 0.08);
  box-shadow: 0 14px 30px rgba(31, 35, 79, 0.08);
  backdrop-filter: blur(14px);
}

.about-note-title {
  margin: 0;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.about-note-copy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 38ch;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.about-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(51, 64, 138, 0.06);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
}

.page-intro {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.content-block {
  display: grid;
  gap: 18px;
}

.text-panel {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(65, 56, 143, 0.1);
  box-shadow: var(--shadow);
}

.text-panel h3 {
  margin: 0 0 10px;
}

.text-panel p,
.text-panel li {
  color: var(--muted);
  line-height: 1.7;
}

.text-list {
  margin: 0;
  padding-left: 18px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

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

.pill-grid span,
.check-grid div {
  padding: 16px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(65, 56, 143, 0.1);
  box-shadow: 0 10px 24px rgba(39, 42, 77, 0.06);
  text-align: center;
  color: var(--brand-dark);
  font-weight: 600;
}

.check-grid div {
  border-radius: var(--radius-md);
  position: relative;
  padding-left: 46px;
}

.check-grid div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #b5dc49);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

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

.process-section {
  padding-bottom: 24px;
}

.timeline-step {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px 22px;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72));
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(143, 190, 37, 0.9));
  opacity: 0.95;
}

.timeline-step::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, rgba(65, 56, 143, 0.22), rgba(143, 190, 37, 0.28));
}

.timeline-step:last-child::after {
  display: none;
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #5d50c6);
  color: white;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(65, 56, 143, 0.2);
  margin-top: 8px;
}

.timeline-step div {
  display: grid;
  gap: 8px;
}

.timeline-step h3 {
  margin: 0;
  font-size: 1rem;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.quote-card {
  margin: 0;
}

.quote-card footer {
  margin-top: 16px;
  color: var(--brand);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

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

.faq-list p {
  margin: 14px 0 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.contact-form {
  padding: 24px;
}

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

label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-dark);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(65, 56, 143, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(143, 190, 37, 0.45);
  border-color: rgba(143, 190, 37, 0.55);
}

.contact-form .button {
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 12px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-footer {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding: 44px 0 54px;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(180deg, #1f2558 0%, #171c43 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 64px;
  box-shadow: 0 -18px 40px rgba(17, 20, 48, 0.16);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(143, 190, 37, 0.22) 20%,
    rgba(255, 255, 255, 0.24) 50%,
    rgba(143, 190, 37, 0.22) 80%,
    transparent 100%
  );
  box-shadow: 0 0 26px rgba(143, 190, 37, 0.18);
}

.footer-inner {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.footer-brand h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.15rem;
}

.footer-brand p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p {
  margin: 0 0 10px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.footer-chip:hover {
  transform: translateY(-1px);
  background: rgba(143, 190, 37, 0.14);
  color: #ffffff;
}

.footer-chip svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.reveal {
  will-change: transform, opacity;
}

body.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (max-width: 1080px) {
  .nav {
    gap: 18px;
    justify-content: flex-start;
  }

  .hero,
  .about-hero,
  .about-premium-inner,
  .split-section,
  .contact-section,
  .final-about-cta {
    grid-template-columns: 1fr;
  }

  .home-banner-image {
    height: auto;
  }

  .gallery-section {
    width: 100vw;
    margin-top: 52px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 56px 0 64px;
  }

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

  .service-grid,
  .testimonial-grid,
  .timeline,
  .gallery-grid,
  .pill-grid,
  .check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-service-grid,
  .industry-grid,
  .benefit-grid,
  .before-after-grid,
  .solution-grid,
  .contact-highlights-cta,
  .service-category-grid,
  .outcome-grid,
  .compact-process-grid,
  .why-differentiators,
  .why-outcome-grid,
  .why-standard-grid,
  .difference-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-art {
    min-height: 460px;
  }

  .commitment-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-hero-copy h1,
  .about-commitment h2 {
    max-width: 11ch;
  }

  .about-image-card img,
  .about-hero-media {
    min-height: 420px;
  }

  .expertise-grid,
  .principles-grid,
  .value-grid,
  .work-with-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-timeline .timeline-step {
    min-height: 100%;
  }

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

  .service-detail-section {
    grid-template-columns: 1fr;
  }

  .service-detail-section.reverse {
    direction: ltr;
  }

  .contact-highlights {
    grid-template-columns: 1fr;
  }

  .faq-page .faq-heading h2 {
    max-width: none;
  }

  .faq-cta {
    padding-top: 28px;
  }

  .faq-cta-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 20px 18px;
  }

  .faq-answer,
  .faq-card.is-open .faq-answer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .timeline-step::after {
    top: auto;
    right: auto;
    left: 22px;
    bottom: -10px;
    width: 2px;
    height: 20px;
  }

  .timeline-step::before {
    width: 44px;
  }

  .about-timeline {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .solution-card,
  .before-after-frame {
    min-height: 240px;
  }

  .why-heading {
    margin-bottom: 18px;
  }

  .why-page .section-heading-wide h2 {
    max-width: 18ch;
  }

  .why-service-standard {
    padding-top: 48px;
  }

  .why-service-standard .why-heading {
    max-width: none;
    margin-bottom: 18px;
  }

  .why-card,
  .standard-card,
  .difference-step,
  .why-outcome-card {
    padding: 18px 16px;
  }

  .why-outcome-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .section {
    padding-top: 72px;
  }

  .top-strip-inner {
    min-height: auto;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0 8px;
  }

  .top-strip-text {
    font-size: clamp(0.62rem, 1.8vw, 0.78rem);
    line-height: 1.35;
    white-space: nowrap;
  }

  .top-strip-divider {
    display: none;
  }

  .top-strip-contact {
    font-size: clamp(0.72rem, 2vw, 0.82rem);
    white-space: nowrap;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 76px;
    gap: 12px;
    align-items: center;
  }

  .brand {
    min-width: 0;
    display: flex;
    align-items: center;
  }

  .brand-logo {
    width: clamp(132px, 42vw, 176px);
    max-width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 40;
    width: min(84vw, 320px);
    max-width: calc(100vw - 48px);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    padding: 96px 22px 24px;
    background: rgba(251, 252, 255, 1);
    backdrop-filter: blur(18px);
    box-shadow: -18px 0 40px rgba(31, 35, 79, 0.18);
    transform: translateX(105%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav-cta {
    display: none;
  }

  .nav a {
    width: 100%;
    padding: 8px 0;
  }

  .nav-cta-mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 8px;
    justify-content: center;
    padding: 12px 16px;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 35;
    display: block;
    background: rgba(18, 22, 47, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  .nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .service-grid,
  .testimonial-grid,
  .timeline,
  .pill-grid,
  .check-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .premium-service-grid,
  .industry-grid,
  .benefit-grid,
  .before-after-grid,
  .solution-grid,
  .contact-highlights-cta,
  .expertise-grid,
  .principles-grid,
  .value-grid,
  .work-with-grid,
  .service-category-grid,
  .outcome-grid,
  .compact-process-grid,
  .why-differentiators,
  .why-outcome-grid,
  .why-standard-grid,
  .difference-timeline {
    grid-template-columns: 1fr;
  }

  .process-heading {
    margin-bottom: 22px;
  }

  .timeline {
    gap: 16px;
  }

  .timeline-step {
    padding: 20px;
  }

  .timeline-step::after {
    display: none;
  }

  .timeline-step::before {
    top: 16px;
    left: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 180px;
  }

  .service-card .card-media,
  .industry-media {
    height: 210px;
  }

  .solution-card {
    min-height: 220px;
  }

  .service-card {
    padding: 14px;
  }

  .before-after-frame {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .before-panel,
  .after-panel {
    min-height: 160px;
  }

  .gallery-section {
    width: 100vw;
    margin-top: 28px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 36px 0 48px;
  }

  .about-premium {
    margin-top: 14px;
    padding: 34px 0 40px;
  }

  .about-premium-inner {
    width: 100%;
    padding: 0 16px;
    gap: 18px;
  }

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

  .about-copy h2,
  .section-heading h2,
  .split-section h2 {
    max-width: none;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-text-compact {
    margin-top: 14px;
  }

  .about-art {
    height: 290px;
  }

  .about-hero {
    gap: 16px;
    padding-top: 4px;
    margin-bottom: 0;
    padding-bottom: 18px;
  }

  .about-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.4rem, 10vw, 3.2rem);
    line-height: 1.04;
  }

  .about-hero-copy .lead {
    margin-top: 14px;
  }

  .about-hero-media,
  .about-image-card img {
    min-height: 260px;
  }

  .about-page .section-band:first-of-type {
    margin-top: 0;
  }

  .hero-card-overlay {
    left: 12px;
    right: 12px;
    width: auto;
  }

  .hero-points {
    gap: 8px;
    margin-top: 14px;
  }

  .hero-points span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .hero-card-top {
    top: 12px;
  }

  .hero-card-bottom {
    bottom: 12px;
  }

  .about-copy-stack {
    gap: 12px;
    margin-top: 14px;
  }

  .expertise-grid,
  .principles-grid,
  .value-grid,
  .work-with-grid {
    gap: 14px;
  }

  .expertise-card,
  .work-card,
  .principle-card,
  .value-card {
    min-height: 0;
  }

  .expertise-card,
  .work-card {
    min-height: 220px;
  }

  .about-commitment {
  padding: 64px 0;
}

  .commitment-inner {
    gap: 18px;
  }

  .about-commitment h2 {
    max-width: 12ch;
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  .about-commitment p {
    margin-top: 14px;
  }

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

  .services-page .page-hero .hero h1 {
    max-width: 12ch;
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.04;
  }

  .industries-page .page-hero .hero h1 {
    max-width: 12ch;
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.04;
  }

  .services-page .page-hero .lead {
    font-size: 1rem;
  }

  .services-page .section-heading h2,
  .services-page .section-heading-wide h2 {
    max-width: none;
    font-size: clamp(1.75rem, 7vw, 2.15rem);
  }

  .services-page .service-card h3 {
    font-size: 1rem;
  }

  .services-page .service-detail-copy h3 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .services-page .service-final-cta-inner h2 {
    max-width: none;
    font-size: clamp(1.7rem, 7vw, 2.05rem);
  }

  .why-heading {
    margin-bottom: 16px;
  }

  .why-service-standard {
    padding-top: 40px;
  }

  .why-service-standard .section-intro {
    max-width: none;
  }

  .why-card,
  .standard-card,
  .difference-step,
  .why-outcome-card {
    padding: 18px 16px;
  }

  .difference-step {
    gap: 12px;
  }

  .why-standard-grid {
    gap: 14px;
    margin-top: 8px;
  }

  .section-intro {
    max-width: none;
    font-size: 1rem;
  }

  .section-band {
    padding: 56px 0;
  }

  .faq-band {
    padding-bottom: 36px;
  }

  .cta-band {
    padding-top: 36px;
  }

  .band-inner {
    width: min(calc(100% - 24px), var(--content));
  }

  .section-heading-wide {
    gap: 8px;
    margin-bottom: 18px;
  }

  .section-heading-wide h2 {
    max-width: 20ch;
  }

  .about-page .section-heading-wide h2 {
    font-size: clamp(1.8rem, 5.8vw, 2.2rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .services-hero-image-card {
    min-height: 220px;
  }

  .service-category-card,
  .outcome-card,
  .compact-process-card,
  .service-list-block,
  .service-result-block,
  .service-final-cta-inner {
    padding: 18px 16px;
  }

  .service-detail-media {
    min-height: 220px;
  }

  .faq-heading {
    align-items: start;
    flex-direction: column;
  }

  .faq-filters {
    gap: 8px;
  }

  .faq-filter {
    padding: 9px 12px;
    font-size: 0.8rem;
  }

  .faq-cta {
    padding-top: 24px;
  }

  .faq-cta-card {
    padding: 20px 18px;
  }

  .faq-question {
    padding: 18px 16px;
  }

  .faq-question span:first-child {
    font-size: 0.98rem;
  }

  .faq-answer,
  .faq-card.is-open .faq-answer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-card .card-media,
  .industry-media {
    height: 190px;
  }

  .service-card .card-media img,
  .industry-media img,
  .about-image {
    object-position: center center;
  }

  .about-hero-image {
    object-position: center center;
  }

  .gallery-card {
    min-height: 160px;
  }

  .gallery-card.tall,
  .gallery-card.wide {
    min-height: 160px;
  }

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

  .before-panel,
  .after-panel {
    min-height: 140px;
  }

  .contact-card {
    padding: 22px;
  }

  .contact-card-top h3 {
    font-size: 1.15rem;
  }

  .contact-detail,
  .contact-highlight {
    padding: 16px;
  }

  .about-image {
    object-position: 72% center;
  }

  .about-note {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 14px 12px;
  }

  .about-note-copy {
    max-width: none;
  }

  .home-banner-image {
    height: auto;
  }

  .site-footer {
    padding: 42px 0 56px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
