:root {
  --ink: #0b0d10;
  --ink-soft: #15181d;
  --panel: #1d2026;
  --silver-50: #f5f6f7;
  --silver-100: #e7e9ec;
  --silver-300: #b8bdc5;
  --silver-500: #818894;
  --red: #c51622;
  --red-bright: #e21f2d;
  --white: #ffffff;
  --line: rgba(17, 21, 27, 0.12);
  --font-display: "Barlow Condensed", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(9, 12, 16, 0.13);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--silver-50);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--red);
}

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

.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;
}

.service-strip {
  color: var(--silver-100);
  background: var(--red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-strip__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.service-strip a {
  color: inherit;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 13, 16, 0.94);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand__roc {
  color: #d9dce1;
  text-shadow: 0 1px 0 #fff, 0 -1px 0 #656b74;
}

.brand__sms {
  color: var(--red-bright);
}

.brand__sub {
  position: absolute;
  top: calc(100% + 5px);
  left: 1px;
  color: var(--silver-300);
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.main-nav a,
.main-nav button {
  color: var(--silver-100);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--red-bright);
}

.nav-cta {
  padding: 12px 19px;
  border: 1px solid var(--red-bright);
  background: transparent;
  cursor: pointer;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--red);
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(9, 11, 14, 0.98), rgba(17, 20, 25, 0.95) 57%, rgba(21, 24, 30, 0.86)),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.15;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero__glow {
  position: absolute;
  top: 7%;
  right: -18%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: rgba(197, 22, 34, 0.22);
  filter: blur(95px);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 760px;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 70px;
  padding-block: 82px;
}

.eyebrow {
  display: flex;
  margin: 0 0 19px;
  align-items: center;
  gap: 11px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: #ff626c;
}

.hero h1,
.section h2,
.craft-banner h2,
.commitments h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.97;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(4.4rem, 8.3vw, 7.1rem);
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px var(--silver-300);
}

.hero__lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: #c9cdd3;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--red);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-bright);
}

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

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--silver-300);
  background: rgba(255, 255, 255, 0.09);
}

.button--wide {
  width: 100%;
}

.trust-list {
  display: grid;
  margin: 46px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list strong {
  color: var(--silver-50);
  font-size: 0.9rem;
}

.trust-list span {
  color: var(--silver-500);
  font-size: 0.75rem;
}

.hero__visual {
  position: relative;
  min-height: 515px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 40px 30px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink-soft);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(155deg, rgba(8, 10, 13, 0.08) 20%, rgba(8, 10, 13, 0.78) 100%);
}

.hero-photo::before {
  position: absolute;
  top: 10%;
  right: 8%;
  z-index: 2;
  width: 3px;
  height: 28%;
  background: var(--red);
  content: "";
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.86) contrast(1.05);
}

.hero-photo figcaption {
  position: absolute;
  right: 20px;
  bottom: 17px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.62rem;
}

.hero-photo figcaption a {
  color: inherit;
}

.hero-card {
  position: absolute;
  right: -24px;
  bottom: 0;
  display: flex;
  width: min(355px, 84%);
  min-height: 118px;
  align-items: center;
  gap: 20px;
  padding: 23px 28px;
  color: var(--ink);
  background: var(--silver-50);
  box-shadow: var(--shadow);
}

.hero-card__index {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 2.65rem;
  font-weight: 700;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-size: 0.9rem;
}

.hero-card div span {
  margin-top: 4px;
  color: #6d737c;
  font-size: 0.72rem;
}

.section {
  padding-block: 118px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.contact h2,
.commitments h2,
.craft-banner h2 {
  font-size: clamp(2.9rem, 5.2vw, 4.7rem);
}

.section-heading > p {
  margin: 0 0 3px;
  color: #626873;
}

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

.service-card {
  position: relative;
  min-height: 335px;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 15px 50px rgba(21, 25, 31, 0.04);
}

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

.service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  content: "";
  transition: width 200ms ease;
}

.service-card:hover::before {
  width: 100%;
}

.service-card__number {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 52px 0 14px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: #737985;
  font-size: 0.92rem;
}

.service-card--featured p {
  color: #b9bec7;
}

.service-card a {
  display: inline-block;
  margin-top: 26px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.security-feature {
  display: grid;
  min-height: 390px;
  margin: 22px 0 0;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.security-feature > img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  filter: saturate(0.65) contrast(1.08);
}

.security-feature figcaption {
  display: flex;
  padding: 50px;
  flex-direction: column;
  justify-content: center;
}

.security-feature h3 {
  max-width: 540px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.security-feature figcaption > p:not(.eyebrow) {
  max-width: 510px;
  margin: 22px 0 0;
  color: #b7bdc6;
  font-size: 0.9rem;
}

.security-feature small {
  margin-top: 28px;
  color: #7f8791;
  font-size: 0.62rem;
}

.security-feature small a {
  color: inherit;
}

.craft-banner {
  position: relative;
  overflow: hidden;
  padding-block: 94px;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(10, 12, 15, 0.98), rgba(18, 21, 26, 0.8)),
    url("https://images.pexels.com/photos/5846247/pexels-photo-5846247.jpeg?auto=compress&cs=tinysrgb&w=1800&h=1050&fit=crop") center 48% / cover,
    var(--ink);
}

.craft-credit {
  position: absolute;
  right: 20px;
  bottom: 10px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
}

.craft-credit a {
  color: inherit;
}

.team-section {
  background: #111419;
  color: var(--white);
}

.team-heading > p {
  color: #aeb4bd;
}

.team-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 265px;
  gap: 14px;
  margin-top: 58px;
}

.team-shot {
  position: relative;
  grid-column: span 5;
  margin: 0;
  overflow: hidden;
  background: #252930;
}

.team-shot--lead {
  grid-column: span 7;
  grid-row: span 2;
}

.team-shot--wide {
  grid-column: span 6;
}

.team-shot::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(5, 7, 9, 0.88) 100%);
  pointer-events: none;
}

.team-shot::before {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(10, 12, 15, 0.7);
  content: "ROCSMS94";
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.team-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.team-shot:hover img {
  transform: scale(1.025);
  filter: contrast(1.04);
}

.team-shot figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 13px;
  align-items: end;
}

.team-shot figcaption > span {
  grid-row: span 2;
  color: var(--red-bright);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.team-shot figcaption strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.team-shot--lead figcaption strong {
  font-size: 2rem;
}

.team-shot figcaption small {
  margin-top: 5px;
  color: #b5bbc4;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-disclosure {
  margin: 16px 0 0;
  color: #858c96;
  font-size: 0.72rem;
  text-align: right;
}

.craft-banner::after {
  position: absolute;
  top: -50%;
  right: 9%;
  width: 190px;
  height: 220%;
  content: "";
  background: rgba(197, 22, 34, 0.45);
  transform: rotate(18deg);
  filter: blur(1px);
}

.craft-banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 100px;
  align-items: end;
}

.craft-banner__inner > p {
  margin: 0;
  color: #bdc2ca;
}

.pricing {
  background: var(--white);
}

.section-heading--pricing {
  margin-bottom: 55px;
}

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

.pricing-panel {
  position: sticky;
  top: 120px;
  color: var(--white);
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.pricing-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  padding: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-panel__kicker {
  color: var(--silver-500);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-panel h3 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-panel__tag {
  padding: 7px 10px;
  color: #ff8a92;
  border: 1px solid rgba(226, 31, 45, 0.5);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.75fr;
  gap: 12px;
  align-items: center;
  padding: 21px 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-row--header {
  padding-block: 13px;
  color: var(--silver-500);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-row strong {
  font-size: 0.9rem;
}

.price-row span:not(:first-child) {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}

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

.price-item {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, padding 160ms ease;
}

.price-item:hover {
  padding-left: 30px;
  background: var(--silver-50);
}

.price-item span,
.price-item small {
  display: block;
}

.price-item span {
  font-size: 0.93rem;
  font-weight: 700;
}

.price-item small {
  margin-top: 3px;
  color: #777d87;
}

.price-item strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.pricing-note {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  margin-top: 40px;
  padding: 25px 28px;
  border-left: 3px solid var(--red);
  background: var(--silver-50);
}

.pricing-note p {
  margin: 0;
  color: #656b74;
}

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

.commitments__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 110px;
}

.commitments__intro > p:last-child {
  max-width: 470px;
  margin-top: 25px;
  color: #aeb4bd;
}

.steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.steps > li > span {
  color: var(--red-bright);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.steps strong {
  font-size: 1rem;
}

.steps p {
  margin: 4px 0 0;
  color: #aeb4bd;
  font-size: 0.88rem;
}

.contact {
  background: var(--silver-100);
}

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

.contact__copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 25px 0 0;
  color: #636a74;
}

.contact__details {
  display: grid;
  gap: 1px;
  margin-top: 40px;
  background: rgba(11, 13, 16, 0.14);
}

.contact__details > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 17px;
  background: var(--silver-100);
}

.contact__details span {
  color: #777d86;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact__details strong {
  font-size: 0.82rem;
}

.contact__details a {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.request-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.request-card {
  position: relative;
  min-height: 290px;
  padding: 32px;
  border: 1px solid rgba(11, 13, 16, 0.14);
  color: var(--ink);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 55px rgba(17, 21, 27, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.request-card:hover,
.request-card:focus-visible {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(17, 21, 27, 0.13);
}

.request-card--urgent {
  color: var(--white);
  border-color: var(--ink-soft);
  background: var(--ink-soft);
}

.request-card__label {
  display: block;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-card > strong {
  display: block;
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.request-card p {
  margin: 16px 0 0;
  color: #747b85;
  font-size: 0.88rem;
}

.request-card--urgent p {
  color: #b7bdc6;
}

.request-card__action {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
}

.request-card__action span {
  font-size: 1.4rem;
}

.whatsapp-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 18px;
  padding: 20px 22px;
  border-left: 3px solid #1f9d55;
  background: rgba(255, 255, 255, 0.58);
}

.whatsapp-note > span {
  color: #167843;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.whatsapp-note p {
  margin: 0;
  color: #676e78;
  font-size: 0.8rem;
}

.request-dialog {
  width: min(870px, calc(100% - 30px));
  max-height: min(880px, calc(100vh - 30px));
  overflow: auto;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
}

.request-dialog::backdrop {
  background: rgba(5, 7, 9, 0.84);
  backdrop-filter: blur(6px);
}

.request-wizard {
  margin: 0;
}

.wizard-header {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 34px;
  color: var(--white);
  background: var(--ink);
}

.wizard-kicker {
  color: var(--red-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.wizard-header h2 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  text-transform: uppercase;
}

.dialog-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #eef0f2;
}

.wizard-progress span {
  padding: 12px 18px;
  border-bottom: 3px solid transparent;
  color: #7c838d;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.wizard-progress span.is-active {
  color: var(--ink);
  border-color: var(--red);
  background: var(--white);
}

.wizard-body {
  padding: 34px;
}

.wizard-step[hidden],
.project-only[hidden] {
  display: none;
}

.wizard-question {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

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

.service-option {
  position: relative;
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid #d9dce1;
  background: #fafafa;
  cursor: pointer;
}

.service-option:hover {
  border-color: #aeb4bc;
}

.service-option:has(input:checked) {
  color: var(--white);
  border-color: var(--red);
  background: var(--ink-soft);
  box-shadow: inset 4px 0 0 var(--red);
}

.service-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.service-option span {
  font-size: 0.86rem;
  font-weight: 700;
}

.service-price {
  margin-top: 14px;
  padding: 14px 17px;
  border-left: 3px solid var(--red);
  color: #5e6570;
  background: #f1f2f4;
  font-size: 0.82rem;
}

.service-price strong {
  color: var(--ink);
}

.wizard-step > label,
.project-only > label {
  display: grid;
  gap: 7px;
  margin-top: 16px;
  color: #454a52;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wizard-step input:not([type="radio"]):not([type="checkbox"]),
.wizard-step select,
.wizard-step textarea {
  width: 100%;
  border: 1px solid #d8dbe0;
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: #fafafa;
  font-size: 0.92rem;
  text-transform: none;
}

.wizard-step input:not([type="radio"]):not([type="checkbox"]),
.wizard-step select {
  min-height: 49px;
  padding: 0 13px;
}

.wizard-step textarea {
  resize: vertical;
  min-height: 95px;
  padding: 13px;
}

.wizard-step input:focus,
.wizard-step select:focus,
.wizard-step textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(197, 22, 34, 0.11);
}

.field-row--three {
  grid-template-columns: 1.5fr 0.65fr 1fr;
}

.attachment-guide {
  margin-top: 19px;
  padding: 17px 19px;
  border-left: 3px solid var(--red);
  background: #f1f2f4;
}

.attachment-guide strong {
  font-size: 0.8rem;
}

.attachment-guide p {
  margin: 4px 0 0;
  color: #666d77;
  font-size: 0.8rem;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.wizard-actions--end {
  justify-content: flex-end;
}

.button--back {
  color: var(--ink);
  border-color: #cfd3d8;
  background: var(--white);
}

.button--whatsapp {
  background: #147a46;
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
  background: #0f6539;
}

.request-summary {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid #dfe2e6;
  background: #f7f8f9;
}

.request-summary strong,
.request-summary span {
  display: block;
}

.request-summary strong {
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.request-summary span {
  margin-top: 5px;
  font-size: 0.84rem;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 19px;
  color: #656c76;
  font-size: 0.76rem;
  line-height: 1.45;
}

.consent-field input {
  width: 17px;
  height: 17px;
  accent-color: var(--red);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  flex-direction: column;
  background: #147a46;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(10, 61, 35, 0.32);
}

.floating-whatsapp span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-whatsapp strong {
  font-size: 0.78rem;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 42px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.quote-form label {
  display: grid;
  gap: 7px;
  color: #454a52;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d8dbe0;
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: #fafafa;
  font-size: 0.92rem;
  text-transform: none;
}

.quote-form input,
.quote-form select {
  min-height: 49px;
  padding: 0 13px;
}

.quote-form textarea {
  resize: vertical;
  min-height: 120px;
  padding: 13px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(197, 22, 34, 0.11);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #6c727b;
  font-size: 0.8rem;
}

.site-footer {
  color: var(--silver-300);
  background: #080a0c;
}

.footer__top {
  display: grid;
  min-height: 150px;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.brand--footer {
  width: fit-content;
}

.footer__top p {
  margin: 0;
  font-size: 0.85rem;
}

.footer__top > a:last-child {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.footer__bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #747b85;
  font-size: 0.72rem;
}

.footer__bottom address {
  margin: 0;
  font-style: normal;
  text-align: right;
}

.footer__bottom address a {
  color: inherit;
  text-underline-offset: 3px;
}

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

  .main-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    padding: 25px 20px 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: stretch;
    background: rgba(11, 13, 16, 0.99);
  }

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

  .main-nav a,
  .main-nav button {
    padding: 10px 0;
  }

  .main-nav .nav-cta {
    padding: 13px 16px;
    text-align: center;
  }

  .hero,
  .hero__grid {
    min-height: auto;
  }

  .hero__grid,
  .section-heading,
  .craft-banner__inner,
  .pricing-layout,
  .commitments__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 45px;
    padding-block: 80px 100px;
  }

  .hero__visual {
    min-height: 430px;
  }

  .section-heading,
  .craft-banner__inner,
  .commitments__grid,
  .contact__grid {
    gap: 42px;
  }

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

  .security-feature {
    grid-template-columns: 1fr;
  }

  .security-feature > img {
    min-height: 330px;
  }

  .team-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }

  .team-shot,
  .team-shot--lead,
  .team-shot--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .team-shot--lead {
    grid-column: 1 / -1;
  }

  .field-row--three {
    grid-template-columns: 1fr 1fr;
  }

  .service-card {
    min-height: 270px;
  }

  .craft-banner::after {
    opacity: 0.35;
  }

  .pricing-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .service-strip__inner {
    min-height: 38px;
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .service-strip__inner span[aria-hidden="true"],
  .service-strip__inner span:last-child {
    display: none;
  }

  .contact__details > div {
    align-items: flex-start;
  }

  .contact__details strong,
  .contact__details a {
    text-align: right;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand {
    font-size: 1.72rem;
  }

  .main-nav {
    inset-block-start: 74px;
  }

  .hero__grid {
    padding-block: 62px 80px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.5rem);
  }

  .hero__lead {
    font-size: 0.96rem;
  }

  .trust-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero__visual {
    min-height: 380px;
  }

  .hero-photo {
    inset: 0 0 52px;
  }

  .hero-card {
    right: -8px;
    width: 92%;
    min-height: 100px;
    padding: 18px 20px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading h2,
  .contact h2,
  .commitments h2,
  .craft-banner h2 {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .service-card {
    min-height: auto;
    padding: 28px;
  }

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

  .security-feature figcaption {
    padding: 34px 26px;
  }

  .team-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
    gap: 10px;
  }

  .team-shot--lead {
    grid-column: auto;
  }

  .team-shot figcaption,
  .team-shot--lead figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .team-shot--lead figcaption strong {
    font-size: 1.4rem;
  }

  .team-disclosure {
    text-align: left;
  }

  .craft-banner {
    padding-block: 74px;
  }

  .pricing-panel__head,
  .price-row {
    padding-inline: 20px;
  }

  .price-row {
    grid-template-columns: 1fr 0.55fr 0.75fr;
    gap: 8px;
  }

  .price-row--header {
    font-size: 0.6rem;
  }

  .price-row span:not(:first-child) {
    font-size: 1.2rem;
  }

  .price-item {
    align-items: flex-start;
    padding-inline: 5px;
  }

  .price-item:hover {
    padding-left: 5px;
  }

  .price-item strong {
    font-size: 1.35rem;
  }

  .pricing-note {
    grid-template-columns: 1fr;
  }

  .steps li {
    grid-template-columns: 45px 1fr;
  }

  .quote-form {
    padding: 27px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .field-row--three,
  .request-choices,
  .service-options {
    grid-template-columns: 1fr;
  }

  .request-card {
    min-height: 245px;
  }

  .whatsapp-note {
    grid-template-columns: 1fr;
  }

  .request-dialog {
    width: calc(100% - 14px);
    max-height: calc(100vh - 14px);
  }

  .wizard-header,
  .wizard-body {
    padding-inline: 20px;
  }

  .wizard-progress span {
    padding-inline: 7px;
    font-size: 0.64rem;
  }

  .wizard-actions {
    flex-direction: column-reverse;
  }

  .wizard-actions .button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .footer__top {
    padding-block: 42px;
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    padding-block: 22px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .footer__bottom address {
    text-align: left;
  }
}

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

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