/* RK Groups Inc - Cleanzy-inspired layout
   Brand colors: gold #faf9d0 · light blue #82caff */

:root {
  --gold: #faf9d0;
  --gold-deep: #ebe8b0;
  --blue: #82caff;
  --blue-soft: #b5e0ff;
  --blue-ink: #174a6b;
  --ink: #152833;
  --muted: #5c7383;
  --white: #ffffff;
  --bg: #f5faff;
  --line: rgba(130, 202, 255, 0.32);
  --shadow-sm: 0 6px 20px rgba(23, 74, 107, 0.07);
  --shadow-md: 0 16px 40px rgba(23, 74, 107, 0.1);
  --shadow-lg: 0 28px 60px rgba(23, 74, 107, 0.14);
  --radius: 20px;
  --radius-lg: 32px;
  --pill: 999px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
  --header-h: 168px;
  --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 40% at 100% 0%, rgba(130, 202, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 35% at 0% 15%, rgba(250, 249, 208, 0.65), transparent 50%),
    var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  background:
    linear-gradient(135deg, rgba(130, 202, 255, 0.35), rgba(250, 249, 208, 0.75));
}

img.is-loading {
  min-height: 120px;
}

img.is-loaded {
  background: transparent;
}

.service-card__image,
.about-intro__image,
.location-card__image,
.hero__visual,
.coverage-stage__media {
  background:
    linear-gradient(135deg, rgba(130, 202, 255, 0.28), rgba(250, 249, 208, 0.7));
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2rem);
}

.icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon--xs {
  width: 0.95rem;
  height: 0.95rem;
}

/* Header - Cleanzy style */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  line-height: 0;
}

.logo__img {
  display: block;
  width: auto;
  height: clamp(112px, 16vw, 168px);
  max-width: min(520px, 78vw);
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.logo__icon {
  display: none;
}

.logo__text {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  padding: 0.55rem 0.95rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  border-radius: var(--pill);
  transition: all var(--ease);
}

.nav__link:hover,
.nav__link.active {
  color: var(--blue-ink);
  background: rgba(130, 202, 255, 0.2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid var(--blue);
  background: var(--gold);
  cursor: pointer;
  padding: 0.65rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2.5px;
  margin-inline: auto;
  background: var(--blue-ink);
  border-radius: 2px;
  transition: var(--ease);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav__eyebrow,
.nav__panel-meta,
.nav__panel-note {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.85rem 1.6rem;
  border-radius: var(--pill);
  border: 2px solid transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--ease);
  text-align: center;
}

.btn__arrow {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--blue-ink);
  font-size: 0.95rem;
  line-height: 1;
}

.btn--primary {
  background: var(--blue);
  color: var(--blue-ink);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(130, 202, 255, 0.45);
}

.btn--primary:hover {
  background: var(--blue-soft);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold-deep);
  box-shadow: 0 10px 24px rgba(250, 249, 208, 0.55);
}

.btn--gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--blue-ink);
  border-color: var(--blue);
}

.btn--ghost:hover {
  background: rgba(130, 202, 255, 0.15);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--ghost-light:hover {
  background: var(--white);
}

.btn--outline,
.btn--outline-dark {
  background: var(--white);
  color: var(--blue-ink);
  border-color: var(--blue);
}

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

.btn--sm {
  min-height: 42px;
  padding: 0.55rem 1.2rem;
  font-size: 0.88rem;
}

.btn--block {
  width: 100%;
}

.btn--spaced {
  margin-top: 1rem;
}

.btn-center {
  text-align: center;
  margin-top: 2.5rem;
}

/* Hero */
.hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "content visual"
    "meta visual";
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.hero__content {
  grid-area: content;
}

.hero__meta {
  grid-area: meta;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--pill);
  background: var(--gold);
  border: 1px solid var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(130, 202, 255, 0.3);
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.2vw, 3.7rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.15rem;
}

.hero__title em {
  font-style: normal;
  color: var(--blue-ink);
  background: linear-gradient(180deg, transparent 60%, rgba(130, 202, 255, 0.55) 60%);
}

.hero__subtitle {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0;
}

.hero__stat-card {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  background: var(--blue-ink);
  color: var(--white);
  padding: 0.95rem 1.15rem;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  max-width: 100%;
}

.hero__stat-card strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.3;
}

.hero__stat-card span {
  display: block;
  font-size: 0.78rem;
  opacity: 0.8;
  margin-top: 0.15rem;
}

.hero__stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(130, 202, 255, 0.25);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero__stat-icon .icon {
  color: var(--gold);
}

.hero__chips {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-ink);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex: 1 1 auto;
}

.chip .icon {
  color: var(--blue);
}

.hero__visual {
  grid-area: visual;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  animation: floaty 7s ease-in-out infinite;
}

.hero__visual > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.hero__visual::before {
  width: 42%;
  height: 42%;
  background: var(--gold);
  right: -8%;
  bottom: -6%;
}

.hero__visual::after {
  width: 34%;
  height: 34%;
  background: var(--blue);
  opacity: 0.55;
  left: -8%;
  top: -6%;
}

.hero__float {
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: min(240px, 70%);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.hero__float strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.hero__float p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Page hero */
.page-hero {
  padding: clamp(2.75rem, 7vw, 4.5rem) 0;
  text-align: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(130, 202, 255, 0.35), transparent 45%),
    linear-gradient(135deg, var(--gold) 0%, var(--bg) 50%, rgba(130, 202, 255, 0.28) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero__title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  position: relative;
}

.page-hero__subtitle {
  color: var(--muted);
  margin-top: 0.75rem;
  font-size: 1.05rem;
  position: relative;
}

.page-hero__breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  position: relative;
}

.page-hero__breadcrumb a {
  color: var(--blue-ink);
  font-weight: 600;
}

/* Sections */
.section {
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
}

.section--soft,
.section--gray {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(130, 202, 255, 0.12), transparent 55%),
    var(--bg);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-ink);
  background: rgba(130, 202, 255, 0.22);
  padding: 0.35rem 0.9rem;
  border-radius: var(--pill);
  margin-bottom: 0.9rem;
}

.section__title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.section__desc {
  color: var(--muted);
  font-size: 1.05rem;
}

.section__title--spaced {
  text-align: left;
  margin-bottom: 1rem;
}

.section__desc--spaced {
  text-align: left;
  margin-bottom: 2rem;
}

.section__title--contact {
  text-align: left;
  margin-bottom: 2rem;
}

/* About intro */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: 2rem;
}

.about-intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-intro__image img {
  width: 100%;
  height: clamp(260px, 38vw, 420px);
  object-fit: cover;
}

.about-intro__content h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.about-intro__content p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-intro__content strong {
  color: var(--blue-ink);
}

/* Our Goals */
.goals__accent {
  color: var(--blue-ink);
}

.goals {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  border: 1.5px dashed rgba(23, 74, 107, 0.22);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}

.goals__card {
  text-align: center;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}

.goals__title {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.goals__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(130, 202, 255, 0.18);
  display: grid;
  place-items: center;
}

.goals__icon .icon {
  width: 1.45rem;
  height: 1.45rem;
  color: var(--blue-ink);
}

.goals__text {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 34ch;
}

.goals__divider {
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(23, 74, 107, 0.28) 0 6px,
    transparent 6px 12px
  );
  margin: 1.5rem 0;
}

/* Cleaning process (About) */
.clean-flow__header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: end;
  margin-bottom: 2rem;
}

.clean-flow__heading .section__title {
  text-align: left;
  margin-bottom: 0;
}

.clean-flow__desc {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  padding-bottom: 0.35rem;
}

.clean-flow__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1.5px dashed rgba(23, 74, 107, 0.22);
  border-bottom: 1.5px dashed rgba(23, 74, 107, 0.22);
}

.clean-flow__step {
  text-align: center;
  padding: clamp(1.75rem, 3vw, 2.5rem) 1.25rem;
  border-right: 1.5px dashed rgba(23, 74, 107, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.clean-flow__step:last-child {
  border-right: none;
}

.clean-flow__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(130, 202, 255, 0.2);
  display: grid;
  place-items: center;
  margin-bottom: 0.25rem;
}

.clean-flow__icon .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--blue-ink);
}

.clean-flow__num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(23, 74, 107, 0.28);
  line-height: 1;
}

.clean-flow__title {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.clean-flow__text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 22ch;
}

/* Coverage stage - stacked showcase (wide band) */
.coverage-stage {
  position: relative;
  margin-top: 2.75rem;
  padding-top: 1rem;
}

.coverage-stage__stack {
  position: absolute;
  left: 3.5%;
  right: 3.5%;
  top: 0;
  height: 78%;
  pointer-events: none;
  z-index: 0;
}

.coverage-stage__layer {
  position: absolute;
  inset: 0;
  border-radius: clamp(1.5rem, 3vw, 2.25rem);
}

.coverage-stage__layer--back {
  background: #dce4e8;
  transform: translateY(-14px) scale(0.975);
}

.coverage-stage__layer--mid {
  background: rgba(130, 202, 255, 0.62);
  transform: translateY(-7px) scale(0.988);
}

.coverage-stage__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  align-items: stretch;
  background: #14384c;
  border-radius: clamp(1.5rem, 3vw, 2.25rem);
  padding: 0.75rem;
  box-shadow: var(--shadow-lg);
  height: clamp(290px, 32vw, 360px);
}

.coverage-stage__media {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}

.coverage-stage__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.coverage-stage__media:hover img {
  transform: scale(1.04);
}

.coverage-stage__tag {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  padding: 0.35rem 0.75rem;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(23, 74, 107, 0.08);
}

.coverage-stage__card {
  background: var(--white);
  border-radius: 1.1rem;
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1rem, 2.2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.55rem;
  min-height: 0;
  overflow: hidden;
}

.coverage-stage__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.3rem 0.7rem;
  border-radius: var(--pill);
  background: #e8eef0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.coverage-stage__title {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.coverage-stage__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.coverage-stage__cta {
  margin-top: 0.35rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.88rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}

.services-grid--expertise {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.service-card__image {
  height: 190px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.06);
}

.service-card__body {
  padding: 1.35rem;
  flex: 1;
}

.service-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gold);
  border: 1px solid var(--gold-deep);
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}

.service-card__icon .icon {
  color: var(--blue-ink);
}

.service-card__title {
  font-family: var(--display);
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.service-card__desc {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Features / process */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 1.25rem;
}

.feature-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
}

.feature-card__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.1rem;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--blue), var(--blue-soft));
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
}

.feature-card__icon .icon {
  width: 28px;
  height: 28px;
  color: var(--blue-ink);
}

.feature-card__title {
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.feature-card__desc {
  color: var(--muted);
  font-size: 0.92rem;
}

.process {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.process__intro .section__title {
  text-align: left;
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.process__step {
  padding: 1.6rem 1.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process__step:nth-child(2n) {
  border-right: none;
}

.process__step:nth-child(n + 3) {
  border-bottom: none;
}

.process__num {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.55rem;
}

.process__step h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.process__step p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Clients - trusted by strip */
.clients-section {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(130, 202, 255, 0.12), transparent 50%),
    var(--bg);
  overflow: hidden;
}

.clients__header {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.clients__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-ink);
  margin-bottom: 0.75rem;
}

.clients__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--blue-ink);
}

.clients__title {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  max-width: 12ch;
}

.clients__title-accent {
  color: #1a5a6e;
}

.clients__lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 34ch;
  justify-self: end;
  padding-bottom: 0.35rem;
}

.clients__shell {
  width: 100%;
  border-radius: clamp(1.35rem, 3vw, 1.85rem);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  overflow: hidden;
}

.clients__viewport {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 340px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.clients__track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.clients__shell.is-animated .clients__track {
  animation: clients-marquee 42s linear infinite;
  --marquee-start: 0px;
}

.clients__shell:hover .clients__track,
.clients__shell:focus-within .clients__track {
  animation-play-state: paused;
}

@keyframes clients-marquee {
  from { transform: translateX(var(--marquee-start)); }
  to { transform: translateX(calc(var(--marquee-start) - 50%)); }
}

.clients-card {
  flex: 0 0 auto;
  width: 260px;
  height: 300px;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.clients-card--soft {
  background: #e8eef0;
  color: var(--ink);
  padding: 1.35rem 1.25rem;
  gap: 0.3rem;
}

.clients-card--feature {
  background: linear-gradient(165deg, #1a5a6e 0%, #14384c 100%);
  color: var(--white);
  padding: 1.35rem 1.25rem;
  gap: 0.3rem;
  transform: rotate(2deg);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.clients-card--image {
  width: 220px;
  padding: 0;
  box-shadow: var(--shadow-sm);
}

.clients-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.clients-card__mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.75);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  color: var(--blue-ink);
  flex-shrink: 0;
}

.clients-card__mark svg {
  width: 1.1rem;
  height: 1.1rem;
}

.clients-card__mark--light {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.clients-card__name {
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 0.55rem;
  opacity: 0.9;
}

.clients-card__stat {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.clients-card--feature .clients-card__stat {
  color: var(--gold);
}

.clients-card__caption {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.15rem 0 0.55rem;
}

.clients-card__text {
  margin-top: auto;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--muted);
}

.clients-card--feature .clients-card__text,
.clients-card--feature .clients-card__caption,
.clients-card--feature .clients-card__name {
  color: rgba(255, 255, 255, 0.82);
}

@media (prefers-reduced-motion: reduce) {
  .clients__shell.is-animated .clients__track {
    animation: none;
  }

  .clients__viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* Locations */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}

.locations-grid--preview {
  grid-template-columns: repeat(3, 1fr);
}

.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
  height: 100%;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.location-card__image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  height: 180px;
  background:
    linear-gradient(135deg, rgba(130, 202, 255, 0.28), rgba(250, 249, 208, 0.7));
}

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

.location-card__title {
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--blue);
}

.location-card__desc {
  color: var(--muted);
  font-size: 0.94rem;
}

.location-card__desc strong {
  color: var(--blue-ink);
}

.location-card--wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(130, 202, 255, 0.18), rgba(250, 249, 208, 0.55));
}

.cta-banner {
  background: linear-gradient(135deg, var(--blue), var(--blue-soft));
  border-radius: var(--radius-lg);
  padding: clamp(2.25rem, 6vw, 3.5rem);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.cta-banner__title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.85rem;
}

.cta-banner__desc {
  color: var(--blue-ink);
  margin-bottom: 1.5rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Values - Why Choose RK Groups Inc */
.values-section {
  background: var(--white);
}

.values {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.values__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-ink);
  margin-bottom: 0.85rem;
}

.values__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--blue-ink);
  flex-shrink: 0;
}

.values__title {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.values__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 28ch;
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: none;
}

.values__item {
  padding: clamp(1.25rem, 3vw, 1.85rem);
  position: relative;
}

.values__item:nth-child(1),
.values__item:nth-child(2) {
  border-bottom: 1px dotted rgba(23, 74, 107, 0.28);
}

.values__item:nth-child(odd) {
  border-right: 1px dotted rgba(23, 74, 107, 0.28);
  padding-left: 0;
}

.values__item:nth-child(even) {
  padding-right: 0;
}

.values__item:nth-child(3),
.values__item:nth-child(4) {
  padding-bottom: 0;
}

.values__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(130, 202, 255, 0.18);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--blue-ink);
}

.values__icon .icon {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.values__item-title {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.values__item-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Shared page banner hero */
.page-banner {
  padding: clamp(1.25rem, 3vw, 2rem) 0 0;
}

.page-banner__banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: clamp(240px, 42vw, 380px);
  display: grid;
  align-items: end;
  box-shadow: var(--shadow-md);
}

.page-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 40, 51, 0.78) 0%, rgba(21, 40, 51, 0.45) 55%, rgba(21, 40, 51, 0.35) 100%),
    linear-gradient(0deg, rgba(21, 40, 51, 0.55) 0%, transparent 55%);
}

.page-banner__content {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-areas:
    "badge badge"
    "title text";
  gap: 0.85rem 1.5rem;
  align-items: end;
  min-height: inherit;
}

.page-banner__badge {
  grid-area: badge;
  display: inline-flex;
  align-self: start;
  justify-self: start;
  padding: 0.4rem 0.9rem;
  border-radius: var(--pill);
  background: rgba(21, 40, 51, 0.72);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-banner__title {
  grid-area: title;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.5vw, 3.15rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  align-self: end;
}

.page-banner__text {
  grid-area: text;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.6;
  text-align: right;
  align-self: end;
  max-width: 22rem;
  justify-self: end;
}

.contact-talk .section__header {
  margin-bottom: 2rem;
}

.contact-form-panel {
  background: var(--blue-ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  color: rgba(255, 255, 255, 0.92);
}

.contact-form-panel__intro {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 40rem;
}

.contact-form-panel .form-group label {
  color: rgba(255, 255, 255, 0.88);
}

.contact-form-panel .form-group .required {
  color: var(--gold);
}

.contact-form-panel .form-group input,
.contact-form-panel .form-group textarea,
.contact-form-panel .form-group select {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.contact-form-panel .form-group input::placeholder,
.contact-form-panel .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form-panel .form-group select {
  background-color: rgba(255, 255, 255, 0.08);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23faf9d0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  padding-right: 2.5rem;
}

.contact-form-panel .form-group select option {
  color: var(--ink);
  background: var(--white);
}

.contact-form-panel .form-group input:focus,
.contact-form-panel .form-group textarea:focus,
.contact-form-panel .form-group select:focus {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(130, 202, 255, 0.28);
}

.contact-form-panel .form-group select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23faf9d0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.35rem;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: var(--pill);
  background: var(--blue);
  color: var(--blue-ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}

.contact-form__submit:hover {
  background: var(--blue-soft);
  transform: translateY(-1px);
}

.contact-form__submit-arrow {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-ink);
  font-size: 0.95rem;
  line-height: 1;
}

.contact-form-panel .form-success {
  color: var(--gold);
  background: rgba(250, 249, 208, 0.12);
  border: 1px solid rgba(250, 249, 208, 0.28);
}

.contact-connect__header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: end;
  margin-bottom: 2rem;
}

.contact-connect__heading .section__title {
  text-align: left;
  margin-bottom: 0;
}

.contact-connect__desc {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  padding-bottom: 0.35rem;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px dashed rgba(23, 74, 107, 0.22);
  border-radius: var(--radius-lg);
  background: var(--white);
  margin-bottom: 1.75rem;
  overflow: hidden;
}

.contact-channels__item {
  text-align: center;
  padding: clamp(1.75rem, 3vw, 2.5rem) 1.35rem;
  border-right: 1.5px dashed rgba(23, 74, 107, 0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.contact-channels__item:last-child {
  border-right: none;
}

.contact-channels__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(130, 202, 255, 0.2);
  display: grid;
  place-items: center;
}

.contact-channels__icon .icon {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--blue-ink);
}

.contact-channels__label {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.contact-channels__value {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 22ch;
  text-decoration: none;
}

a.contact-channels__value:hover {
  color: var(--blue-ink);
}

.contact-map {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(130, 202, 255, 0.28), rgba(250, 249, 208, 0.7));
}

.contact-map--wide iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 420px);
  border: 0;
}

.contact-map__cta {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  top: auto;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--pill);
  background: var(--blue-ink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap;
}

.contact-map__cta:hover {
  background: #123a55;
  transform: translateX(-50%) translateY(-2px);
}

.contact-map__cta-arrow {
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.95rem;
  line-height: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.contact-quick a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--blue-ink);
  background: var(--gold);
  padding: 0.55rem 0.95rem;
  border-radius: var(--pill);
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gold);
  border: 1px solid var(--gold-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-info__icon .icon {
  color: var(--blue-ink);
}

.contact-info__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.contact-info__value {
  font-weight: 600;
}

.contact-info__value a {
  color: var(--blue-ink);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.form-card__title {
  font-family: var(--display);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.form-card__subtitle {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.form-group .required {
  color: var(--blue-ink);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  font: inherit;
  color: var(--ink);
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23174a6b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(130, 202, 255, 0.25);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(130, 202, 255, 0.2);
  border: 1px solid var(--blue);
  color: var(--blue-ink);
  text-align: center;
  font-weight: 600;
}

.form-success.show {
  display: block;
}

.why-us__list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.why-us__item {
  display: flex;
  gap: 0.9rem;
}

.why-us__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(130, 202, 255, 0.22);
}

.why-us__check .icon {
  width: 14px;
  height: 14px;
  color: var(--blue-ink);
}

.why-us__item h4 {
  margin-bottom: 0.2rem;
}

.why-us__item p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Careers */
.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.75rem;
}

.job-card__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.job-card__title {
  font-family: var(--display);
  font-size: 1.4rem;
}

.job-card__pay {
  background: var(--gold);
  border: 1px solid var(--gold-deep);
  border-radius: var(--pill);
  padding: 0.45rem 1rem;
  font-weight: 800;
  white-space: nowrap;
}

.job-card h4 {
  margin: 1rem 0 0.65rem;
  color: var(--blue-ink);
}

.job-card ul {
  list-style: disc;
  padding-left: 1.35rem;
  color: var(--muted);
}

.job-card ul li {
  margin-bottom: 0.35rem;
}

.job-card__note {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border-radius: 0 14px 14px 0;
  background: rgba(130, 202, 255, 0.15);
  border-left: 4px solid var(--blue);
  color: var(--muted);
}

/* Footer - Cleanzy-style shell + contact panel */
.footer {
  width: 100%;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
}

.footer > .container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(1rem, 3vw, 2rem);
  padding-top: 0;
  padding-bottom: clamp(1rem, 3vw, 2rem);
}

.footer__shell {
  width: 100%;
  background: linear-gradient(180deg, rgba(130, 202, 255, 0.16) 0%, transparent 30%), #14384c;
  border-radius: clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.footer__intro {
  max-width: 34rem;
}

.footer__logo {
  display: inline-flex;
  margin-bottom: 0.85rem;
}

.footer__title {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.55rem;
}

.footer__lead {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 1.15rem;
}

.footer__estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  max-width: 28rem;
  min-height: 3.15rem;
  padding: 0.35rem 0.4rem 0.35rem 1.15rem;
  border-radius: var(--pill);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background var(--ease);
}

.footer__estimate:hover {
  background: rgba(0, 0, 0, 0.38);
}

.footer__estimate-btn {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--ink);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.25rem;
  align-items: start;
  grid-template-areas:
    "links services"
    "locations services";
}

.footer__col:first-child {
  grid-area: links;
}

.footer__col--locations {
  grid-area: locations;
}

.footer__col:last-child {
  grid-area: services;
}

.footer__heading {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.75rem;
}

.footer__heading--spaced {
  margin-top: 1.35rem;
}

.footer__links li {
  margin-bottom: 0.45rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--ease);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__copy {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
}

.footer__panel {
  background: #e8eef0;
  color: var(--ink);
  border-radius: clamp(1.15rem, 3vw, 1.65rem);
  padding: clamp(1.25rem, 3.5vw, 1.75rem);
  display: grid;
  gap: 1.25rem;
}

.footer__panel-label {
  display: block;
  font-size: 0.78rem;
  color: #6a7c86;
  margin-bottom: 0.35rem;
}

.footer__panel-value {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: #152833;
  line-height: 1.4;
  word-break: break-word;
}

a.footer__panel-value {
  display: inline-block;
  text-decoration: none;
}

a.footer__panel-value:hover {
  color: var(--blue-ink);
}

.footer__panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.footer__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.45rem 1rem;
  border-radius: var(--pill);
  background: #d7e0e4;
  color: #243843;
  font-size: 0.86rem;
  font-weight: 600;
  transition: background var(--ease), color var(--ease);
}

.footer__pill:hover {
  background: var(--blue);
  color: var(--ink);
}

.footer .logo__img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
  height: clamp(88px, 14vw, 128px);
  max-width: min(380px, 75vw);
}

.footer .logo__text,
.footer .logo__icon {
  display: none;
}

@media (min-width: 901px) {
  .footer__shell {
    grid-template-columns: 1.1fr 1.4fr;
    grid-template-areas:
      "intro nav"
      "copy copy"
      "panel panel";
    column-gap: 2.5rem;
    row-gap: 1.75rem;
  }

  .footer__intro { grid-area: intro; }
  .footer__nav { grid-area: nav; }
  .footer__copy { grid-area: copy; }
  .footer__panel { grid-area: panel; }

  .footer__panel {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
  }

  .footer__panel-row {
    display: contents;
  }

  .footer__panel-block:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1100px) {
  .footer__panel {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }

  .footer__panel-block:last-child {
    grid-column: auto;
  }
}

/* Cookie */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 4px solid var(--blue);
  box-shadow: 0 -10px 30px rgba(23, 74, 107, 0.12);
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform var(--ease);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  flex: 1;
  min-width: min(100%, 260px);
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.65rem;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

html.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

html.nav-open,
html.nav-open body {
  height: 100%;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .header {
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.98);
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 2;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background:
      radial-gradient(ellipse 90% 55% at 100% -10%, rgba(130, 202, 255, 0.42), transparent 55%),
      radial-gradient(ellipse 70% 45% at 0% 110%, rgba(250, 249, 208, 0.85), transparent 50%),
      linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.35rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    gap: 0;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    box-shadow: none;
  }

  .nav.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: -12px 0 40px rgba(23, 74, 107, 0.12);
  }

  .nav__eyebrow {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--pill);
    background: rgba(130, 202, 255, 0.22);
    color: var(--blue-ink);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: 0.4rem;
    flex: 1 1 auto;
  }

  .nav__list > li {
    width: 100%;
  }

  .nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    height: 58px;
    box-sizing: border-box;
    padding: 0 1.15rem;
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(130, 202, 255, 0.28);
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(23, 74, 107, 0.04);
    transition: background var(--ease), border-color var(--ease), transform var(--ease);
  }

  .nav__link::after {
    content: "\2192";
    font-size: 1.05rem;
    color: var(--blue-ink);
    opacity: 0.35;
    transition: opacity var(--ease), transform var(--ease);
  }

  .nav__link:hover,
  .nav__link:focus-visible {
    background: rgba(130, 202, 255, 0.18);
    border-color: var(--blue);
    outline: none;
  }

  .nav__link:hover::after,
  .nav__link:focus-visible::after {
    opacity: 1;
    transform: translateX(3px);
  }

  .nav__link.active {
    color: var(--blue-ink);
    background: var(--gold);
    border-color: var(--gold-deep);
    box-shadow: 0 8px 20px rgba(23, 74, 107, 0.08);
  }

  .nav__link.active::after {
    opacity: 1;
  }

  .nav__cta {
    margin-top: 1.35rem;
    padding-top: 1.15rem;
    border-top: 1.5px dashed rgba(23, 74, 107, 0.2);
  }

  .nav__cta .btn {
    width: 100%;
    min-height: 54px;
    font-size: 1rem;
    border-radius: var(--pill);
    box-shadow: var(--shadow-md);
  }

  .nav__panel-meta {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.15rem;
  }

  .nav__panel-meta a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(130, 202, 255, 0.25);
    color: var(--blue-ink);
    font-weight: 600;
    font-size: 0.92rem;
  }

  .nav__panel-meta .icon {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--blue-ink);
  }

  .nav__panel-note {
    display: block;
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: center;
  }

  .hero__grid,
  .process,
  .about-intro,
  .contact-grid,
  .values {
    grid-template-columns: 1fr;
  }

  .about-intro__content {
    order: 1;
  }

  .about-intro__image {
    order: 2;
  }

  .page-banner__content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "badge"
      "title"
      "text";
    align-items: start;
  }

  .page-banner__banner {
    min-height: 340px;
  }

  .page-banner__text {
    text-align: left;
    justify-self: start;
    max-width: none;
  }

  .contact-form__submit {
    width: 100%;
    justify-content: center;
  }

  .contact-connect__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .contact-channels__item {
    border-right: none;
    border-bottom: 1.5px dashed rgba(23, 74, 107, 0.22);
  }

  .contact-channels__item:last-child {
    border-bottom: none;
  }

  .contact-map__cta {
    bottom: 1rem;
    font-size: 0.88rem;
    padding: 0.75rem 1.1rem;
  }

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

  .goals__divider {
    width: auto;
    height: 1px;
    margin: 0 1.5rem;
    background: repeating-linear-gradient(
      to right,
      rgba(23, 74, 107, 0.28) 0 6px,
      transparent 6px 12px
    );
  }

  .clean-flow__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .clean-flow__grid {
    grid-template-columns: 1fr 1fr;
  }

  .clean-flow__step:nth-child(2n) {
    border-right: none;
  }

  .clean-flow__step:nth-child(-n + 2) {
    border-bottom: 1.5px dashed rgba(23, 74, 107, 0.22);
  }

  .hero__grid {
    grid-template-areas:
      "content"
      "visual"
      "meta";
    gap: 1.35rem;
  }

  .hero__actions {
    margin-bottom: 0;
  }

  .hero__visual {
    animation: none;
    margin-top: 0.25rem;
  }

  .hero__visual > img {
    aspect-ratio: 16 / 11;
  }

  .hero__meta {
    margin-top: 0.15rem;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__chips {
    gap: 0.4rem;
  }

  .chip {
    padding: 0.45rem 0.5rem;
    font-size: 0.72rem;
    gap: 0.2rem;
  }

  .chip .icon {
    width: 0.85rem;
    height: 0.85rem;
  }

  .coverage-stage__panel {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    height: auto;
    padding: 0.65rem;
  }

  .coverage-stage__stack {
    left: 4%;
    right: 4%;
    height: 55%;
  }

  .coverage-stage__media {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .coverage-stage__media img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
  }

  .coverage-stage__card {
    padding: 1.5rem 1.25rem;
    gap: 0.8rem;
    min-height: 260px;
  }

  .coverage-stage__text {
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
  }

  .services-grid--expertise,
  .locations-grid--preview {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 124px;
  }

  .about-intro__image img {
    height: 340px;
  }

  .logo__img {
    height: clamp(96px, 22vw, 120px);
    max-width: min(340px, 72vw);
  }

  .footer {
    padding: 0.75rem 0 0;
  }

  .footer > .container {
    padding-inline: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .footer__shell {
    border-radius: 1.75rem;
    padding: 1.5rem 1.25rem 1.25rem;
    gap: 1.65rem;
  }

  .footer__logo {
    margin-bottom: 0.65rem;
  }

  .footer .logo__img {
    height: clamp(76px, 18vw, 100px);
    max-width: min(260px, 68vw);
  }

  .footer__title {
    font-size: 1.45rem;
  }

  .footer__lead {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  .footer__estimate {
    max-width: none;
  }

  .footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem 1rem;
    grid-template-areas:
      "locations services"
      "links services";
  }

  .footer__col--locations {
    text-align: left;
  }

  .footer__col--locations .footer__heading {
    text-align: left;
  }

  .footer__heading {
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
  }

  .footer__heading--spaced {
    margin-top: 1.15rem;
  }

  .footer__links a {
    font-size: 0.88rem;
  }

  .footer__copy {
    font-size: 0.78rem;
  }

  .footer__panel {
    border-radius: 1.35rem;
    padding: 1.25rem 1.15rem;
    gap: 1.15rem;
  }

  .footer__panel-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .footer__panel-value {
    font-size: 0.92rem;
  }

  .footer__pills {
    gap: 0.45rem;
  }

  .footer__pill {
    min-height: 2.2rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.82rem;
  }

  .values__lead {
    max-width: none;
  }

  .values__grid {
    margin-top: 0.25rem;
  }

  .values__item:nth-child(odd) {
    padding-left: clamp(1.25rem, 3vw, 1.85rem);
  }

  .values__item:nth-child(1),
  .values__item:nth-child(3) {
    padding-left: 0;
  }

  .values__item:nth-child(2),
  .values__item:nth-child(4) {
    padding-right: 0;
  }

  .clients__header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.85rem;
  }

  .clients__title {
    max-width: none;
  }

  .clients__lead {
    justify-self: start;
    max-width: none;
  }

  .clients-card--feature {
    transform: rotate(1.5deg);
  }

  .coverage-stage {
    margin-top: 2rem;
    padding-top: 0.85rem;
  }

  .coverage-stage__layer--back {
    transform: translateY(-12px) scale(0.96);
  }

  .coverage-stage__layer--mid {
    transform: translateY(-6px) scale(0.98);
  }

  .coverage-stage__media {
    aspect-ratio: 16 / 9;
  }

  .coverage-stage__card {
    padding: 1.75rem 1.35rem;
    gap: 0.85rem;
    min-height: 280px;
  }

  .coverage-stage__title {
    font-size: 1.35rem;
    line-height: 1.25;
  }

  .coverage-stage__text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .coverage-stage__cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.55rem;
    padding: 0.85rem 1.25rem;
  }

  .hero__actions,
  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-row,
  .process__grid,
  .services-grid--expertise,
  .locations-grid--preview,
  .features-grid,
  .services-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .process__step {
    border-right: none !important;
    border-bottom: 1px solid var(--line);
  }

  .process__step:last-child {
    border-bottom: none;
  }

  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions .btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .footer__panel-row {
    grid-template-columns: 1fr;
  }

  .clean-flow__grid {
    grid-template-columns: 1fr;
  }

  .clean-flow__step {
    border-right: none;
    border-bottom: 1.5px dashed rgba(23, 74, 107, 0.22);
  }

  .clean-flow__step:last-child {
    border-bottom: none;
  }

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

  .values__item {
    padding: 1.25rem 0 !important;
    border-right: none !important;
  }

  .values__item:nth-child(1),
  .values__item:nth-child(2),
  .values__item:nth-child(3) {
    border-bottom: 1px dotted rgba(23, 74, 107, 0.28);
  }

  .values__item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0 !important;
  }
}

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

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
