:root {
  --ink: #02263a;
  --ink-soft: #355569;
  --teal: #177c7d;
  --teal-dark: #0e6269;
  --mint: #d9f1ed;
  --cream: #f7f3eb;
  --paper: #ffffff;
  --line: #dce8e8;
  --shadow: 0 24px 70px rgba(2, 38, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: auto;
  height: 56px;
  max-width: 230px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  background: #f8fbfb;
}

.lang-button {
  width: 42px;
  min-height: 34px;
  border: 0;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.lang-button.active {
  color: #fff;
  background: var(--teal-dark);
}

.quote-link,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.quote-link,
.primary-button {
  color: #fff;
  background: var(--teal-dark);
  box-shadow: 0 10px 24px rgba(14, 98, 105, 0.24);
}

.secondary-button {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.light-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.hero-photo {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: end;
  padding: clamp(70px, 9vw, 128px) clamp(18px, 6vw, 86px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 38, 58, 0.88), rgba(2, 38, 58, 0.44) 46%, rgba(2, 38, 58, 0.08)),
    url("assets/hero-moving.png") center / cover no-repeat;
}

.hero-overlay {
  max-width: 800px;
}

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

.hero-photo .eyebrow,
.section-heading.light .eyebrow,
.quote-cta .eyebrow {
  color: var(--mint);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4.5vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
}

.hero-text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 6vw, 86px);
  transform: translateY(-28px);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 122px;
  padding: 26px;
  background: #fff;
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  font-weight: 900;
}

.trust-strip span {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: clamp(72px, 8vw, 122px) clamp(18px, 6vw, 86px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 18px;
}

.section-heading.light {
  color: #fff;
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.78);
}

.why {
  background: linear-gradient(180deg, #fff, #f8fbfb);
}

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

.feature-grid article {
  min-height: 100%;
  padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 44px rgba(2, 38, 58, 0.07);
}

.feature-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: #fff;
  background: var(--teal-dark);
  font-weight: 900;
}

.feature-grid p,
.about-copy p,
.quote-box p,
.service-card p,
.final-message p,
.quote-hero p,
.form-note {
  color: var(--ink-soft);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: var(--cream);
}

.about-copy {
  max-width: 840px;
}

.quote-box {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-box img {
  width: 70px;
  margin-bottom: 24px;
}

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

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) 1fr;
  min-height: 100%;
  background: #fff;
  box-shadow: 0 18px 44px rgba(2, 38, 58, 0.18);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.service-card div {
  padding: 30px;
}

.service-kicker {
  margin-bottom: 10px;
  color: var(--teal-dark) !important;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 320px;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 6vw, 86px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 38, 58, 0.96), rgba(14, 98, 105, 0.86)),
    url("assets/hero-moving.png") center / cover no-repeat;
  scroll-margin-top: 130px;
}

.quote-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.quote-cta .eyebrow {
  color: var(--mint);
}

.quote-cta .primary-button {
  min-height: 58px;
  padding-right: 28px;
  padding-left: 28px;
}

.process {
  background: #f8fbfb;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-steps article {
  min-height: 160px;
  padding: 24px;
  background: #fff;
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.process-steps h3 {
  margin-bottom: 0;
  font-size: 17px;
}

.pale {
  color: var(--ink);
  background: var(--mint);
  box-shadow: none;
}

.final-message {
  background: #fff;
}

.final-message .section-heading {
  max-width: 940px;
}

.quote-hero {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 6vw, 86px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 38, 58, 0.9), rgba(14, 98, 105, 0.74)),
    url("assets/hero-moving.png") center / cover no-repeat;
}

.quote-hero div {
  max-width: 820px;
}

.quote-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.quote-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.quote-hero .quote-reassurance {
  margin-top: 18px;
  color: #fff;
  font-weight: 800;
}

.quote-page {
  background: #f8fbfb;
}

.privacy-content {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.privacy-content article {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.privacy-content h2 {
  font-size: 26px;
}

.privacy-content p {
  color: var(--ink-soft);
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
}

fieldset legend {
  padding: 0 8px;
  font-size: 13px;
  font-weight: 900;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

fieldset input {
  width: 18px;
  min-height: 18px;
}

.volume-fieldset {
  align-items: start;
}

.volume-help {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.hidden-field {
  display: none;
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.privacy-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

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

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(40px, 6vw, 70px) clamp(18px, 6vw, 86px);
  color: rgba(255, 255, 255, 0.8);
  background: #021a29;
}

.footer h3 {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}

.footer p,
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.footer li + li {
  margin-top: 8px;
}

.footer a {
  color: #fff;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 210px;
}

.footer-brand img {
  width: 52px;
}

.footer-brand strong {
  color: #fff;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  font-family: inherit;
}

.chat-toggle {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  color: #fff;
  background: var(--teal-dark);
  box-shadow: 0 18px 40px rgba(2, 38, 58, 0.28);
  font-weight: 900;
  cursor: pointer;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 66px;
  display: none;
  width: min(360px, calc(100vw - 36px));
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.chat-panel.open {
  display: block;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  color: #fff;
  background: var(--ink);
}

.chat-header button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 280px;
  overflow-y: auto;
  padding: 16px;
  background: #f8fbfb;
}

.chat-message {
  width: fit-content;
  max-width: 92%;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14px;
}

.chat-message.user {
  justify-self: end;
  color: #fff;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.chat-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 92%;
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  background: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.chat-quick {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 12px 16px 0;
}

.chat-quick button,
.chat-form button {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  padding: 10px;
  font-weight: 800;
  cursor: pointer;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 16px 16px;
}

.chat-form input {
  min-height: 42px;
}

.chat-form button {
  color: #fff;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

  .service-card img {
    height: 330px;
  }
}

@media (max-width: 900px) {
  .feature-grid,
  .service-list,
  .about,
  .trust-strip,
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .quote-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: auto;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand img {
    height: 48px;
    max-width: 168px;
  }

  .header-actions {
    justify-self: end;
  }

  .nav {
    gap: 14px;
    font-size: 12px;
  }

  .lang-button {
    width: 38px;
    min-height: 30px;
  }

  .quote-link {
    display: none;
  }

  .hero-photo {
    min-height: 680px;
    align-items: end;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .request-form,
  fieldset,
  .trust-strip,
  .process-steps,
  .feature-grid,
  .service-list,
  .about,
  .footer {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    transform: none;
    margin-top: 0;
  }

  .service-card img {
    min-height: 250px;
    height: 250px;
  }

  .chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .chat-panel {
    bottom: 62px;
  }
}
