:root {
  --bg: #08090d;
  --bg-soft: #11131a;
  --panel: rgba(14, 17, 24, 0.86);
  --panel-2: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f6f7fb;
  --muted: rgba(246, 247, 251, 0.74);
  --brand: #d81f32;
  --brand-strong: #ff3148;
  --brand-soft: rgba(216, 31, 50, 0.14);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
html {
  background:
    radial-gradient(circle at top, rgba(88, 14, 24, 0.28), transparent 32%),
    radial-gradient(circle at bottom right, rgba(106, 20, 32, 0.18), transparent 28%),
    linear-gradient(180deg, #0d0e13 0%, #08090d 100%);
  background-color: #08090d;
}
body {
  min-height: 100svh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(88, 14, 24, 0.28), transparent 32%),
    radial-gradient(circle at bottom right, rgba(106, 20, 32, 0.18), transparent 28%),
    linear-gradient(180deg, #0d0e13 0%, #08090d 100%);
  background-color: #08090d;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(env(safe-area-inset-top, 0px) + 28px);
  background:
    radial-gradient(circle at 20% 0%, rgba(118, 22, 34, 0.42), transparent 42%),
    radial-gradient(circle at 78% 0%, rgba(96, 18, 30, 0.26), transparent 34%),
    repeating-linear-gradient(90deg,
      transparent 0 58px,
      rgba(255, 68, 92, 0.14) 58px 60px,
      transparent 60px 132px),
    repeating-linear-gradient(0deg,
      transparent 0 18px,
      rgba(120, 26, 38, 0.12) 18px 20px,
      transparent 20px 44px),
    linear-gradient(180deg, rgba(33, 8, 13, 0.98), rgba(15, 8, 12, 0.88));
  background-size: 100% 100%, 100% 100%, 220px 100%, 100% 64px, 100% 100%;
  animation: safe-area-pcb-flow 18s linear infinite;
  pointer-events: none;
  z-index: 0;
}

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

button,
.panel-link,
.cta-primary,
.cta-secondary {
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

button::before,
.panel-link::before,
.cta-primary::before,
.cta-secondary::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,0) 18%, rgba(255,255,255,0.22) 50%, rgba(255,255,255,0) 82%);
  transform: translateX(-135%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s ease, opacity 0.28s ease;
}

button:hover::before,
.panel-link:hover::before,
.cta-primary:hover::before,
.cta-secondary:hover::before {
  transform: translateX(135%);
  opacity: 1;
}

button:active,
.panel-link:active,
.cta-primary:active,
.cta-secondary:active {
  transform: translateY(1px) scale(0.985);
}

.app-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding:
    calc(22px + env(safe-area-inset-top, 0px))
    calc(24px + env(safe-area-inset-right, 0px))
    calc(18px + env(safe-area-inset-bottom, 0px))
    calc(24px + env(safe-area-inset-left, 0px));
}

.circuit-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.96;
}

.circuit-bg svg {
  width: 100%;
  height: 100%;
}

.circuit-lines path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.micro-traces path {
  fill: none;
  stroke: rgba(132, 33, 45, 0.3);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pcb-base path {
  stroke: rgba(120, 24, 34, 0.64);
  stroke-width: 2.05;
  opacity: 0.64;
}

.pcb-flow path {
  stroke: url(#lineGlow);
  stroke-width: 1.76;
  opacity: 0.33;
  stroke-dasharray: 0 74 10 220;
  animation: flow 14s linear infinite;
}

.pcb-flow path:nth-child(2) { animation-duration: 12.4s; }
.pcb-flow path:nth-child(3) { animation-duration: 16.2s; }
.pcb-flow path:nth-child(4) { animation-duration: 13.1s; }
.pcb-flow path:nth-child(5) { animation-duration: 15.3s; }
.pcb-flow path:nth-child(6) { animation-duration: 14.6s; }
.pcb-flow path:nth-child(7) { animation-duration: 17s; }
.pcb-flow path:nth-child(8) { animation-duration: 11.9s; }
.pcb-flow path:nth-child(9) { animation-duration: 13.5s; }
.pcb-flow path:nth-child(10) { animation-duration: 16.5s; }

.board-chips rect {
  fill: rgba(255,255,255,0.018);
  stroke: rgba(255,255,255,0.08);
  stroke-width: 1;
}

.via-rings circle {
  fill: rgba(9, 10, 13, 0.95);
  stroke: rgba(255, 74, 92, 0.68);
  stroke-width: 2;
}

.vias circle {
  fill: #ff4659;
  opacity: 0.72;
}

.glows circle {
  fill: url(#nodeGlow);
  opacity: 0.14;
}

.topbar,
.hero-layout,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(100%, 1360px);
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  padding: 6px;
  box-shadow: var(--shadow);
}

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

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.16s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle.is-open {
  border-color: rgba(255,255,255,0.22);
  background: rgba(216, 31, 50, 0.14);
  box-shadow: 0 0 0 1px rgba(255, 100, 117, 0.18), 0 16px 32px rgba(130, 10, 26, 0.28);
}

.menu-toggle:active {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
  display: flex;
  align-items: center;
  justify-self: end;
  margin-left: auto;
  min-width: 0;
  gap: 12px;
}

.topnav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
}

.nav-pill,
.lang-toggle {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: var(--text);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 10px 22px rgba(0, 0, 0, 0.16);
  transition: transform 0.16s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(10px);
  flex: 0 0 auto;
  white-space: nowrap;
}

.nav-pill:hover,
.lang-toggle:hover,
.nav-pill.is-active {
  border-color: rgba(255,255,255,0.22);
  background: linear-gradient(180deg, rgba(255, 87, 107, 0.22), rgba(216, 31, 50, 0.10));
  box-shadow: 0 0 0 1px rgba(255, 98, 116, 0.14), 0 14px 28px rgba(124, 10, 26, 0.26);
}

.nav-pill:active,
.lang-toggle:active {
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.24), 0 6px 14px rgba(0, 0, 0, 0.16);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 30px;
  align-items: stretch;
  padding: 22px 0;
}

.hero-copy,
.feature-panel {
  min-height: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 12px 24px 4px;
}

.hero-copy-default,
.hero-copy-rebate,
.hero-copy-contact {
  display: none;
}

.hero-copy-default.is-active,
.hero-copy-rebate.is-active,
.hero-copy-contact.is-active {
  display: block;
}

.hero-copy-default h1 {
  max-width: none;
  white-space: nowrap;
}

html[lang="en"] .hero-copy-default h1 {
  max-width: none;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: initial;
  margin-top: 10px;
}

html[lang="en"] .hero-copy-default h1 .hero-title-line {
  display: block;
  white-space: nowrap;
}

html[lang="en"] .hero-copy-default h1 .hero-title-line-top {
  display: flex;
  align-items: baseline;
  gap: 0.22em;
}

html[lang="en"] .hero-copy-default h1 .hero-title-space {
  display: inline;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.58);
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  line-height: 1.02;
  max-width: 11ch;
}

.hero-text {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions,
.service-grid,
.hero-meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta {
  display: grid;
  gap: 12px;
}

.hero-actions { margin-top: 28px; }
.hero-meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-meta.hero-meta-inline {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}

.credential-card {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
}

.credential-card strong {
  font-size: 0.95rem;
}

.credential-card span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

.hero-meta.hero-meta-inline .credential-card-inline {
  flex: 1 1 0;
}

.service-grid { margin-top: 18px; }

.cta-primary,
.cta-secondary,
.meta-chip,
.service-chip {
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.cta-primary,
.cta-secondary {
  padding: 12px 18px;
  font-weight: 600;
  transition: transform 0.16s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary {
  background: linear-gradient(135deg, #ff3148, #b91627);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(185, 22, 39, 0.28);
}

.cta-primary:hover {
  box-shadow: 0 18px 40px rgba(185, 22, 39, 0.36);
}

.cta-primary:active {
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.22), 0 8px 18px rgba(185, 22, 39, 0.22);
}

.cta-secondary {
  background: rgba(255,255,255,0.04);
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 14px 26px rgba(0,0,0,0.18);
}

.cta-secondary:active {
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.24), 0 6px 14px rgba(0,0,0,0.16);
}

.meta-chip,
.service-chip {
  background: rgba(255,255,255,0.04);
  padding: 10px 14px;
}

.hero-meta-inline .meta-chip {
  background: rgba(255,255,255,0.035);
}

.service-chip {
  min-width: 210px;
}

.feature-panel {
  display: flex;
  align-items: center;
}

.panel-card {
  width: 100%;
  display: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.028));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.panel-card.is-active { display: block; }

.panel-kicker {
  margin: 0 0 10px;
  color: var(--brand-strong);
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.panel-card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.3rem);
  line-height: 1.15;
  max-width: 14ch;
}

[data-panel-content="services"] h2 {
  max-width: none;
  font-size: clamp(1.22rem, 1.65vw, 1.62rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

[data-panel-content="contact"] h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.22rem, 2vw, 2rem);
}

.hero-copy-contact h1 {
  max-width: none;
  margin-top: 0;
}

.panel-card-contact h2 {
  margin-bottom: 18px;
}

.contact-hero-text {
  margin-top: 10px;
}

.contact-hero-grid {
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
}

.contact-hero-qr {
  max-width: none;
}

.panel-card p,
.panel-note,
.quote-form label span {
  color: var(--muted);
}

.service-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.service-point {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.038);
  border: 1px solid rgba(255,255,255,0.08);
}

.service-point h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.service-point p {
  margin: 0;
  line-height: 1.55;
}

.panel-link {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 12px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.16s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.panel-link:hover {
  border-color: rgba(255,255,255,0.26);
  background: linear-gradient(180deg, rgba(255, 87, 107, 0.22), rgba(216, 31, 50, 0.11));
  box-shadow: 0 0 0 1px rgba(255, 98, 116, 0.14), 0 16px 30px rgba(124, 10, 26, 0.24);
}

.panel-link:active {
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.24), 0 6px 14px rgba(0, 0, 0, 0.16);
}

.panel-note {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  line-height: 1.55;
}

.contact-layout-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.contact-info-stack {
  display: grid;
  gap: 16px;
}

.contact-combo-card {
  display: inline-grid;
  grid-template-columns: minmax(220px, max-content) minmax(132px, 145px);
  gap: 20px;
  align-items: start;
  justify-content: start;
  justify-items: start;
  padding: 0;
  min-height: auto;
  max-width: fit-content;
}

.contact-card-main {
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  height: 100%;
}

.contact-copy {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.contact-list {
  margin: 16px 0 0;
  display: grid;
  gap: 14px;
}

.contact-combo-card .contact-list {
  margin: 0;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-list div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-list dt {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: rgba(246,247,251,0.62);
  text-align: left;
}

.contact-list dd {
  margin: 8px 0 0;
  color: #fff;
  font-size: 1.1rem;
  text-align: left;
}

.contact-qr-card {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  align-self: start;
  padding: 8px;
  min-height: auto;
  height: auto;
  margin-top: -2px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-qr-image {
  width: 100%;
  max-width: 129px;
  height: auto;
  display: block;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 0;
  background: transparent;
  border: 0;
}

.quote-form-compact {
  margin-top: 14px;
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form label span {
  font-size: 0.9rem;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 14px 15px;
  font: inherit;
  resize: vertical;
  outline: none;
  transition: 0.2s ease;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(246,247,251,0.45);
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 4px rgba(216, 31, 50, 0.12);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.form-actions-single {
  justify-content: center;
}

.form-actions-single .form-submit {
  min-width: 220px;
}

.form-submit {
  border: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
}

.footer-left,
.footer-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-right a {
  color: #fff;
}

@keyframes flow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -300; }
}

@keyframes safe-area-pcb-flow {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }
  to {
    background-position: 0 0, 0 0, 220px 0, 0 64px, 0 0;
  }
}

@keyframes mobile-pcb-drift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }
  to {
    background-position: 160px 0, 0 120px, 120px 0, -120px 120px, 0 0;
  }
}

@media (max-width: 1100px) {
  .app-shell {
    min-height: auto;
  }

  .hero-layout,
  .site-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
  }

  .nav-drawer {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 10px;
  }

  .topnav {
    justify-content: flex-end;
    gap: 8px;
  }

  .nav-pill,
  .lang-toggle {
    padding-inline: 14px;
  }

  .lang-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
  }

  h1 {
    max-width: none;
  }

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

@media (max-width: 980px) {
  .app-shell {
    padding:
      calc(18px + env(safe-area-inset-top, 0px))
      calc(16px + env(safe-area-inset-right, 0px))
      calc(20px + env(safe-area-inset-bottom, 0px))
      calc(16px + env(safe-area-inset-left, 0px));
  }

  .circuit-bg {
    opacity: 1;
  }

  .circuit-bg::before,
  .circuit-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .circuit-bg::before {
    background:
      repeating-linear-gradient(90deg,
        transparent 0 68px,
        rgba(160, 34, 50, 0.1) 68px 70px,
        transparent 70px 136px),
      repeating-linear-gradient(0deg,
        transparent 0 54px,
        rgba(130, 28, 42, 0.08) 54px 56px,
        transparent 56px 112px),
      repeating-linear-gradient(135deg,
        transparent 0 116px,
        rgba(170, 40, 58, 0.09) 116px 118px,
        transparent 118px 236px),
      radial-gradient(circle at center, rgba(255, 74, 96, 0.06), transparent 55%);
    opacity: 0.5;
    animation: mobile-pcb-drift 22s linear infinite;
  }

  .circuit-bg::after {
    background:
      radial-gradient(circle at 12% 18%, rgba(255, 98, 116, 0.28) 0 3.5px, rgba(14, 17, 24, 0.95) 3.7px 6px, transparent 6.2px),
      radial-gradient(circle at 76% 14%, rgba(255, 98, 116, 0.24) 0 3.5px, rgba(14, 17, 24, 0.95) 3.7px 6px, transparent 6.2px),
      radial-gradient(circle at 88% 44%, rgba(255, 98, 116, 0.24) 0 3.5px, rgba(14, 17, 24, 0.95) 3.7px 6px, transparent 6.2px),
      radial-gradient(circle at 24% 62%, rgba(255, 98, 116, 0.22) 0 3.5px, rgba(14, 17, 24, 0.95) 3.7px 6px, transparent 6.2px),
      radial-gradient(circle at 68% 78%, rgba(255, 98, 116, 0.26) 0 3.5px, rgba(14, 17, 24, 0.95) 3.7px 6px, transparent 6.2px);
    opacity: 0.56;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .hero-layout {
    gap: 18px;
  }

  .panel-card {
    padding: 22px;
  }

  .hero-copy-default h1,
  .panel-card h2,
  [data-panel-content="services"] h2,
  [data-panel-content="contact"] h2 {
    max-width: none;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-wrap: balance;
  }

  html[lang="en"] .hero-copy-default h1 {
    margin-top: 6px;
    white-space: nowrap;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  html[lang="en"] .hero-copy-default h1 .hero-title-line,
  html[lang="en"] .hero-copy-default h1 .hero-title-line-top,
  html[lang="en"] .hero-copy-default h1 .hero-title-line-bottom {
    display: inline;
    white-space: nowrap;
  }

  html[lang="en"] .hero-copy-default h1 .hero-title-word {
    display: inline;
  }

  html[lang="en"] .hero-copy-default h1 .hero-title-space {
    display: inline;
  }

  html[lang="en"] .hero-copy-default h1 .hero-title-line-bottom::before {
    content: ' ';
  }

  .panel-card h2 {
    font-size: clamp(1.3rem, 7vw, 1.9rem);
  }

  [data-panel-content="contact"] h2 {
    font-size: clamp(1.1rem, 5.6vw, 1.45rem);
  }

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

  .contact-combo-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 14px;
    align-items: start;
    width: 100%;
    max-width: none;
    min-height: auto;
  }

  .contact-card-main {
    padding: 0;
  }

  .contact-qr-card {
    max-width: 112px;
    margin: 0;
  }

  .service-chip,
  .cta-primary,
  .cta-secondary {
    width: 100%;
    min-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-meta.hero-meta-inline {
    flex-wrap: wrap;
  }

  .hero-meta.hero-meta-inline .credential-card-inline {
    width: 100%;
    min-width: 100%;
  }

  .footer-right {
    gap: 10px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-drawer {
    display: none;
    margin-top: 6px;
    margin-left: 0;
    width: 100%;
    justify-self: stretch;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    background: rgba(12, 13, 18, 0.78);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
  }

  .app-shell.nav-open .nav-drawer {
    display: grid;
    grid-column: 1 / -1;
    width: 100%;
  }

  .topnav {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav-pill,
  .lang-toggle,
  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .lang-wrap {
    width: 100%;
  }
}
