:root {
  --blue: #57aee7;
  --blue-dark: #176fa8;
  --green: #77d947;
  --green-dark: #45a922;
  --ink: #162333;
  --muted: #657587;
  --line: #dfe8ef;
  --soft: #f4f9fc;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(22, 35, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1160px, calc(100% - 32px));
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  background: var(--white);
  border: 1px solid rgba(223, 232, 239, 0.78);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(22, 35, 51, 0.12);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.brand {
  display: flex;
  align-items: center;
  width: 178px;
  height: 52px;
  overflow: hidden;
}

.brand img,
.site-footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 12px 15px;
  border-radius: 6px;
  color: #314256;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: var(--soft);
  color: var(--blue-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  min-height: max(720px, 100svh);
  padding: 0;
  overflow: hidden;
  background: #101820;
}

.hero-carousel,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 38%, rgba(255, 255, 255, 0.15) 72%),
    linear-gradient(180deg, rgba(22, 35, 51, 0.12), rgba(22, 35, 51, 0.3));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  min-height: 720px;
  min-height: max(720px, 100svh);
  margin: 0 auto;
  padding-top: clamp(132px, 16vh, 172px);
  padding-bottom: clamp(56px, 9vh, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
.hero-copy h2 {
  width: 100%;
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 6.3vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  width: 100%;
  max-width: 620px;
  margin-bottom: 30px;
  color: #3b4b5f;
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
}

.hero-copy .hero-seo {
  color: #24364a;
  font-weight: 650;
}

.hero-actions,
.coverage {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  width: 100%;
  max-width: 620px;
}

.hero-chips {
  display: flex;
  width: 100%;
  max-width: 620px;
  flex-wrap: wrap;
  gap: 8px;
  margin: -12px 0 28px;
}

.hero-chips span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(23, 111, 168, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(22, 35, 51, 0.08);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 16px 34px rgba(23, 111, 168, 0.22);
}

.button.ghost {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(69, 169, 34, 0.2);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 132px;
  padding: 30px;
  background: var(--white);
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: 1.45rem;
}

.trust-strip span {
  color: var(--muted);
}

.section,
.brand-section,
.coverage,
.contact {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

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

.section-heading h2,
.brand-copy h2,
.coverage h2,
.contact-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.service-card,
.process-list article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(22, 35, 51, 0.06);
}

.service-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(87, 174, 231, 0.16), rgba(119, 217, 71, 0.16));
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--blue-dark);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon.fridge svg,
.service-icon.appliance svg,
.service-icon.microwave svg {
  stroke: var(--green-dark);
}

.service-icon.oven svg {
  stroke: var(--blue-dark);
}

.service-card h3,
.process-list h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.service-card p,
.process-list p,
.brand-copy p,
.coverage p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-copy a,
.site-footer a {
  color: var(--blue-dark);
  font-weight: 850;
}

.brand-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.brand-grid span {
  min-height: 132px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--white), var(--soft));
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  font-weight: 950;
  box-shadow: 0 16px 42px rgba(22, 35, 51, 0.08);
}

.brand-grid span:nth-child(even) {
  color: var(--green-dark);
}

.brand-grid span:nth-child(odd) {
  color: var(--blue-dark);
}

.process {
  padding-top: 90px;
}

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

.process-list span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 950;
}

.service-facts {
  padding-top: 0;
}

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

.facts-grid article {
  padding: 28px;
  border: 1px solid rgba(23, 111, 168, 0.15);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--white), var(--soft));
  box-shadow: 0 14px 42px rgba(22, 35, 51, 0.06);
}

.facts-grid strong {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.facts-grid h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.facts-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.coverage {
  position: relative;
  justify-content: space-between;
  padding: 58px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 18%, rgba(87, 174, 231, 0.13), transparent 34%),
    radial-gradient(circle at 72% 28%, rgba(119, 217, 71, 0.14), transparent 32%),
    #f3f7fa;
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(22, 35, 51, 0.1);
  overflow: hidden;
}

.coverage div {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.coverage > .button {
  position: relative;
  z-index: 2;
}

.coverage .eyebrow {
  color: var(--green-dark);
}

.coverage h2 {
  color: var(--ink);
}

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

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

.faq-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-grid h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.jobs {
  border-top: 1px solid var(--line);
}

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

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

.job-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--white), var(--soft));
  box-shadow: 0 14px 42px rgba(22, 35, 51, 0.06);
}

.job-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.job-card h3 {
  margin-bottom: 10px;
  font-size: 1.32rem;
}

.job-card p,
.job-note p {
  color: var(--muted);
}

.job-card ul {
  display: grid;
  gap: 8px;
  margin: 8px 0 24px;
  padding-left: 20px;
  color: #314256;
}

.job-card .button {
  margin-top: auto;
}

.job-note {
  margin-top: 18px;
  padding: 24px 28px;
  border: 1px solid rgba(23, 111, 168, 0.15);
  border-radius: 8px;
  background: var(--white);
}

.job-note h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.job-note p {
  margin-bottom: 0;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.area-tags span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(69, 169, 34, 0.22);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(69, 169, 34, 0.2);
}

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

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.address-autocomplete-widget {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background-color: var(--white);
  color: var(--ink);
  color-scheme: light;
  font: inherit;
}

textarea {
  resize: vertical;
}

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

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status.success {
  color: var(--green-dark);
}

.form-status.error {
  color: #b42318;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 42px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 164px;
  height: 46px;
  overflow: hidden;
}

.jobs-main {
  min-height: 100svh;
  padding-top: 126px;
  background:
    linear-gradient(180deg, rgba(244, 249, 252, 0.96), rgba(255, 255, 255, 1) 380px),
    url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1600&q=80") center top / cover no-repeat;
}

.jobs-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 78px) 0 24px;
}

.jobs-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.jobs-hero p:not(.eyebrow) {
  max-width: 690px;
  color: #3b4b5f;
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
}

.job-card h2,
.job-note h2 {
  margin-bottom: 10px;
  font-size: 1.32rem;
  line-height: 1.12;
}

.thank-you-main {
  min-height: 100svh;
  padding-top: 126px;
  background:
    linear-gradient(180deg, rgba(244, 249, 252, 0.96), rgba(255, 255, 255, 0.98)),
    url("https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.thank-you-panel {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(46px, 8vw, 84px) 0 84px;
}

.thank-you-panel h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.96;
}

.thank-you-panel p {
  max-width: 650px;
  color: #3b4b5f;
  font-size: clamp(1.04rem, 1.7vw, 1.22rem);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.thank-you-panel .thank-you-note {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

.thank-you-next {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.thank-you-next article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(22, 35, 51, 0.08);
}

.thank-you-next span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 950;
}

.thank-you-next h2 {
  margin-bottom: 8px;
  font-size: 1.14rem;
}

.thank-you-next p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px;
  }

  .slide-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 54%, rgba(255, 255, 255, 0.22) 100%),
      linear-gradient(180deg, rgba(22, 35, 51, 0.12), rgba(22, 35, 51, 0.34));
  }

  .hero {
    min-height: 760px;
    min-height: max(760px, 100svh);
  }

  .hero-slide img {
    object-position: 58% center;
  }

  .hero-copy {
    min-height: 760px;
    min-height: max(760px, 100svh);
    padding-top: 126px;
    padding-bottom: 54px;
    justify-content: flex-start;
  }

  .trust-strip,
  .service-grid,
  .brand-section,
  .process-list,
  .facts-grid,
  .faq-grid,
  .job-grid,
  .contact,
  .thank-you-next {
    grid-template-columns: 1fr;
  }

  .brand-section,
  .section,
  .contact {
    padding: 72px 0;
  }

  .coverage {
    padding: 38px 24px;
  }

}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 66px;
    padding-left: 12px;
  }

  .brand {
    width: 146px;
    height: 44px;
  }

  .hero {
    min-height: 740px;
    min-height: max(740px, 100svh);
  }

  .hero-slide img {
    object-position: 64% center;
  }

  .hero-copy {
    width: min(1160px, calc(100% - 28px));
    min-height: 740px;
    min-height: max(740px, 100svh);
    padding-top: 112px;
    padding-bottom: 44px;
  }

  h1,
  .hero-copy h2 {
    width: 100%;
    margin-bottom: 14px;
    font-size: clamp(2.12rem, 12vw, 3.85rem);
    line-height: 0.98;
  }

  .hero-copy p:not(.eyebrow) {
    width: 100%;
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-chips {
    width: 100%;
    gap: 7px;
    margin: -8px 0 22px;
  }

  .hero-chips span {
    min-height: 32px;
    padding: 6px 9px;
    font-size: 0.8rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 48px;
  }

  .trust-strip div {
    min-height: auto;
    padding: 22px;
  }

  .service-card,
  .process-list article,
  .contact-form {
    padding: 22px;
  }

  .brand-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .brand-grid span {
    min-height: 96px;
  }

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