:root {
  --blue: #075cff;
  --blue-dark: #0644c9;
  --ink: #08111f;
  --muted: #5b6675;
  --line: #dce5f2;
  --soft: #f3f7fc;
  --white: #fff;
  --green: #11945a;
  --amber: #ef7b18;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(8, 17, 31, .10);
  --font-main: "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-family: var(--font-main);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-main);
  line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 14px; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.icon { display: inline-flex; width: 20px; height: 20px; flex: 0 0 auto; }
.icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { color: #fff; background: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-dark { color: #fff; background: #07111d; border-color: rgba(255,255,255,.22); }
.btn-ghost { border-color: var(--line); background: #fff; }
.btn-small { min-height: 36px; padding: 0 14px; font-size: 14px; background: var(--blue); color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; letter-spacing: 0; }
.brand-logo img {
  display: block;
  width: clamp(150px, 13vw, 188px);
  height: auto;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 50%;
}
.brand-text { font-size: 22px; }
.brand-text span { color: var(--blue); }
.main-nav ul { display: flex; align-items: center; justify-content: center; gap: 28px; list-style: none; padding: 0; margin: 0; }
.main-nav a { font-size: 14px; font-weight: 700; color: #172235; }
.main-nav a:hover { color: var(--blue); }
.header-contact { display: grid; gap: 2px; font-size: 13px; color: #172235; }
.header-contact a, .header-contact span { display: inline-flex; align-items: center; gap: 7px; }
.header-contact .icon { width: 16px; height: 16px; color: var(--blue); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; }

.hero { background: #08111d; color: #fff; overflow: hidden; }
.hero-grid { min-height: 430px; display: grid; grid-template-columns: 1fr 1.25fr; align-items: stretch; }
.hero-copy { padding: 48px 36px 44px 0; display: flex; flex-direction: column; justify-content: center; }
.hero h1 { margin: 0 0 18px; max-width: 620px; font-size: 46px; line-height: 1.08; letter-spacing: 0; }
.hero-services { color: #d7dfec; font-size: 19px; }
.hero-location { display: inline-flex; align-items: center; gap: 10px; color: #dbe7ff; font-size: 17px; margin-top: 8px; }
.hero-location .icon { color: var(--blue); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 24px 0 22px; }
.hero-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; max-width: 610px; }
.hero-points span { display: inline-flex; align-items: center; gap: 7px; color: #d9e4f6; font-size: 13px; }
.hero-points .icon { color: #2a7dff; width: 18px; height: 18px; }
.hero-media { min-height: 430px; margin-right: calc((100vw - min(1180px, calc(100vw - 48px))) / -2); position: relative; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #08111d 0%, rgba(8,17,29,.25) 30%, rgba(8,17,29,.10) 100%); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.section { padding: 44px 0; }
.section-tight { padding-top: 16px; }
.section-title { margin: 0 0 24px; text-align: center; font-size: 30px; line-height: 1.2; letter-spacing: 0; }
.section-title::after { content: ""; display: block; width: 48px; height: 3px; margin: 10px auto 0; background: var(--blue); border-radius: 3px; }
.section-heading-row { display: flex; align-items: center; justify-content: center; position: relative; }
.section-heading-row > a { position: absolute; right: 0; top: 8px; display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 700; }

.service-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; }
.service-card {
  min-height: 238px;
  padding: 10px 10px 18px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
}
.service-card-media {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid #dbe7f8;
  background: #eef4ff;
}
.service-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card h3 { margin: 0 0 10px; font-size: 16px; line-height: 1.25; }
.service-card p { color: var(--muted); font-size: 13px; margin: 0; }

.master-panel {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 230px;
  align-items: center;
  gap: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(90deg, #fff 0%, #f7fbff 100%);
}
.master-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
}
.eyebrow { color: var(--blue); font-weight: 800; margin-bottom: 6px; }
.master-copy h2 { margin: 0; font-size: 31px; line-height: 1.2; letter-spacing: 0; }
.master-copy h2 span { display: block; color: var(--blue); }
.lead { color: var(--blue); font-weight: 800; font-size: 18px; margin-top: 12px; }
.trust-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.trust-row span { display: grid; justify-items: center; gap: 7px; text-align: center; color: #1d2a3c; font-size: 12px; }
.trust-row .icon { color: var(--blue); width: 28px; height: 28px; }
.master-btn { justify-self: center; }

.works-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 14px; }
.work-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.work-card img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.work-card div { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 10px; }
.work-card h3 { margin: 0; font-size: 13px; line-height: 1.2; }
.work-card .icon { width: 22px; height: 22px; color: var(--blue); }

.shop-preview { padding-top: 16px; }
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.category-card {
  min-height: 178px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  position: relative;
  overflow: hidden;
}
.category-card-copy { min-width: 0; position: relative; z-index: 1; }
.category-card h3 { margin: 0 0 6px; font-size: 21px; }
.category-card p { color: var(--muted); max-width: 230px; min-height: 45px; }
.category-card strong { display: block; margin-bottom: 10px; font-size: 18px; }
.category-card-image {
  display: block;
  width: 128px;
  height: 136px;
  max-width: 100%;
  justify-self: end;
  align-self: end;
  object-fit: contain;
}
.benefit-strip {
  margin-top: 18px;
  min-height: 42px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  background: var(--soft);
  border-radius: var(--radius);
  color: #172235;
  font-size: 13px;
}
.benefit-strip span { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-align: center; }
.benefit-strip .icon { width: 18px; height: 18px; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.product-image { display: grid; place-items: center; min-height: 148px; margin-bottom: 12px; background: #f7f9fc; border-radius: var(--radius); }
.product-image img { max-height: 140px; width: auto; object-fit: contain; }
.product-card h3 { margin: 0 0 8px; font-size: 16px; line-height: 1.25; }
.product-card p { color: var(--muted); font-size: 13px; flex: 1; }
.product-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 10px; }
.product-card-bottom strong { font-size: 17px; }
.product-card-placeholder > .icon { width: 80px; height: 80px; color: var(--blue); margin: 22px auto; }

.request-section { padding: 26px 0 0; }
.request-panel {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius) var(--radius) 0 0;
}
.request-panel h2 { margin: 0 0 8px; font-size: 28px; line-height: 1.15; }
.request-panel p { color: #dce8ff; margin: 0; }
.request-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1.7fr auto;
  gap: 12px;
  align-items: end;
}
.request-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; }
.request-form input[type="text"], .request-form input[type="tel"] {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  font: inherit;
}
.request-privacy {
  grid-column: 1 / 4;
  display: flex !important;
  align-items: center;
  gap: 8px !important;
  color: #edf4ff;
  font-weight: 500 !important;
}
.request-privacy input { width: 16px; height: 16px; }
.request-form button { grid-column: 4; grid-row: 1 / span 2; align-self: center; }

.site-footer { background: #07111d; color: #c9d4e5; padding: 34px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr .8fr; gap: 36px; }
.site-footer h3 { margin: 0 0 10px; color: #fff; font-size: 16px; }
.site-footer a, .site-footer span { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.brand-footer { color: #fff; margin-bottom: 12px; }
.brand-footer.brand-logo {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  background: #fff;
  border-radius: 8px;
}
.brand-footer.brand-logo img { width: 178px; }
.messengers { display: flex; gap: 12px; }
.messengers a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: #123159; color: #fff; font-weight: 800; margin: 0; }
.messengers a:nth-child(2) { background: var(--green); }
.messengers a:nth-child(3) { background: #456995; }

.page-main, .shop-main { padding: 48px 0; background: #fff; }
.content-narrow { max-width: 900px; }
.content-page h1, .woocommerce-products-header__title { margin: 0 0 20px; font-size: 38px; line-height: 1.15; letter-spacing: 0; }
.content-page { font-size: 18px; color: #172235; }

.woocommerce ul.products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin: 24px 0; padding: 0; }
.woocommerce ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 16px !important;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.woocommerce ul.products li.product a img { height: 180px; object-fit: contain; background: #f7f9fc; border-radius: var(--radius); padding: 12px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--ink); font-size: 16px; line-height: 1.3; min-height: 42px; }
.woocommerce ul.products li.product .price { color: var(--ink); font-weight: 800; font-size: 18px; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit {
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 800;
}
.woocommerce div.product div.images img { background: #f7f9fc; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.woocommerce div.product .product_title { font-size: 34px; line-height: 1.15; letter-spacing: 0; }
.gp24-product-specs { width: 100%; border-collapse: collapse; margin: 16px 0; }
.gp24-product-specs th, .gp24-product-specs td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.gp24-product-specs th { width: 34%; background: var(--soft); }
.gp24-note { color: var(--muted); font-size: 14px; }
.gp24-qr-payment { margin: 24px 0; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.gp24-qr-payment__image { max-width: 260px; background: #fff; padding: 12px; border-radius: var(--radius); }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: auto auto 1fr auto; }
  .main-nav { order: 5; grid-column: 1 / -1; display: none; }
  .nav-toggle { display: block; order: 2; }
  .nav-open .main-nav { display: block; padding-bottom: 16px; }
  .main-nav ul { justify-content: flex-start; flex-wrap: wrap; }
  .login-link { display: none; }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .master-panel { grid-template-columns: 260px 1fr; }
  .master-btn { grid-column: 2; justify-self: start; }
  .product-grid, .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .works-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 64px; grid-template-columns: auto auto 1fr; gap: 12px; }
  .brand-logo img { width: 148px; }
  .header-contact, .header-cta { display: none; }
  .main-nav ul { display: grid; gap: 12px; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 36px 0 26px; }
  .hero h1 { font-size: 34px; }
  .hero-services { font-size: 16px; }
  .hero-media { min-height: 240px; margin: 0 -14px; }
  .hero-media::after { background: linear-gradient(0deg, #08111d 0%, rgba(8,17,29,.05) 45%); }
  .hero-points { grid-template-columns: 1fr; gap: 9px; }
  .section { padding: 34px 0; }
  .section-title { font-size: 26px; }
  .section-heading-row { display: block; }
  .section-heading-row > a { position: static; justify-content: center; margin: -8px 0 18px; }
  .service-grid, .category-grid, .product-grid, .woocommerce ul.products { grid-template-columns: 1fr; }
  .category-card { grid-template-columns: minmax(0, 1fr) 118px; }
  .category-card-image { width: 118px; height: 126px; }
  .works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .service-card {
    min-height: 0;
    grid-template-columns: 128px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    text-align: left;
    align-items: center;
    padding: 10px 14px 10px 10px;
  }
  .service-card-media {
    grid-row: 1 / span 2;
    margin-bottom: 0;
    aspect-ratio: 1.25 / 1;
  }
  .service-card h3 { margin-bottom: 6px; }
  .master-panel { grid-template-columns: 1fr; }
  .master-photo { aspect-ratio: 3 / 4; }
  .master-copy h2 { font-size: 25px; }
  .trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .master-btn { grid-column: auto; justify-self: stretch; }
  .benefit-strip { grid-template-columns: 1fr; align-items: start; }
  .request-panel { grid-template-columns: 1fr; }
  .request-form { grid-template-columns: 1fr; }
  .request-privacy, .request-form button { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 460px) {
  .service-card { grid-template-columns: 104px minmax(0, 1fr); column-gap: 12px; }
  .service-card h3 { font-size: 15px; }
  .service-card p { font-size: 12px; }
  .category-card { grid-template-columns: minmax(0, 1fr) 92px; padding: 18px; }
  .category-card h3 { font-size: 19px; }
  .category-card p { max-width: none; }
  .category-card-image { width: 92px; height: 110px; }
  .works-grid { grid-template-columns: 1fr; }
}
