:root {
  --white: #ffffff;
  --soft: #f5fbfe;
  --soft-blue: #eaf7fc;
  --cyan: #55bfd2;
  --cyan-dark: #2699b8;
  --blue: #4f9fdb;
  --navy: #23344c;
  --ink: #1f2d3d;
  --text: #637181;
  --muted: #8794a2;
  --line: #e4edf3;
  --gold: #f7b934;
  --teal: #47c6c5;
  --green: #77c86f;
  --shadow: 0 18px 46px rgba(34, 52, 76, 0.11);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid rgba(85, 191, 210, 0.65);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.topbar {
  color: var(--white);
  background: var(--cyan);
  font-size: 0.92rem;
}

.topbar-inner,
.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  align-items: center;
}

.topbar-inner {
  min-height: 2.25rem;
  justify-content: space-between;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.3rem 0;
}

.brand {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.site-logo {
  display: block;
  width: 48px;
  height: 54px;
  flex: 0 0 auto;
}

.brand-name {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.2;
}

.brand-line {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.site-nav a,
.nav-cta {
  display: inline-flex;
  min-height: 2.7rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

.site-nav a {
  padding: 0 0.8rem;
  color: var(--ink);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--cyan-dark);
}

.nav-cta {
  padding: 0 1rem;
  color: var(--white);
  background: var(--cyan);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem) 0 0;
  background: var(--white);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
  min-height: clamp(520px, 65vw, 720px);
  padding: clamp(2rem, 7vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
}

.hero-copy {
  max-width: 610px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 24%, rgba(255, 255, 255, 0.52) 50%, rgba(255, 255, 255, 0.12) 78%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 28%);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--cyan-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.15;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.25rem, 6vw, 4.1rem);
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
}

p {
  margin-bottom: 1rem;
}

.lead {
  color: var(--text);
  font-size: clamp(1.05rem, 2.4vw, 1.22rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
}

.button-primary {
  color: var(--white);
  background: var(--cyan);
  box-shadow: 0 14px 28px rgba(85, 191, 210, 0.24);
}

.button-secondary {
  color: var(--cyan-dark);
  background: var(--white);
  border-color: var(--cyan);
}

.hero-visual {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  display: none;
}

.photo-frame {
  border: 10px solid var(--white);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card {
  position: absolute;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.visual-card-main {
  left: clamp(1rem, 5vw, 3rem);
  top: clamp(1rem, 5vw, 3rem);
  width: min(72%, 330px);
  height: 250px;
  padding: 1.4rem;
}

.visual-card-main p {
  position: absolute;
  left: 1.4rem;
  bottom: 1.1rem;
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.visual-card-small {
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  gap: 0.25rem;
  width: 150px;
  padding: 1rem;
  text-align: center;
}

.visual-card-small strong {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
}

.visual-card-small span {
  color: var(--navy);
  font-weight: 800;
}

.visual-bottle,
.visual-bottle::before,
.visual-bottle::after {
  position: absolute;
  display: block;
}

.visual-bottle {
  left: 42%;
  top: 3.2rem;
  width: 76px;
  height: 150px;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(180deg, #b9eff8, var(--cyan));
  transform: rotate(-8deg);
}

.visual-bottle::before {
  content: "";
  left: 18px;
  top: -34px;
  width: 38px;
  height: 38px;
  border-radius: 10px 10px 4px 4px;
  background: var(--blue);
}

.visual-bottle::after {
  content: "";
  left: -86px;
  bottom: 8px;
  width: 150px;
  height: 22px;
  border-radius: 999px;
  background: #d9f3f7;
  transform: rotate(20deg);
}

.visual-sparkle {
  position: absolute;
  width: 54px;
  height: 54px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
}

.visual-sparkle-one {
  left: 2rem;
  top: 2rem;
}

.visual-sparkle-two {
  right: 2.5rem;
  top: 5rem;
  width: 30px;
  height: 30px;
}

.quick-contact {
  padding: 2rem 0 0;
  background: var(--white);
}

.quick-grid {
  display: grid;
  gap: 1rem;
}

.quick-card {
  min-height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.45rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.quick-card p {
  margin: 0;
  font-size: 1.08rem;
  font-style: italic;
}

.quick-card strong {
  font-size: clamp(1.25rem, 3vw, 1.9rem);
}

.quick-icon {
  font-size: 2rem;
}

.quick-card-blue {
  background: var(--blue);
}

.quick-card-gold {
  background: var(--gold);
}

.quick-card-teal {
  background: var(--teal);
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-soft {
  background: var(--soft);
}

.split,
.feature-split,
.cta-panel,
.page-title-row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-grid,
.service-catalog,
.process-grid {
  display: grid;
  gap: 1.1rem;
}

.service-card,
.catalog-card,
.process-grid article,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 1.45rem;
  text-align: center;
}

.round-icon,
.mini-icon {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cyan-dark);
  background: var(--soft-blue);
  border: 2px solid rgba(85, 191, 210, 0.26);
  font-weight: 900;
}

.round-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.35rem;
  color: var(--cyan-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.cleaning-illustration {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(85, 191, 210, 0.08)),
    radial-gradient(circle at 35% 25%, rgba(85, 191, 210, 0.16), transparent 30%);
}

.feature-photo,
.about-photo {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bucket,
.spray,
.cloth {
  position: absolute;
  display: block;
  box-shadow: var(--shadow);
}

.bucket {
  left: 50%;
  bottom: 3rem;
  width: 180px;
  height: 170px;
  border-radius: 18px 18px 42px 42px;
  background: linear-gradient(145deg, #62d6d8, #1c9ab8);
  transform: translateX(-50%);
}

.bucket::before {
  content: "";
  position: absolute;
  left: 28px;
  top: -42px;
  width: 124px;
  height: 70px;
  border: 12px solid #88dbe7;
  border-bottom: 0;
  border-radius: 80px 80px 0 0;
}

.spray {
  bottom: 4.5rem;
  width: 58px;
  height: 210px;
  border-radius: 20px 20px 10px 10px;
}

.spray::before {
  content: "";
  position: absolute;
  left: 12px;
  top: -34px;
  width: 34px;
  height: 38px;
  border-radius: 8px 8px 3px 3px;
  background: inherit;
}

.spray-one {
  left: 14%;
  background: #f6d33c;
  transform: rotate(-15deg);
}

.spray-two {
  right: 16%;
  background: #75d8e6;
  transform: rotate(12deg);
}

.cloth {
  left: 46%;
  bottom: 10.5rem;
  width: 140px;
  height: 72px;
  border-radius: 18px;
  background: #f7a9bd;
  transform: rotate(8deg);
}

.feature-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

.feature-list-wide {
  max-width: 860px;
}

.mini-icon {
  width: 2.9rem;
  height: 2.9rem;
}

.cta-section {
  padding-top: 0;
}

.cta-panel {
  padding: clamp(1.6rem, 4vw, 2.2rem);
  background:
    linear-gradient(135deg, var(--soft), var(--white)),
    radial-gradient(circle at right, rgba(85, 191, 210, 0.2), transparent 32%);
}

.cta-buttons {
  margin-top: 0;
}

.page-hero {
  padding: clamp(2.8rem, 6vw, 4.5rem) 0;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-title-row p {
  max-width: 520px;
}

.about-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-hero-grid p {
  max-width: 560px;
}

.about-hero-photo {
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.catalog-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
}

.catalog-card h2 {
  font-size: 1.35rem;
}

.catalog-photo {
  width: calc(100% + 2.8rem);
  max-width: none;
  height: 190px;
  margin: -1.4rem -1.4rem 1.25rem;
  object-fit: cover;
}

.catalog-number {
  position: absolute;
  right: 1rem;
  top: 0.45rem;
  color: rgba(35, 52, 76, 0.07);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
}

.check-list {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--cyan-dark);
  font-weight: 900;
}

.process-grid article {
  padding: 1.45rem;
}

.process-grid span {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: rgba(35, 52, 76, 0.18);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: clamp(1.4rem, 4vw, 2rem);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2rem);
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  color: var(--ink);
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(85, 191, 210, 0.28);
  border-color: var(--cyan);
}

.form-alert {
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
}

.form-alert p,
.form-alert ul {
  margin: 0;
}

.form-alert ul {
  padding-left: 1.25rem;
}

.form-alert-success {
  color: #17603d;
  background: #e9f8ef;
  border: 1px solid #bfe8cf;
}

.form-alert-error {
  color: #7a2d2d;
  background: #fff0f0;
  border: 1px solid #f0c8c8;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 250px;
  max-height: 250px;
  border: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  padding: 2.4rem 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.7rem;
}

.footer-logo {
  width: 44px;
  height: 50px;
}

.footer-title {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

.footer-contact {
  display: grid;
  gap: 0.4rem;
  font-style: normal;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--cyan);
}

.footer-bottom {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 560px) {
  .button,
  .nav-cta {
    width: 100%;
  }

  .topbar-inner {
    padding: 0.45rem 0;
  }
}

@media (min-width: 760px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
  }

  .site-nav {
    margin-left: auto;
  }

  .hero-shell,
  .split,
  .feature-split,
  .cta-panel,
  .about-hero-grid,
  .page-title-row,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-catalog {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .contact-card {
    grid-column: auto;
  }

  .map-frame {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1060px) {
  .service-catalog {
    grid-template-columns: repeat(3, 1fr);
  }
}
