:root {
  color-scheme: light;
  --bg: #f6f6f4;
  --panel: #ffffff;
  --text: #151515;
  --muted: #666666;
  --line: #e7e7e4;
  --soft: #efefec;
  --accent: #ff5a1f;
  --graphite: #1f1f1f;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1220px, calc(100% - 32px));
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(231, 231, 228, .78);
  border-radius: 18px;
  background: rgba(246, 246, 244, .9);
  box-shadow: 0 14px 44px rgba(15, 23, 42, .08);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

main {
  padding-top: 74px;
}

.brand,
.top-nav,
.header-socials,
.hero-actions,
.button-row,
.site-footer,
.mobile-sticky {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.top-nav {
  gap: 20px;
}

.header-socials {
  gap: 8px;
  margin-left: auto;
}

.header-socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease;
}

.header-socials a:hover {
  border-color: rgba(255, 90, 31, .34);
  transform: translateY(-1px);
}

.header-socials img {
  display: block;
  width: 24px;
  height: 24px;
}

.top-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.top-nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 56px;
  align-items: center;
  min-height: 610px;
  padding: 68px 0 78px;
}

.editorial-note,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  margin: 0 0 18px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

p,
li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.lead {
  color: var(--text);
  font-size: 23px;
  font-weight: 700;
}

.hero-copy > p:not(.lead) {
  max-width: 720px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 18px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--graphite);
  color: #fff;
}

.button.primary:hover {
  background: #343434;
}

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

.button.light {
  border-color: rgba(255, 255, 255, .28);
  background: #fff;
  color: var(--accent);
}

.button.full {
  width: 100%;
}

.address-line {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.author-note {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  max-width: 620px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.author-note img {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
}

.author-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(21, 21, 21, .78) 100%),
    url("/img/technoshop-hero.jpg?v=20260814-1") center / cover no-repeat;
}

.hero-photo div {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: #fff;
}

.hero-photo span,
.hero-photo small {
  display: block;
  color: rgba(255, 255, 255, .76);
  font-weight: 800;
}

.hero-photo strong {
  display: block;
  margin: 7px 0;
  font-size: 42px;
  line-height: 1;
}

.hero-card,
.recommendation-card,
.contact-card,
.author-block,
.service-grid article,
.disclosure,
.final-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.hero-card {
  padding: 26px;
}

.hero-card-top span,
.papa-banner span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-card-top strong {
  display: block;
  font-size: 44px;
  line-height: 1;
}

.hero-card dl {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.hero-card dl div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-card dd {
  margin: 5px 0 0;
  color: var(--text);
  font-weight: 800;
}

.mini-map {
  min-height: 180px;
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .42) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .42) 1px, transparent 1px),
    radial-gradient(circle at 70% 38%, rgba(255, 90, 31, .3), transparent 22%),
    #deded8;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.mini-map span,
.mini-map strong {
  display: block;
}

.mini-map span {
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.mini-map strong {
  max-width: 220px;
  font-size: 24px;
  line-height: 1.15;
}

article {
  padding-bottom: 96px;
}

.article-block {
  max-width: 760px;
  padding: 76px 0 0;
}

.article-block > .button {
  margin-top: 8px;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 26px;
}

.clean-list li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.recommendation-card,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, .8fr);
  gap: 28px;
  align-items: center;
  margin-top: 110px;
  padding: 34px;
}

.recommendation-card .button-row,
.contact-card .button-row {
  grid-column: 1 / -1;
}

.facts-grid,
.contact-lines {
  display: grid;
  gap: 10px;
}

.facts-grid span,
.contact-lines span,
.contact-lines a,
.final-address span {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfbfa;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.button-row {
  flex-wrap: wrap;
  gap: 12px;
}

.scam-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 72px;
  padding: 26px 28px;
  border: 1px solid #2c2c2c;
  border-radius: 22px;
  background: #181818;
  color: #fff;
}

.scam-bridge span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scam-bridge h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 38px);
  color: #fff;
}

.scam-bridge p {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, .72);
}

.scam-bridge .button.primary {
  color: var(--text);
  background: #fff;
}

.papa-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 110px;
  padding: 42px;
  border-radius: 32px;
  background: var(--accent);
  color: #fff;
}

.papa-banner h2 {
  max-width: 760px;
  margin-bottom: 12px;
  color: #fff;
}

.papa-banner p,
.papa-banner span {
  color: rgba(255, 255, 255, .86);
}

.papa-banner.small {
  margin-top: 92px;
}

.disclosure {
  margin-top: 26px;
  padding: 22px 24px;
}

.disclosure p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.wide-block {
  padding-top: 88px;
}

.wide-block > h2 {
  max-width: 840px;
}

.service-line {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--text);
  font-weight: 800;
}

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

.service-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
}

.service-grid article {
  display: grid;
  align-content: start;
  min-height: 240px;
  padding: 24px;
}

.service-grid p {
  font-size: 16px;
}

.service-grid a,
.service-grid button {
  align-self: end;
  width: fit-content;
  margin-top: 18px;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.numbered {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.numbered div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.numbered strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.numbered p {
  margin-bottom: 0;
}

.author-block {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 24px;
  max-width: 900px;
  padding: 28px;
}

.avatar {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 24px;
  background: var(--graphite);
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}

.map-section {
  padding-top: 92px;
}

.map-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.map-head h2 {
  max-width: 800px;
  margin-bottom: 12px;
}

.map-head p:not(.section-kicker) {
  margin-bottom: 8px;
}

.map-head strong {
  color: var(--text);
}

.shop-socials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
  margin: 0 0 22px;
}

.shop-social {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 6px 14px;
  align-items: center;
  align-content: center;
  min-width: 0;
  min-height: 84px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.shop-social:hover {
  border-color: rgba(255, 90, 31, .36);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
  transform: translateY(-1px);
}

.shop-social-icon {
  display: block;
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: contain;
}

.shop-social span {
  display: grid;
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--graphite);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.shop-social.phone span {
  background: var(--accent);
}

.shop-social strong,
.shop-social small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-social strong {
  align-self: end;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
}

.shop-social small {
  grid-column: 2;
  align-self: start;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.map-frame {
  overflow: hidden;
  height: 450px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #e8e8e4;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-note {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 700;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.faq summary {
  color: var(--text);
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
}

.faq details p {
  margin: 12px 0 0;
}

.final-block {
  max-width: 980px;
  margin-top: 88px;
  padding: 42px;
}

.final-block h2 {
  max-width: 900px;
}

.final-address {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin: 28px 0 22px;
}

.final-address strong {
  font-size: 24px;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 96px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: max(18px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
}

.contact-modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, .54);
}

.modal-panel {
  position: relative;
  overflow: auto;
  width: min(680px, 100%);
  max-height: min(880px, calc(100vh - 36px));
  padding: 28px;
  border-radius: 28px;
  background: var(--panel);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.lead-form label,
.label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.field {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfbfa;
  color: var(--text);
}

textarea.field {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.contact-method-block {
  display: grid;
  gap: 8px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.choice-grid label {
  display: block;
}

.choice-grid input,
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.choice-grid span {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.choice-grid input:checked + span {
  border-color: var(--accent);
  color: var(--accent);
}

.form-error,
.form-success {
  padding: 13px 14px;
  border-radius: 14px;
  font-weight: 800;
}

.form-error {
  border: 1px solid rgba(255, 90, 31, .26);
  background: rgba(255, 90, 31, .08);
  color: #b8360c;
}

.form-success {
  border: 1px solid rgba(20, 160, 96, .24);
  background: rgba(20, 160, 96, .08);
  color: #087344;
}

.toast-container {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  z-index: 120;
  display: grid;
  width: min(370px, calc(100vw - 32px));
  gap: 10px;
  pointer-events: none;
}

.toast {
  position: relative;
  min-height: 54px;
  padding: 14px 46px 14px 16px;
  border-radius: 16px;
  background: var(--graphite);
  box-shadow: 0 22px 58px rgba(15, 23, 42, .22);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.4;
  pointer-events: auto;
  animation: toast-in .22s ease both;
}

.toast.error {
  background: #b8360c;
}

.toast.success {
  background: #087344;
}

.toast-close {
  position: absolute;
  top: 9px;
  right: 9px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.toast.is-leaving {
  animation: toast-out .18s ease both;
}

.mobile-sticky {
  position: fixed;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  z-index: 60;
  display: none;
  height: 64px;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 40px rgba(15, 23, 42, .14);
  backdrop-filter: blur(16px);
}

.mobile-sticky a {
  display: flex;
  flex: 1;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--graphite);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.mobile-sticky a:first-child {
  background: var(--accent);
}

body.has-modal {
  overflow: hidden;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateY(-6px) scale(.98);
  }
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .hero,
  .recommendation-card,
  .contact-card,
  .map-head,
  .scam-bridge,
  .papa-banner {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding: 48px 0 72px;
  }

  .hero-photo {
    min-height: 360px;
  }

  .recommendation-card,
  .contact-card,
  .papa-banner,
  .final-block {
    margin-top: 78px;
    padding: 26px;
  }

  .scam-bridge,
  .papa-banner,
  .map-head {
    display: grid;
    align-items: start;
  }

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

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

  .shop-socials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    width: min(100% - 24px, 1220px);
    top: 8px;
    gap: 10px;
    justify-content: flex-start;
    padding: 8px;
    border-radius: 16px;
  }

  main {
    padding-top: 64px;
  }

  .brand span {
    display: none;
  }

  .header-socials {
    gap: 6px;
  }

  .header-socials a {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .header-socials img {
    width: 23px;
    height: 23px;
  }

  .header-cta {
    display: none;
  }

  .section {
    width: min(100% - 24px, 1220px);
    min-width: 0;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-actions,
  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button,
  .button-row .button,
  .final-block .button {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 32px;
  }

  p,
  li {
    font-size: 17px;
  }

  .lead {
    font-size: 21px;
  }

  .article-block,
  .wide-block,
  .map-section {
    padding-top: 72px;
  }

  .author-note {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .author-note img {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .hero-photo {
    min-height: 320px;
    border-radius: 24px;
  }

  .hero-photo strong {
    font-size: 34px;
  }

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

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

  .service-grid article {
    min-height: auto;
  }

  .map-frame {
    height: 360px;
    border-radius: 24px;
  }

  .scam-bridge {
    margin-top: 64px;
    padding: 24px;
    border-radius: 24px;
  }

  .scam-bridge .button {
    width: 100%;
  }

  .shop-socials {
    grid-template-columns: 1fr;
  }

  .author-block {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    display: grid;
    padding-bottom: 104px;
  }

  .mobile-sticky {
    display: flex;
  }
}
