* { box-sizing: border-box; }
:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: #090a0b;
  color: #f0f0ef;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100svh;
  margin: 0;
  padding: clamp(20px, 5vh, 64px) 16px;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse at 50% 0%, #25272b 0%, #101113 45%, #090a0b 80%);
}
.icon-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 21px; height: 21px; flex: 0 0 21px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.card {
  position: relative;
  isolation: isolate;
  width: min(100%, 512px);
  padding: 26px 28px 24px;
  border: 1px solid #383b40;
  border-radius: 24px;
  background: linear-gradient(145deg, #1a1c20 0%, #101113 50%, #111214 100%);
  box-shadow: 0 32px 100px #0008, inset 0 1px 0 #ffffff16;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(114deg, transparent 49%, #ffffff02 49.1%, #ffffff04 67%, transparent 67.1%);
  pointer-events: none;
  z-index: -1;
}
.identity { text-align: center; }
.logo { display: block; width: 112px; height: auto; margin: 0 auto 20px; }
.eyebrow { margin: 0 0 12px; font-size: .75rem; letter-spacing: .16em; color: #bfc2c7; line-height: 1.5; }
h1 { margin: 0; font-size: 2.2rem; line-height: 1.12; font-weight: 350; letter-spacing: -.04em; }
h1 strong { display: block; font-size: 3rem; font-weight: 640; letter-spacing: -.035em; }
.services { margin: 13px 0 0; font-size: .875rem; line-height: 1.65; color: #bdc1c7; }
.save-contact { margin-top: 25px; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid #fff; outline-offset: 5px; }
.save-button {
  min-height: 58px;
  width: 100%;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 12px;
  background: linear-gradient(115deg, #fff, #d7d9dd);
  color: #101113;
  font-size: 1rem;
  font-weight: 650;
  box-shadow: 0 5px 20px #0004;
  transition: filter .2s, transform .2s;
}
.save-button:hover { filter: brightness(1.09); transform: translateY(-1px); }
.hint { margin: 10px 0 0; text-align: center; font-size: .8125rem; line-height: 1.55; color: #aaaeb6; }
.actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 23px; }
.action {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 81px;
  padding: 15px 13px;
  border: 1px solid #3b3d42;
  border-radius: 12px;
  background: #ffffff03;
  transition: background .2s, border-color .2s;
}
.action:hover { border-color: #8b919a; background: #ffffff09; }
.action .icon { color: #d7dae0; }
.action span { min-width: 0; }
.action strong { display: block; font-size: .9375rem; font-weight: 580; line-height: 1.4; }
.action small { display: block; margin-top: 4px; font-size: .875rem; color: #aeb3bc; line-height: 1.35; overflow-wrap: anywhere; }
.location { display: flex; justify-content: center; gap: 11px; margin-top: 25px; color: #bfc3ca; }
.location .icon { margin-top: 2px; width: 18px; height: 18px; }
address { font-size: .875rem; line-height: 1.6; font-style: normal; }
.card-footer { margin-top: 23px; padding-top: 18px; text-align: center; border-top: 1px solid #303338; }
.card-footer p { margin: 0; font-size: .875rem; line-height: 1.6; color: #d7d9de; }
.card-footer nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; margin-top: 15px; font-size: .75rem; line-height: 1.5; color: #a5abb4; }
.card-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 400px) {
  body { padding: 12px 10px; }
  .card { padding: 22px 18px; border-radius: 20px; }
  .logo { width: 96px; margin-bottom: 17px; }
  h1 { font-size: 1.85rem; }
  h1 strong { font-size: 2.65rem; }
  .action { gap: 8px; padding: 14px 10px; }
  .action .icon { width: 18px; height: 18px; flex-basis: 18px; }
}
@media (max-width: 340px) { .actions { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .save-button, .action { transition: none; } }
