:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-2: #f1f4f9;
  --text: #18212f;
  --muted: #5d6b82;
  --line: #dbe2ec;
  --primary: #1d4ed8;
  --primary-dark: #183ea9;
  --accent: #eff6ff;
  --shadow: 0 12px 40px rgba(24, 33, 47, 0.08);
  --radius: 20px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.section {
  padding: 76px 0;
}

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

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(30px, 4vw, 40px);
  max-width: 13ch;
}

h2 {
  font-size: clamp(28px, 3.5vw, 38px);
}

.hero-title {
  display: block;
  font-size: clamp(32px, 4.2vw, 44px);
  max-width: 18ch;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 248, 251, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 226, 236, 0.85);
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 78px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
}

.brand-logo {
  width: clamp(220px, 28vw, 360px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  margin-left: auto;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  color: var(--primary);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: clamp(17px, 1.55vw, 20px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease, margin 0.25s ease;
}

.header-phone:hover,
.header-phone:focus-visible {
  color: var(--primary-dark);
}

.phone-icon {
  display: inline-flex;
  width: 1.1em;
  height: 1.1em;
  margin-right: 7px;
  color: #16a34a;
  flex: 0 0 auto;
}

.phone-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}


.mobile-phone-toggle,
.mobile-phone-panel {
  display: none;
}

.hero {
  padding: 72px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero-card,
.info-card,
.service-card,
.price-card,
.about-card,
.contact-card,
.faq-item,
.step,
.why-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 42px;
}

.hero-card p.lead {
  font-size: 18px;
  max-width: 60ch;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}

.compact-actions {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
}

.btn-secondary {
  background: white;
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

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

.hero-point {
  background: var(--surface-2);
  border-radius: 16px;
  padding: 16px;
}

.hero-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--text);
}

.hero-side {
  display: grid;
  gap: 18px;
}

.info-card,
.price-card,
.about-card,
.contact-card,
.service-card,
.faq-item,
.step,
.why-item {
  padding: 28px;
}

.card-title {
  font-size: 24px;
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.info-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.hours-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface-2);
}

.hours-list span,
.hours-list strong {
  font-size: 14px;
}

.services-grid,
.why-grid,
.contact-grid,
.steps-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 24px;
  background: var(--accent);
  margin-bottom: 18px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: white;
  font-weight: 700;
  margin-bottom: 16px;
}

.price-note {
  margin: 10px 0 24px;
  padding: 14px 16px;
  background: var(--surface-2);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  font-size: 15px;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 760px;
  background: white;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  vertical-align: top;
  width: 25%;
  overflow-wrap: anywhere;
}

th {
  background: #eef4ff;
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

tr:last-child td {
  border-bottom: 0;
}

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

.faq-grid {
  margin-top: 28px;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-row {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--surface-2);
}

.contact-row strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 14px;
}


.contact-form {
  margin-top: 18px;
}

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-size: 14px;
}

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

.form-status.is-success {
  background: #ecfdf3;
  border-color: #b7ebc6;
  color: #166534;
}

.form-status.is-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.form-status.is-loading {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: var(--primary-dark);
}

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

.form-field {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.form-field span {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--text);
  font: inherit;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.10);
}

.form-field small {
  color: var(--muted);
  font-size: 12px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.form-actions .btn[disabled] {
  opacity: 0.72;
  cursor: not-allowed;
}

.mobile-only-call {
  display: none;
}

.btn-call-mobile {
  width: 100%;
  gap: 8px;
  margin-top: 6px;
}

.btn-call-mobile .phone-icon,
.header-phone .phone-icon {
  color: #16a34a;
}

.btn-map {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  background: #166534;
  color: #ffffff;
  border: 1px solid #14532d;
}

.btn-map:hover,
.btn-map:focus-visible {
  background: #14532d;
  color: #ffffff;
}

body.is-mobile-device .mobile-only-call {
  display: block;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}


.map-section {
  padding-top: 56px;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.72), rgba(255, 255, 255, 0.98));
}

.map-intro {
  max-width: 860px;
  margin-top: 10px;
}

.map-note {
  max-width: 860px;
  margin-top: 8px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.map-frame {
  width: 100%;
  min-height: 430px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.google-map {
  display: block;
  width: 100%;
  height: 430px;
  min-height: 430px;
}


.google-map {
  position: relative;
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
}

.map-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #334155;
  font-weight: 700;
  text-align: center;
}

.google-map.is-loaded .map-loading {
  display: none;
}

.map-noscript {
  padding: 24px;
  color: var(--muted);
}

.google-map .gm-control-active,
.google-map .gmnoprint button {
  outline-color: var(--primary);
}

.footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1024px) {
  .hero-grid,
  .contact-grid,
  .services-grid,
  .why-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .topbar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    min-height: 0;
    padding: 12px 0 14px;
  }

  .header-phone {
    order: 1;
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    font-size: 19px;
    line-height: 1.15;
    max-height: 40px;
    overflow: hidden;
  }

  .brand {
    order: 2;
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .brand-logo {
    width: min(300px, 86vw);
    max-height: 75px;
    margin: 0 auto;
  }

  .nav {
    order: 3;
    margin-left: 0;
    justify-content: center;
    gap: 8px 14px;
    font-size: 15px;
  }

  body.is-mobile-device.mobile-phone-hidden .header-phone {
    opacity: 0;
    transform: translateY(-8px);
    max-height: 0;
    margin: 0;
    pointer-events: none;
  }

  .mobile-phone-toggle {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 78px;
    border: 0;
    border-radius: 14px 0 0 14px;
    background: var(--primary);
    color: white;
    font-size: 24px;
    font-weight: 700;
    box-shadow: var(--shadow);
    cursor: pointer;
    z-index: 60;
    align-items: center;
    justify-content: center;
  }

  body.is-mobile-device.mobile-phone-hidden .mobile-phone-toggle {
    display: flex;
  }

  .mobile-phone-panel {
    position: fixed;
    right: 12px;
    top: 96px;
    width: min(260px, calc(100vw - 24px));
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    z-index: 59;
  }

  body.is-mobile-device.mobile-phone-panel-open .mobile-phone-panel {
    display: block;
  }

  .mobile-phone-panel strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 14px;
  }

  .mobile-phone-panel a {
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-card,
  .info-card,
  .price-card,
  .about-card,
  .contact-card,
  .service-card,
  .faq-item,
  .step,
  .why-item {
    padding: 22px;
  }

  .services-grid,
  .why-grid,
  .contact-grid,
  .steps-grid,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .hours-list div {
    align-items: center;
  }

  table {
    min-width: 660px;
  }
}

/* Contact form polish - v20260512-20 */
.contact-form-card {
  overflow: hidden;
}

.contact-form-card > p {
  max-width: 58ch;
}

.contact-form {
  display: block;
  width: 100%;
}

.contact-form .form-grid {
  align-items: start;
}

.contact-form .form-field {
  margin-top: 16px;
}

.contact-form .form-grid:first-of-type .form-field:first-child,
.contact-form .form-grid:first-of-type .form-field:nth-child(2) {
  margin-top: 0;
}

.contact-form .form-field span {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.3;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  min-height: 50px;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.contact-form textarea {
  line-height: 1.45;
}

.form-field-file {
  padding: 14px 16px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: #f8fafc;
}

.form-field-file input[type="file"] {
  min-height: auto;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.form-actions .btn {
  min-height: 48px;
}

.contact-form input:user-invalid,
.contact-form select:user-invalid,
.contact-form textarea:user-invalid {
  border-color: #ef4444;
}


@media (max-width: 760px) {
  .contact-form .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form .form-grid:first-of-type .form-field:nth-child(2) {
    margin-top: 16px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }
}

/* Security/legal updates - v20260512-20 */
.grecaptcha-badge {
  visibility: hidden !important;
}

.recaptcha-notice {
  padding: 18px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.recaptcha-notice p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.recaptcha-notice a,
.footer-links a,
.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.email-obf {
  word-break: break-word;
}

.legal-page {
  padding: 64px 0;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  max-width: none;
  margin-bottom: 12px;
}

.legal-content h2 {
  margin-top: 28px;
  font-size: 24px;
}

.legal-content ul {
  margin: 0 0 16px 20px;
  padding: 0;
  list-style: disc;
  color: var(--muted);
}

.legal-content li {
  margin-bottom: 8px;
}

@media (max-width: 760px) {
  .footer-inner {
    flex-direction: column;
  }
}

/* Message character counter - v20260512-20 */
.message-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: -2px;
}

.message-meta small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.message-counter {
  flex: 0 0 auto;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.message-counter.is-near-limit {
  color: #b45309;
}

.message-counter.is-at-limit {
  color: #991b1b;
}

@media (max-width: 520px) {
  .message-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

/* Mobile hamburger navigation - v20260512-20 */
.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(24, 33, 47, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  background: var(--accent);
  border-color: rgba(29, 78, 216, 0.25);
  outline: none;
}

.mobile-menu-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.18s ease;
  transform-origin: center;
}

@media (max-width: 760px) {
  .topbar {
    z-index: 80;
  }

  .topbar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 70px;
    padding: 10px 0;
  }

  .brand {
    order: 0;
    justify-content: flex-start;
    text-align: left;
    width: auto;
    max-width: calc(100% - 62px);
  }

  .brand-logo {
    width: min(270px, 72vw);
    max-height: 60px;
    margin: 0;
  }

  .header-phone {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    order: 4;
    position: relative;
    z-index: 91;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: flex;
    width: min(320px, 84vw);
    height: 100dvh;
    margin-left: 0;
    padding: 88px 22px 24px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    background: var(--surface);
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 50px rgba(24, 33, 47, 0.16);
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transform: translateX(110%);
    transition: transform 0.28s ease;
    pointer-events: none;
  }

  .nav a {
    display: block;
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    border-radius: 12px;
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: var(--accent);
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(15, 23, 42, 0.34);
    backdrop-filter: blur(2px);
  }

  body.mobile-menu-open .nav {
    transform: translateX(0);
    pointer-events: auto;
  }

  body.mobile-menu-open .mobile-menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.mobile-menu-open .mobile-menu-line:nth-child(2) {
    opacity: 0;
  }

  body.mobile-menu-open .mobile-menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.mobile-menu-open .mobile-phone-toggle,
  body.mobile-menu-open .mobile-phone-panel {
    display: none !important;
  }
}


@media (max-width: 760px) {
  .map-section {
    padding-top: 42px;
  }

  .map-frame,
  .google-map {
    min-height: 360px;
    height: 360px;
    border-radius: 18px;
  }
}


/* Architecture foundation - v20260512-20 */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar-inner-pages .brand-logo { width: clamp(210px, 24vw, 330px); }
.nav-inner { gap: 8px 14px; }
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-parent::after { content: '▾'; margin-left: 6px; font-size: 0.75em; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 260px;
  display: none;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  z-index: 80;
}
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible { background: var(--accent); color: var(--primary); }
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown { display: block; }

.page-hero {
  padding: 72px 0 42px;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.9), rgba(247, 248, 251, 1));
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { max-width: 68ch; font-size: 18px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.breadcrumbs a { color: var(--primary-dark); font-weight: 700; }
.content-card,
.sidebar-card,
.cluster-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.content-card h2 { margin-top: 28px; }
.content-card h2:first-child { margin-top: 0; }
.check-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.check-list li { padding-left: 30px; position: relative; color: var(--muted); }
.check-list li::before { content: '✔'; position: absolute; left: 0; top: 0; color: #16a34a; font-weight: 800; }
.two-column-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start; }
.sidebar-card { position: sticky; top: 104px; }
.sidebar-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.sidebar-links a { display: block; padding: 10px 12px; border-radius: 12px; background: var(--surface-2); color: var(--primary-dark); font-weight: 700; }
.sidebar-links a:hover,
.sidebar-links a:focus-visible { background: var(--accent); color: var(--primary); }
.cluster-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.cluster-card { display: block; transition: transform 0.2s ease, border-color 0.2s ease; }
.cluster-card:hover,
.cluster-card:focus-visible { transform: translateY(-3px); border-color: rgba(29, 78, 216, 0.35); }
.section-soft { background: linear-gradient(180deg, rgba(239, 246, 255, 0.55), rgba(255,255,255,0.9)); }
.big-phone-label { margin: 6px 0 8px; font-weight: 700; color: var(--muted); }
.big-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(24px, 3.3vw, 34px);
  font-weight: 900;
  color: var(--primary);
  margin: 0 0 14px;
}
.big-phone .phone-icon { width: 1.05em; height: 1.05em; color: #16a34a; }

.site-footer { background: #101827; color: #cbd5e1; margin-top: 0; }
.footer-widgets { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1.25fr; gap: 28px; padding: 46px 0 34px; }
.footer-widget h2 { font-size: 18px; color: #fff; margin-bottom: 12px; }
.footer-widget p { color: #cbd5e1; }
.footer-widget ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-widget a { color: #e5edff; }
.footer-widget a:hover,
.footer-widget a:focus-visible { color: #93c5fd; }
.footer-logo { display: inline-flex; margin-bottom: 16px; background: #fff; padding: 8px 10px; border-radius: 16px; }
.footer-logo .brand-logo { width: 245px; max-height: 62px; }
.footer-phone { display: inline-flex; align-items: center; gap: 6px; color: #fff !important; font-size: 20px; font-weight: 900; margin-top: 4px; }
.footer-phone .phone-icon { color: #22c55e; }
.footer-contact .btn-map {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #166534;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 26px rgba(22, 163, 74, 0.28);
}
.footer-contact .btn-map:hover,
.footer-contact .btn-map:focus-visible {
  background: #14532d;
  color: #ffffff !important;
  border-color: rgba(187, 247, 208, 0.7);
}
.footer-bottom { border-top: 1px solid rgba(148, 163, 184, 0.24); padding: 18px 0; font-size: 14px; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; }
.footer-bottom a { color: #e5edff; }
.footer { display: none; }

@media (max-width: 1024px) {
  .cluster-grid,
  .footer-widgets { grid-template-columns: 1fr 1fr; }
  .two-column-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}

@media (max-width: 760px) {
  .topbar-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .topbar-inner .brand { width: auto; order: 1; justify-content: flex-start; }
  .topbar-inner .brand-logo { width: min(250px, 68vw); }
  .topbar-inner .header-phone { order: 2; width: auto; max-width: 46px; overflow: hidden; color: transparent; }
  .topbar-inner .header-phone .phone-icon { color: #16a34a; margin-right: 0; width: 28px; height: 28px; }
  .mobile-menu-toggle { order: 3; }
  .nav { text-align: left; }
  .nav-item { display: block; width: 100%; }
  .nav-dropdown { position: static; display: block; min-width: 0; box-shadow: none; border: 0; padding: 4px 0 4px 14px; background: transparent; }
  .nav-dropdown a { color: var(--muted); font-size: 14px; padding: 8px 10px; }
  .nav-parent::after { content: ''; }
  .cluster-grid,
  .footer-widgets { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0 32px; }
  .page-hero h1 { max-width: none; }
  .footer-bottom-inner { display: grid; }
}


/* High-intent contact/map structure - v20260512-20 */
.mobile-phone-panel {
  display: none;
}
.mobile-phone-panel .mobile-panel-item {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}
.mobile-phone-panel .mobile-panel-phone {
  display: inline-flex;
  color: var(--primary);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}
.mobile-phone-panel .mobile-panel-map {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border: 1px solid rgba(37, 99, 235, 0.22);
  font-size: 15px;
  font-weight: 850;
  text-align: center;
}
.mobile-phone-panel .mobile-panel-map::before {
  content: '📍';
  margin-right: 6px;
}
.mobile-phone-panel .mobile-panel-map:hover,
.mobile-phone-panel .mobile-panel-map:focus-visible {
  background: rgba(37, 99, 235, 0.16);
  color: var(--primary-dark);
}
.high-intent-map-after-contact {
  border-top: 1px solid var(--line);
}


/* Navigation and core-service expansion - v20260512-20 */
.nav-item.has-dropdown {
  position: relative;
  padding: 10px 0;
  margin: -10px 0;
}

.nav-item.has-dropdown::after {
  content: '';
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 18px;
}

.nav-dropdown {
  top: calc(100% + 4px);
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.22s;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.nav-dropdown:hover {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 4px;
}

.service-detail-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
}

.service-detail-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-note-box {
  margin: 22px 0 0;
  padding: 18px;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  background: #eef4ff;
}

.service-note-box p:last-child { margin-bottom: 0; }

.process-list {
  counter-reset: process;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.process-list li {
  counter-increment: process;
  position: relative;
  padding: 14px 16px 14px 54px;
  border-radius: 14px;
  background: var(--surface-2);
  color: var(--muted);
}

.process-list li::before {
  content: counter(process);
  position: absolute;
  left: 14px;
  top: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.service-hub-intro {
  max-width: 880px;
  margin-bottom: 24px;
}

.cluster-card .cluster-label {
  display: inline-flex;
  margin: 4px 0 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .nav-item.has-dropdown { padding: 0; margin: 0; }
  .nav-item.has-dropdown::after { display: none; }
  .nav-dropdown { visibility: visible; opacity: 1; pointer-events: auto; transform: none; transition: none; }
  .service-detail-grid { grid-template-columns: 1fr; }
}


/* Level-2 service cluster expansion - v20260512-20 */
.related-services-section {
  padding-top: 44px;
}

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

.related-service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.related-service-card span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.related-service-card:hover,
.related-service-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(29, 78, 216, 0.35);
}

.sidebar-link-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
}

.sidebar-link-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--text);
  font-weight: 700;
}

.sidebar-link-list a:hover,
.sidebar-link-list a:focus-visible {
  background: var(--accent);
  color: var(--primary);
}

.service-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-index-cluster {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.service-index-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.service-index-cluster h3 {
  margin: 0;
  font-size: 22px;
}

.service-index-cluster p {
  color: var(--muted);
}

.service-index-cluster ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
}

.service-index-cluster li a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--text);
  font-weight: 700;
}

.service-index-cluster li a:hover,
.service-index-cluster li a:focus-visible {
  color: var(--primary);
  background: var(--accent);
}

@media (max-width: 980px) {
  .related-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-index-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .related-services-grid { grid-template-columns: 1fr; }
  .service-index-heading { flex-direction: column; }
}


/* Blog framework and first articles - v20260512-20 */
.blog-hero h1 {
  max-width: 22ch;
}

.blog-category-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.blog-category-card,
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  min-height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-category-card:hover,
.blog-category-card:focus-visible,
.blog-card:hover,
.blog-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: var(--shadow);
}

.blog-category-card span,
.blog-card-category {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-category-card h3,
.blog-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.22;
}

.blog-category-card p,
.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-card-link {
  margin-top: auto;
  color: var(--primary-dark);
  font-weight: 900;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.article-body {
  font-size: 17px;
  line-height: 1.72;
}

.article-body p + p {
  margin-top: 12px;
}

.article-body h2 {
  margin-top: 34px;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-checklist {
  margin: 30px 0;
}

.article-checklist h2 {
  margin-top: 0;
}

.article-faq {
  margin-top: 18px;
}

.article-sidebar .sidebar-cta {
  margin-top: 22px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.95), rgba(255, 255, 255, 0.95));
  border: 1px solid var(--line);
}

.article-sidebar .sidebar-cta h3 {
  margin-bottom: 8px;
}

.article-sidebar .sidebar-cta .btn {
  width: 100%;
  margin-top: 12px;
}

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

@media (max-width: 1024px) {
  .blog-category-grid,
  .blog-grid,
  .compact-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blog-category-grid,
  .blog-grid,
  .compact-blog-grid {
    grid-template-columns: 1fr;
  }

  .article-body {
    font-size: 16px;
  }
}


/* v18 breadcrumb/meta refinements */
.breadcrumbs {
  font-size: 0.92rem;
  line-height: 1.6;
}
.breadcrumbs a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.breadcrumbs span:last-child {
  color: var(--text-muted);
}


/* Technical SEO / UX cleanup - v20260512-20 */
.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: transform 0.16s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.34);
  outline-offset: 3px;
}

.brand-logo {
  aspect-ratio: 4 / 1;
}

.mobile-menu-toggle,
.mobile-phone-toggle,
.btn,
.nav a,
.nav-parent,
.nav-dropdown a {
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .topbar,
  .mobile-menu-toggle,
  .mobile-phone-toggle,
  .mobile-phone-panel,
  .contact-section,
  .map-section,
  .recaptcha-notice,
  .site-footer,
  .footer-bottom {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
  }
}


/* Dropdown stability fix - v20260512-26 */
@media (min-width: 761px) {
  .nav-item.has-dropdown {
    position: relative;
    padding: 16px 0;
    margin: -16px 0;
  }

  .nav-item.has-dropdown::after {
    content: '';
    position: absolute;
    left: -24px;
    right: -24px;
    top: 100%;
    height: 34px;
    pointer-events: auto;
  }

  .nav-dropdown {
    top: 100%;
    z-index: 1000;
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.42s;
  }

  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown,
  .has-dropdown.dropdown-open .nav-dropdown,
  .nav-dropdown:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
}


.service-card-link {
  display: block;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card-link:hover,
.service-card-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(29, 78, 216, 0.35);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.service-card-link h3 {
  color: var(--text);
}

.service-card-link:hover h3,
.service-card-link:focus-visible h3 {
  color: var(--primary);
}

.services-hub-note {
  margin-top: 12px;
  font-weight: 650;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.sitemap-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.sitemap-card h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.sitemap-card ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-card a {
  color: var(--text);
  font-weight: 750;
}

.sitemap-card a:hover,
.sitemap-card a:focus-visible {
  color: var(--primary);
}

@media (max-width: 760px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}


/* v25 clean architecture */
.service-path-note{font-size:.95rem;color:#64748b;margin-top:8px;}
.sitemap-group-label{font-size:.82rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em;color:#64748b;margin:18px 0 8px;}
.sitemap-list.nested{padding-left:16px;border-left:2px solid #e2e8f0;}


/* Cookie consent styles merged for performance - v20260512-37 */
/* Sofia Print Center cookie consent UI */
.cookie-consent-banner,
.cookie-consent-modal {
  font-family: inherit;
}

.cookie-consent-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 99990;
  width: min(920px, calc(100% - 32px));
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.22);
  padding: 18px;
  color: #0f172a;
}

.cookie-consent-banner[hidden],
.cookie-consent-modal[hidden] {
  display: none !important;
}

.cookie-consent-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cookie-consent-banner h2,
.cookie-consent-modal h2 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
  color: #0f172a;
}

.cookie-consent-banner p,
.cookie-consent-modal p {
  margin: 0;
  color: #475569;
  line-height: 1.55;
  font-size: 15px;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  min-height: 42px;
  padding: 10px 18px;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

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

.cookie-btn-primary {
  background: #166534;
  color: #ffffff;
}

.cookie-btn-primary:hover {
  background: #14532d;
}

.cookie-btn-secondary {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.cookie-btn-secondary:hover {
  background: #dbeafe;
}

.cookie-btn-ghost {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #334155;
}

.cookie-btn-ghost:hover {
  background: #f1f5f9;
}

.cookie-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.58);
  padding: 18px;
}

.cookie-consent-modal__dialog {
  width: min(640px, 100%);
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
  padding: 24px;
  color: #0f172a;
}

.cookie-consent-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid #e2e8f0;
}

.cookie-consent-option:first-of-type {
  margin-top: 16px;
}

.cookie-consent-option strong {
  display: block;
  margin-bottom: 4px;
  color: #0f172a;
}

.cookie-consent-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #16a34a;
  margin-top: 2px;
}

.cookie-consent-option input[type="checkbox"][disabled] {
  opacity: .6;
}

.cookie-consent-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.js-cookie-settings {
  cursor: pointer;
}

@media (max-width: 720px) {
  .cookie-consent-banner {
    bottom: 12px;
    width: calc(100% - 20px);
    border-radius: 16px;
    padding: 16px;
  }

  .cookie-consent-banner__inner {
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions,
  .cookie-consent-modal__actions {
    justify-content: stretch;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-consent-modal__dialog {
    padding: 20px;
  }
}

