:root {
  --orange: #f15a24;
  --orange-dark: #c93e0c;
  --ink: #121212;
  --ink-soft: #303236;
  --gray: #656a73;
  --gray-light: #f1f2f3;
  --line: #dfe1e5;
  --white: #ffffff;
  --green: #1fa855;
  --shadow: 0 18px 50px rgba(15, 18, 22, 0.1);
  --radius: 22px;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ff9b73;
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 82px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 225, 229, 0.85);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
  height: 64px;
  color: var(--ink);
  text-decoration: none;
}

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

.brand-copy {
  display: grid;
  gap: 5px;
}

.brand-name {
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-slogan {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav > a:not(.button):hover {
  color: var(--orange-dark);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: transparent;
  border: 0;
  border-radius: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  color: var(--white) !important;
}

.button-large {
  min-height: 56px;
  padding: 16px 24px;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.button-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.58);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
}

.button-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: 490px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #101113;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-mdos.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 11, 0.84) 0%, rgba(10, 10, 11, 0.68) 28%, rgba(10, 10, 11, 0.18) 58%, rgba(10, 10, 11, 0.04) 100%),
    linear-gradient(0deg, rgba(10, 10, 11, 0.38), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 58px;
}

.hero h1 {
  max-width: 770px;
  margin: 12px 0 22px;
  font-size: clamp(2.7rem, 6.3vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.5;
}

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

.hero-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

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

.eyebrow-light {
  color: #ff936b;
}

.trust-strip {
  color: var(--white);
  background: var(--ink);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item strong {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.2;
}

.trust-item span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.section {
  padding-block: 108px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 50px;
}

.section-heading h2,
.experience-content h2,
.coverage-content h2,
.contact-intro h2,
.legal-hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--gray);
  font-size: 1.08rem;
}

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

.service-card {
  display: flex;
  min-height: 238px;
  padding: 24px;
  flex-direction: column;
  background: var(--gray-light);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #e1c4b8;
  box-shadow: var(--shadow);
}

.service-card.featured-card {
  color: var(--white);
  background: var(--orange);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--orange-dark);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card:not(.featured-card) .service-number {
  color: var(--white);
  background: var(--ink);
}

.service-card h3 {
  margin: 24px 0 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--gray);
}

.service-card.featured-card p {
  color: rgba(255, 255, 255, 0.86);
}

.service-card .service-rate {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 18px;
  color: var(--ink);
  font-weight: 900;
}

.service-card.featured-card .service-rate {
  color: var(--white);
}

.services-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
}

.services-footer p {
  margin: 0;
  color: var(--gray);
}

.text-link {
  flex: 0 0 auto;
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.52fr);
  gap: 72px;
  align-items: center;
}

.experience-content h2 {
  margin-top: 12px;
}

.experience-slogan {
  display: grid;
  gap: 5px;
  max-width: 660px;
}

.experience-slogan p {
  margin: 0;
}

.experience-slogan-lead {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 750;
}

.experience-slogan-confirm {
  color: var(--orange);
  font-size: 1.03rem;
  font-weight: 800;
}

.experience-copy {
  max-width: 660px;
  margin-top: 34px;
}

.mdos-meaning {
  margin-top: 72px;
  padding: 34px 38px 36px;
  background: #202124;
  border-top: 4px solid var(--orange);
  border-radius: 18px;
}

.mdos-meaning h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.mdos-meaning > p:last-child {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.65;
}

.mdos-meaning strong {
  color: var(--white);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.88);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.work-video-card {
  width: min(100%, 290px);
  margin: 0;
  justify-self: end;
}

.work-video-frame {
  padding: 7px;
  background: linear-gradient(145deg, var(--orange), #2a2b2f 55%);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.work-video-frame video {
  width: 100%;
  height: auto;
  aspect-ratio: 478 / 850;
  object-fit: cover;
  background: #070707;
  border-radius: 20px;
}

.work-video-card figcaption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}

.brand-experience {
  margin-top: 72px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-experience > p:first-child {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  font-weight: 700;
}

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

.brand-list span {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 16px;
  color: var(--ink);
  background: linear-gradient(145deg, #ffffff, #e8eaed);
  border: 1px solid rgba(241, 90, 36, 0.28);
  border-top: 4px solid var(--orange);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-size: 1.05rem;
  font-weight: 900;
}

.legal-note {
  max-width: 850px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 86px;
  align-items: center;
}

.coverage-card {
  padding: 44px;
  color: var(--white);
  background: var(--orange);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.coverage-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coverage-place {
  margin: 14px 0 20px;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.coverage-card > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
}

.coverage-content h2 {
  max-width: 650px;
}

.coverage-list {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.coverage-list > div {
  position: relative;
  padding-left: 38px;
}

.coverage-dot {
  position: absolute;
  top: 7px;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border: 4px solid #ffd8c9;
  border-radius: 50%;
}

.coverage-list h3 {
  margin: 0 0 3px;
  font-size: 1.1rem;
}

.coverage-list p {
  margin: 0;
  color: var(--gray);
}

.process-section {
  padding-top: 0;
}

.compact-heading {
  margin-bottom: 38px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-grid li {
  display: flex;
  gap: 18px;
  min-height: 185px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-grid li > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.process-grid h3 {
  margin: 3px 0 8px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.process-grid p {
  margin: 0;
  color: var(--gray);
}

.contact-section {
  color: var(--white);
  background: #222326;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 78px;
  align-items: start;
}

.contact-intro h2 {
  margin-top: 12px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.05rem;
}

.contact-intro > .reservation-note {
  margin-top: 24px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--orange);
  border-radius: 0 10px 10px 0;
}

.reservation-note a {
  color: var(--white);
  font-weight: 800;
}

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

.contact-details a {
  width: fit-content;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.contact-details a span {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details a:hover {
  color: #ff936b;
}

.contact-form {
  padding: 36px;
  color: var(--ink);
  background: var(--white);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

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

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fafafa;
  border: 1px solid #c9ccd1;
  border-radius: 10px;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(241, 90, 36, 0.18);
}

.field [aria-invalid="true"] {
  border-color: #b42318;
}

.field-help,
.form-note {
  margin: 6px 0 0;
  color: var(--gray);
  font-size: 0.78rem;
}

.consent-field {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  margin: 4px 0 22px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  cursor: pointer;
}

.consent-field input {
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.consent-field a {
  color: var(--orange-dark);
  font-weight: 800;
  text-underline-offset: 3px;
}

.button-submit {
  width: 100%;
  min-height: 58px;
  border-radius: 12px;
  font-size: 1rem;
}

.form-status {
  display: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  color: #8a1c13;
  background: #fff0ee;
  border-left: 4px solid #b42318;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-status.visible {
  display: block;
}

.site-footer {
  padding: 64px 0 24px;
  color: rgba(255, 255, 255, 0.68);
  background: #0b0b0c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
}

.footer-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  background: transparent;
}

.footer-grid p {
  max-width: 350px;
  margin: 18px 0 0;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-grid a:hover {
  color: #ff936b;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
}

.floating-contact svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Home page direction: navigation and logo live inside the hero image. */
.home-body .site-header {
  position: absolute;
  right: 0;
  left: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 9, 10, 0.78), rgba(8, 9, 10, 0));
  border-bottom: 0;
  backdrop-filter: none;
}

.home-body .brand {
  color: var(--white);
}

.home-body .brand img {
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.36));
}

.home-body .brand-name,
.home-body .main-nav a {
  color: var(--white);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.home-body .main-nav {
  gap: 20px;
}

.home-body .main-nav > a:not(.button):hover {
  color: #ffb295;
}

.home-body .menu-toggle span:not(.sr-only) {
  background: var(--white);
}

.home-body .hero {
  min-height: 640px;
}

.home-body .hero-content {
  padding-block: 138px 76px;
}

.home-body .hero h1 {
  max-width: 790px;
  font-size: clamp(2.75rem, 5.8vw, 5rem);
}

.home-body .hero-copy {
  max-width: 720px;
  color: var(--white);
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
}

.service-scope {
  margin-top: 30px;
  padding: 26px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.service-scope > p {
  margin: 0 0 16px;
  font-weight: 900;
}

.service-scope ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-scope li {
  position: relative;
  padding-left: 22px;
  color: var(--gray);
  font-size: 0.94rem;
}

.service-scope li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.rates-section {
  background: var(--gray-light);
}

.rates-heading {
  max-width: 880px;
}

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

.rate-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(15, 18, 22, 0.06);
}

.rate-card-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.rate-label {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rate-card-dark .rate-label {
  color: #ff936b;
}

.rate-price {
  margin: 18px 0 14px;
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.05em;
}

.rate-price span {
  display: block;
  margin-bottom: 8px;
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rate-card > p:last-child {
  margin: 0;
  color: var(--gray);
}

.rate-card-dark > p:last-child,
.rate-card-dark .rate-price span {
  color: rgba(255, 255, 255, 0.62);
}

.rates-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: 24px 28px;
  background: #fff7f3;
  border-left: 4px solid var(--orange);
  border-radius: 10px;
}

.rates-note p {
  max-width: 780px;
  margin: 0;
  color: var(--gray);
}

.contact-whatsapp {
  width: fit-content;
  margin-top: 22px;
}

.contact-intro > .office-note {
  margin-top: 18px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 0.94rem;
}

.tender-section {
  background: var(--gray-light);
}

.tender-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 76px;
  align-items: start;
}

.tender-intro {
  position: sticky;
  top: 40px;
}

.tender-intro h2 {
  margin: 10px 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.tender-intro > p:not(.eyebrow) {
  color: var(--gray);
  font-size: 1.05rem;
}

.tender-check-list {
  margin-top: 30px;
}

.tender-check-list li {
  color: var(--ink-soft);
}

.tender-form {
  box-shadow: 0 18px 54px rgba(15, 18, 22, 0.1);
}

.file-field input[type="file"] {
  padding: 10px;
  background: #fafafa;
  cursor: pointer;
}

.file-field input[type="file"]::file-selector-button {
  min-height: 38px;
  margin-right: 12px;
  padding: 8px 14px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.form-status.info {
  color: #165c32;
  background: #ecf9f0;
  border-left-color: #1fa855;
}

@media (max-width: 1120px) and (min-width: 981px) {
  .home-body .brand-name {
    font-size: 0.62rem;
  }

  .home-body .brand-slogan {
    font-size: 0.58rem;
  }

  .home-body .main-nav {
    gap: 17px;
  }
}

/* Legal pages */
.legal-body {
  background: #f7f7f7;
}

.legal-header .main-nav {
  gap: 18px;
}

.legal-hero {
  padding: 88px 0 64px;
  color: var(--white);
  background: var(--ink);
}

.legal-hero .container {
  max-width: 900px;
  margin-inline: auto;
}

.legal-hero h1 {
  max-width: 790px;
}

.legal-hero p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.legal-content {
  max-width: 900px;
  margin: 42px auto 90px;
  padding: 50px clamp(24px, 5vw, 64px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(15, 18, 22, 0.06);
}

.legal-content h2 {
  margin: 42px 0 10px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #4f545c;
}

.legal-content a {
  color: var(--orange-dark);
  font-weight: 700;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-callout {
  margin-top: 38px;
  padding: 22px;
  background: #fff4ef;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
}

.policy-document-page {
  max-width: 1180px;
}

.policy-intro {
  margin-top: 0;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.policy-pdf {
  width: 100%;
  height: min(78vh, 980px);
  min-height: 640px;
  border: 1px solid #d7d7d7;
  border-radius: 16px;
  background: #f7f7f7;
}

.legal-footer-links {
  gap: 20px;
}

@media (max-width: 720px) {
  .policy-actions .button {
    width: 100%;
  }

  .policy-pdf {
    min-height: 72vh;
  }

  .legal-footer-links {
    align-items: flex-start;
  }
}

.legal-callout p {
  margin: 0;
}

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

  .main-nav {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 20px 40px;
    background: var(--white);
    overflow-y: auto;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a {
    min-height: 56px;
    display: flex;
    align-items: center;
    padding: 10px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .main-nav .button {
    justify-content: center;
    margin-top: 18px;
    border-bottom: 0;
  }

  .legal-header .main-nav {
    position: static;
    display: flex;
    width: auto;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    overflow: visible;
  }

  .legal-header .main-nav > a {
    min-height: 44px;
    padding: 8px 12px;
    border: 0;
    font-size: 0.9rem;
  }

  .legal-header .main-nav .button {
    margin-top: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .experience-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .work-video-card {
    justify-self: center;
  }

  .coverage-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
  }

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

  .process-grid li {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    height: 72px;
  }

  .brand {
    gap: 8px;
    width: auto;
    height: 58px;
  }

  .brand img {
    width: auto;
    max-width: 74px;
    height: 42px;
  }

  .brand-name {
    font-size: 0.54rem;
    letter-spacing: 0;
  }

  .brand-slogan {
    font-size: 0.5rem;
    letter-spacing: 0.045em;
  }

  .main-nav {
    top: 72px;
  }

  .legal-header .main-nav > a:first-child {
    display: flex;
  }

  .legal-header .main-nav .button {
    display: none;
  }

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

  .hero-media {
    background-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(8, 9, 10, 0.88) 4%, rgba(8, 9, 10, 0.68) 44%, rgba(8, 9, 10, 0.18) 78%, rgba(8, 9, 10, 0.05) 100%);
  }

  .hero-content {
    padding-block: 52px 42px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .trust-item {
    min-height: 112px;
    padding: 20px 16px;
  }

  .trust-item strong {
    font-size: 1.05rem;
  }

  .section {
    padding-block: 76px;
  }

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

  .section-heading h2,
  .experience-content h2,
  .coverage-content h2,
  .contact-intro h2,
  .legal-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .service-grid,
  .brand-list,
  .coverage-layout,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card h3 {
    margin-top: 26px;
  }

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

  .experience-layout {
    gap: 38px;
  }

  .mdos-meaning {
    margin-top: 48px;
    padding: 28px 24px 30px;
  }

  .work-video-card {
    width: min(100%, 300px);
    justify-self: center;
  }

  .brand-experience {
    margin-top: 52px;
  }

  .coverage-card {
    padding: 32px 28px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
  }

  .floating-contact span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .legal-hero {
    padding: 68px 0 48px;
  }

  .legal-content {
    margin-top: 24px;
    padding: 30px 22px;
    border-radius: 14px;
  }
}

@media (max-width: 980px) {
  .home-body .main-nav {
    background: var(--white);
  }

  .home-body .main-nav.open a {
    color: var(--ink-soft);
    text-shadow: none;
  }

  .home-body .main-nav.open .button {
    color: var(--white);
  }

  .rate-grid,
  .tender-layout {
    grid-template-columns: 1fr;
  }

  .tender-layout {
    gap: 44px;
  }

  .tender-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .home-body .hero {
    min-height: 720px;
  }

  .home-body .hero-content {
    padding-block: 128px 46px;
  }

  .home-body .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.75rem);
  }

  .home-body .brand-name {
    max-width: 180px;
    white-space: normal;
  }

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

  .rate-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .rates-note {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .contact-whatsapp {
    width: 100%;
  }

  .tender-intro h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
