/*
  Malleversa design principle: preserve the original blue, white, cool-gray marketplace
  identity; simplify the structure; keep the metallic logo deliberately overlapping.
*/

:root {
  --blue: #2196f3;
  --blue-deep: #1976d2;
  --blue-dark: #0f5f9e;
  --navy: #0f172a;
  --slate: #64748b;
  --slate-dark: #334e68;
  --surface: #ffffff;
  --surface-alt: #f5f8fb;
  --surface-blue: #eef7ff;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --success: #0f9f74;
  --warning: #a15c00;
  --shadow-sm: 0 3px 14px rgba(15, 23, 42, 0.07);
  --shadow-md: 0 12px 34px rgba(15, 23, 42, 0.11);
  --shadow-blue: 0 12px 28px rgba(33, 150, 243, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --content: 1200px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  color: #363636;
  background: var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
.button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:not(:disabled),
.button,
a[href] {
  cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-weight: 750;
  line-height: 1.17;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
}

h2 {
  font-size: clamp(1.85rem, 3.7vw, 3.25rem);
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms var(--ease-out);
}

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

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section--compact {
  padding: clamp(44px, 6vw, 72px) 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section--blue {
  background: var(--surface-blue);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label::before {
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
  content: "";
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.section-heading p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 1.05rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center p {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: var(--shadow-blue);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 34px rgba(33, 150, 243, 0.34);
}

.button:active {
  transform: scale(0.97);
}

.button--secondary {
  border-color: var(--border-strong);
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--navy);
}

.button--dark {
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.26);
}

.button--small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 0.9rem;
}

.button[aria-disabled="true"],
.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

:focus-visible {
  outline: 3px solid rgba(33, 150, 243, 0.45);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 64px;
  background: linear-gradient(90deg, var(--slate-dark) 0%, #2d5775 27%, var(--blue) 55%, var(--blue) 100%);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
}

.header-inner {
  position: relative;
  display: flex;
  width: 100%;
  height: 64px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-inline: clamp(16px, 2vw, 40px);
}

.brand {
  position: absolute;
  top: 0;
  left: clamp(14px, 1.4vw, 22px);
  display: flex;
  width: 460px;
  max-width: calc(100% - 190px);
  height: 64px;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.brand-logo {
  position: absolute;
  z-index: 2;
  top: -10px;
  left: 0;
  width: 204px;
  max-width: none;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.brand-name {
  position: relative;
  z-index: 3;
  margin-left: 214px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.35);
  white-space: nowrap;
}

.brand-mobile-name {
  display: none !important;
}

.mv-lang-switcher {
  position: absolute;
  right: clamp(160px, 14vw, 210px);
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 2px 5px;
  z-index: 10;
  flex-shrink: 0;
}

.mv-lang-switcher button {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  cursor: pointer;
}

.mv-lang-switcher .mv-lang-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms var(--ease-out), background 160ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.social-links {
  position: absolute;
  right: clamp(16px, 2vw, 40px);
  display: flex;
  justify-content: flex-end;
  gap: 7px;
}

.social-link {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  transition: background 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.15);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: transparent;
  color: #fff;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(1px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-1px) rotate(-45deg);
}

.home-hero {
  overflow: hidden;
  padding: clamp(52px, 7vw, 86px) 0 38px;
  background:
    radial-gradient(circle at 86% 10%, rgba(33, 150, 243, 0.12), transparent 29%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.search-tabs {
  width: min(100%, 760px);
  margin-inline: auto;
}

.tab-list {
  display: grid;
  width: min(100%, 500px);
  grid-template-columns: 1fr 1fr;
  margin-inline: auto;
}

.tab-button {
  min-height: 48px;
  border: 1px solid var(--border);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.74);
  color: var(--slate);
  font-weight: 750;
}

.tab-button:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}

.tab-button:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

.tab-button[aria-selected="true"] {
  background: #fff;
  color: var(--navy);
}

.tab-panel {
  min-height: 118px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel p {
  max-width: 630px;
  margin: 0 auto 18px;
  color: var(--slate);
}

.search-form {
  display: flex;
  width: min(100%, 460px);
  margin: 34px auto 30px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.search-form input {
  min-width: 0;
  flex: 1;
  padding: 13px 17px;
  border: 0;
  border-radius: inherit;
  outline: 0;
  color: var(--navy);
  background: transparent;
}

.search-form input:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(33, 150, 243, 0.22);
}

.search-form button {
  min-width: 104px;
  margin: 3px;
  padding: 9px 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  font-weight: 750;
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.27);
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.category-link {
  display: flex;
  min-height: 94px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out),
              border-color 280ms var(--ease-out), background 280ms var(--ease-out);
}

.category-link:hover,
.category-link[aria-current="page"] {
  transform: translateY(-5px);
  border-color: rgba(33, 150, 243, 0.45);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.category-icon {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(33, 150, 243, 0.16);
  border-radius: 17px;
  background: linear-gradient(145deg, #f2f9ff 0%, #dceeff 55%, #c9e4ff 100%);
  color: var(--blue-deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 6px 14px -8px rgba(33, 150, 243, 0.55);
  transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 380ms var(--ease-out),
              background 380ms var(--ease-out), border-color 380ms var(--ease-out), color 380ms var(--ease-out);
}

.category-icon::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.75), transparent 55%);
}

.category-icon svg {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-link:hover .category-icon,
.category-link[aria-current="page"] .category-icon {
  transform: translateY(-2px) scale(1.06);
  border-color: rgba(33, 150, 243, 0.34);
  color: var(--blue-dark);
  background: linear-gradient(145deg, #e6f4ff 0%, #cbe6ff 55%, #a9d5ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 12px 22px -10px rgba(33, 150, 243, 0.75);
}

.category-link:hover .category-icon svg,
.category-link[aria-current="page"] .category-icon svg {
  transform: scale(1.06);
}

.category-link small {
  display: block;
  color: var(--slate);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0;
}

.carousel-shell {
  position: relative;
}

.card-row {
  display: grid;
  grid-auto-columns: minmax(220px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 5px 4px 20px;
  scroll-behavior: smooth;
  scrollbar-color: var(--border-strong) transparent;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.service-card,
.article-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 5px 16px rgba(15, 23, 42, 0.045);
  color: var(--navy);
  scroll-snap-align: start;
  text-decoration: none;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.service-card:hover,
.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(33, 150, 243, 0.4);
  box-shadow: var(--shadow-md);
}

.service-card img,
.article-card img {
  width: 100%;
  height: 158px;
  object-fit: cover;
}

.card-label {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-weight: 750;
}

.carousel-controls {
  display: flex;
  gap: 9px;
  margin-top: 12px;
}

.carousel-button {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--blue-deep);
  font-size: 1.2rem;
  transition: transform 160ms var(--ease-out), background 160ms var(--ease-out);
}

.carousel-button:hover {
  transform: translateY(-2px);
  background: var(--surface-blue);
}

.location-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: clamp(38px, 7vw, 88px);
}

.location-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.location-image,
.split-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.location-image img,
.split-image img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
}

.location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

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

.price-card {
  min-height: 320px;
}

.price-card img {
  height: 222px;
}

.pro-callout {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(33, 150, 243, 0.36), transparent 26%),
    var(--navy);
  color: #fff;
}

.pro-callout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 44px;
}

.pro-callout-grid--single {
  grid-template-columns: minmax(0, 760px);
}

.pro-callout h2,
.pro-callout p {
  color: #fff;
}

.pro-callout h2 {
  margin-bottom: 12px;
}

.pro-callout p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 1.08rem;
}

.pro-callout-mark {
  justify-self: end;
  width: min(100%, 400px);
  opacity: 0.4;
  filter: grayscale(1) brightness(2.2);
}

.site-footer {
  padding: 56px 0 24px;
  background: #24384e;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(130px, 0.8fr));
  gap: 38px;
}

.footer-title {
  margin-bottom: 15px;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-links button,
.footer-link-disabled {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  text-align: left;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links button:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-link-disabled {
  opacity: 0.58;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.86rem;
}

.footer-page-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-page-list a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-page-list a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-sitemap {
  color: rgba(255, 255, 255, 0.63);
  text-decoration: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 124px) 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(33, 150, 243, 0.13), transparent 32%),
    linear-gradient(180deg, #fff, #f8fbfe);
}

.page-hero--center {
  text-align: center;
}

.page-hero--center p {
  margin-inline: auto;
}

.page-hero h1 {
  max-width: 1120px;
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 720px;
  color: var(--slate);
  font-size: clamp(1rem, 1.9vw, 1.23rem);
}

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

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: var(--radius-md);
  background: var(--surface-alt);
}

.hero-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(15, 23, 42, 0.54));
  content: "";
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card span {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
}

.intro-copy {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.intro-copy p {
  color: var(--slate);
  font-size: 1.07rem;
}

.steps {
  display: grid;
  gap: clamp(64px, 9vw, 112px);
}

.step {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
}

.step:nth-child(even) .step-copy {
  order: 2;
}

.step-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: var(--shadow-blue);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 850;
}

.step-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.step-copy p {
  color: var(--slate);
  font-size: 1.02rem;
}

.step-image {
  position: relative;
}

.step-image img {
  width: 100%;
  min-height: 390px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate);
}

.check-list li::before {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--surface-blue);
  color: var(--blue-deep);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.pro-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 8vw, 126px) 0;
  background: linear-gradient(180deg, #fff, #f8fbfe);
}

.pro-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 7vw, 82px);
}

.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(33, 150, 243, 0.16);
  border-radius: 999px;
  background: #eaf7ff;
  color: #155f8a;
  font-size: 0.82rem;
  font-weight: 800;
}

.pro-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3.5rem, 7.5vw, 7.15rem);
  line-height: 1.02;
}

.pro-hero h1 span {
  color: var(--blue);
}

.pro-hero-copy > p {
  max-width: 680px;
  color: var(--slate);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 27px;
}

.pro-hero-visual {
  position: relative;
  align-self: start;
  padding-top: 30px;
}

.pro-hero-visual img {
  width: 100%;
  min-height: 470px;
  border-radius: 32px 8px 32px 8px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.metric-card {
  position: absolute;
  bottom: 26px;
  left: -32px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.metric-card strong {
  display: block;
  color: var(--blue-deep);
  font-size: 1.75rem;
  line-height: 1;
}

.metric-card span {
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.benefit-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.benefit-icon,
.support-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--surface-blue);
  color: var(--blue-deep);
  font-size: 1.45rem;
  font-weight: 850;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--slate);
}

.mini-benefits {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mini-benefit {
  padding: 15px 17px;
  border-left: 3px solid var(--blue);
  border-radius: 0 9px 9px 0;
  background: var(--surface-alt);
}

.mini-benefit strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
}

.mini-benefit span {
  color: var(--slate);
  font-size: 0.92rem;
}

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

.support-card {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.support-card img {
  width: 126px;
  height: 126px;
  margin: 0 auto 15px;
  border-radius: 9px;
  object-fit: cover;
}

.support-card .section-label {
  margin-bottom: 10px;
}

.support-card .section-label::before {
  display: none;
}

.support-card p {
  max-width: 490px;
  margin: 0 auto 23px;
  color: var(--slate);
}

.tip-title {
  margin-bottom: 54px;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
}

.tip-note {
  position: absolute;
  right: -22px;
  bottom: 28px;
  width: min(88%, 430px);
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 650;
}

.directory-hero {
  padding: clamp(64px, 8vw, 98px) 0 48px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #f8fbfe);
}

.directory-hero h1 {
  margin-bottom: 13px;
  font-size: clamp(2.3rem, 5vw, 4.1rem);
}

.directory-hero p {
  color: var(--slate);
  font-size: 1.07rem;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.popular-grid .service-card {
  display: flex;
  min-height: 226px;
  flex-direction: column;
  background: #fff;
  text-decoration: none !important;
}

.popular-grid .service-card img {
  height: 164px;
  flex: 0 0 164px;
  background: #edf3f7;
  object-fit: cover;
}

.popular-grid .card-label {
  min-height: 62px;
  flex: 1;
  border-top: 1px solid var(--border);
  background: #fff;
  font-size: 0.88rem;
  line-height: 1.3;
}

.directory-tools {
  position: sticky;
  z-index: 20;
  top: 64px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 20px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(12px);
}

.directory-search {
  display: flex;
  width: min(100%, 700px);
  align-items: center;
  gap: 12px;
  margin-inline: auto;
}

.directory-search input {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
}

.directory-search-count {
  min-width: 90px;
  color: var(--slate);
  font-size: 0.84rem;
  text-align: right;
}

.service-directory {
  columns: 4 240px;
  column-gap: 18px;
}

.service-group {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.035);
}

.service-group[hidden] {
  display: none;
}

.service-group h3 {
  margin-bottom: 13px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--surface-blue);
  font-size: 0.98rem;
  letter-spacing: -0.012em;
}

.service-group ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-group li {
  color: var(--slate);
  font-size: 0.84rem;
  line-height: 1.45;
}

.service-group li::before {
  color: var(--blue);
  content: "› ";
  font-weight: 900;
}

.search-choice-panel {
  position: relative;
  margin: 18px 0 14px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.13), transparent 42%),
    var(--white);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.11);
}

.search-choice-panel[hidden] {
  display: none;
}

.search-choice-panel h2 {
  margin: 3px 42px 7px 0;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.search-choice-panel > p {
  max-width: 680px;
  margin: 0 42px 18px 0;
  color: var(--slate);
  line-height: 1.55;
}

.search-choice-eyebrow {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-choice-close {
  position: absolute;
  top: 10px;
  right: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--slate);
  font: inherit;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.search-choice-close:hover {
  background: var(--surface-blue);
  color: var(--blue);
}

.search-choice-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.search-choice-option {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 13px;
  background: var(--white);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.search-choice-option:hover {
  border-color: var(--blue);
  box-shadow: 0 9px 24px rgba(37, 99, 235, 0.12);
  transform: translateY(-1px);
}

.search-choice-option:focus-visible,
.search-choice-close:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 2px;
}

.search-choice-option--ai {
  background: var(--surface-blue);
}

.search-choice-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-blue);
  color: var(--blue);
  font-size: 1.45rem;
  font-weight: 800;
}

.search-choice-option--ai .search-choice-icon {
  background: var(--white);
}

.search-choice-option strong,
.search-choice-option small {
  display: block;
}

.search-choice-option strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.3;
}

.search-choice-option small {
  color: var(--slate);
  font-size: 0.78rem;
  line-height: 1.45;
}

@media (max-width: 560px) {
  .search-choice-panel {
    margin-top: 14px;
    padding: 18px 14px 14px;
  }

  .search-choice-panel h2,
  .search-choice-panel > p {
    margin-right: 36px;
  }

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

  .search-choice-option {
    min-height: 76px;
    padding: 13px;
  }
}

.directory-service-button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 2px 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.directory-service-button:hover,
.directory-service-button:focus-visible {
  color: var(--blue);
  text-decoration: underline;
}

.directory-results {
  scroll-margin-top: 90px;
}

.directory-professional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.directory-professional-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.directory-professional-card h3,
.directory-professional-card p {
  margin: 0;
}

.directory-professional-meta {
  color: var(--slate);
  font-weight: 700;
}

.directory-professional-services {
  color: var(--muted);
  font-size: 0.9rem;
}

.directory-professional-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.architect-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  padding: 68px 0;
  overflow: hidden;
  background-color: #111e2b;
  background-position: center;
  background-size: cover;
}

.architect-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 20, 31, 0.82), rgba(10, 20, 31, 0.57) 52%, rgba(10, 20, 31, 0.42));
  content: "";
}

.architect-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.7fr);
  align-items: center;
  gap: 60px;
}

.architect-hero-copy h1,
.architect-hero-copy p {
  color: #fff;
}

.architect-hero-copy h1 {
  margin-bottom: 18px;
}

.architect-hero-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

.prompt-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(15px);
}

.prompt-card h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.prompt-card > p {
  margin-bottom: 22px;
  color: var(--slate);
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--navy);
}

.form-group textarea {
  min-height: 88px;
  resize: vertical;
}

.prompt-output {
  display: none;
  max-height: 280px;
  overflow: auto;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  color: var(--navy);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.81rem;
  white-space: pre-wrap;
}

.prompt-output.is-visible {
  display: block;
}

.prompt-actions {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.prompt-actions.is-visible {
  display: grid;
}

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

.value-card {
  padding: 28px;
  text-align: center;
}

.value-card .benefit-icon {
  margin-inline: auto;
}

.value-card p {
  margin-bottom: 0;
  color: var(--slate);
}

.breadcrumb {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--slate);
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--blue-deep);
  text-decoration: none;
}

.prose {
  max-width: 900px;
}

.prose h2 {
  position: relative;
  margin: 42px 0 18px;
  padding-bottom: 13px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

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

.prose h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--blue-deep));
  content: "";
}

.prose p {
  color: var(--slate);
  font-size: 1.02rem;
}

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

.related-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  text-decoration: none;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-card-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-blue);
  color: var(--blue-deep);
  font-weight: 900;
}

.related-card strong {
  display: block;
  color: var(--navy);
}

.related-card span {
  color: var(--slate);
  font-size: 0.82rem;
}

.placeholder-page {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  padding: 72px 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(33, 150, 243, 0.11), transparent 30%),
    var(--surface-alt);
}

.placeholder-card {
  width: min(100%, 720px);
  padding: clamp(38px, 7vw, 72px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.placeholder-mark {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 18px;
  background: var(--surface-blue);
  color: var(--blue-deep);
  font-size: 1.7rem;
  font-weight: 900;
}

.placeholder-card h1 {
  margin-bottom: 15px;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.placeholder-card p {
  max-width: 560px;
  margin: 0 auto 27px;
  color: var(--slate);
  font-size: 1.04rem;
}

.notice {
  display: none;
  margin: 14px auto 0;
  padding: 11px 14px;
  border: 1px solid #bae1ff;
  border-radius: var(--radius-sm);
  background: var(--surface-blue);
  color: #155f8a;
  font-size: 0.88rem;
}

.notice.is-visible {
  display: block;
}

.directory-disclaimer {
  margin: 28px 0 0;
  padding: 18px 20px;
  border: 1px solid #bfdbfe;
  border-left: 5px solid var(--blue);
  border-radius: var(--radius-sm);
  background: var(--surface-blue);
  color: #1e3a5f;
  line-height: 1.65;
}

.directory-disclaimer strong {
  color: var(--blue-deep);
}

.directory-disclaimer a {
  color: var(--blue-deep);
  font-weight: 700;
}

.toast {
  position: fixed;
  z-index: 2000;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100% - 44px));
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  box-shadow: var(--shadow-md);
  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1520px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .service-directory {
    columns: 3 230px;
  }
}

@media (min-width: 1421px) and (max-width: 1640px) {
  .site-nav {
    gap: 2px;
    transform: translateX(30px);
  }

  .site-nav a {
    padding-inline: 6px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 1420px) {
  .header-inner {
    justify-content: flex-end;
    padding-right: 12px;
  }

  .brand {
    width: auto;
    max-width: calc(100% - 140px);
  }

  .brand-logo {
    top: -5px;
    left: 0;
    width: 180px;
  }

  .brand-name {
    display: inline-block !important;
    margin-left: 188px;
    font-size: 0.76rem;
    letter-spacing: 0;
  }

  .mv-lang-switcher {
    position: absolute;
    right: 72px;
    margin: 0;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    right: clamp(12px, 2vw, 40px);
  }

  .social-links {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin: 0;
    padding: 10px clamp(16px, 2vw, 40px) 16px;
    background: linear-gradient(180deg, #2d5775, #1f4763);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.24);
  }

  .site-nav.is-open {
    display: flex;
    animation: navDrop 260ms var(--ease-out);
  }

  @keyframes navDrop {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  .site-nav a {
    padding: 13px 12px;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 30px), var(--content));
  }

  .category-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .location-grid,
  .split-grid,
  .pro-callout-grid,
  .step,
  .pro-hero-grid,
  .architect-hero-grid {
    grid-template-columns: 1fr;
  }

  .step:nth-child(even) .step-copy {
    order: initial;
  }

  .price-grid,
  .hero-card-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 220px;
  }

  .pro-callout-mark {
    display: none;
  }

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

  .pro-hero-visual {
    order: -1;
  }

  .pro-hero-visual img {
    min-height: 360px;
  }

  .metric-card {
    left: 18px;
  }

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

  .tip-note {
    right: 12px;
  }

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

  .service-directory {
    columns: 2 230px;
  }

  .architect-hero-copy {
    text-align: center;
  }

  .architect-hero-copy p {
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .header-inner {
    width: 100%;
    padding-right: 10px;
  }

  .brand {
    left: 8px;
    width: auto;
    max-width: calc(100% - 130px);
  }

  .brand-logo {
    top: -5px;
    left: 0;
    width: 180px;
  }

  .brand-name {
    display: inline-block !important;
    margin-left: 188px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .brand-mobile-name {
    display: none !important;
  }

  .mv-lang-switcher {
    right: 62px;
    margin: 0;
    padding: 1px 3px;
  }

  .mv-lang-switcher button {
    font-size: 11px;
    padding: 3px 5px;
  }

  .home-hero {
    padding-top: 40px;
  }

  .tab-list {
    grid-template-columns: 1fr;
  }

  .tab-button:first-child,
  .tab-button:last-child {
    border-radius: 0;
  }

  .tab-button:first-child {
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  }

  .tab-button:last-child {
    border-bottom: 0;
  }

  .tab-panel {
    padding: 20px 16px;
  }

  .search-form {
    border-radius: var(--radius-sm);
  }

  .search-form input,
  .search-form button {
    border-radius: var(--radius-sm);
  }

  .search-form button {
    min-width: 88px;
  }

  .category-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-link {
    min-height: 84px;
  }

  .footer-grid,
  .benefit-grid,
  .popular-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .step-image img {
    min-height: 270px;
  }

  .metric-card {
    position: static;
    margin: -34px 16px 0;
  }

  .directory-search {
    align-items: stretch;
    flex-direction: column;
  }

  .directory-search-count {
    min-width: 0;
    text-align: center;
  }

  .service-directory {
    columns: 1;
  }

  .prompt-card {
    padding: 22px;
  }

  .prompt-actions {
    grid-template-columns: 1fr;
  }

  .architect-hero {
    min-height: auto;
  }
}

@media (max-width: 380px) {
  .brand {
    left: 6px;
    max-width: calc(100% - 120px);
  }

  .brand-logo {
    width: 160px;
    top: -4px;
  }

  .brand-name {
    margin-left: 168px;
    font-size: 0.65rem;
  }

  .mv-lang-switcher {
    right: 58px;
  }

  .mv-lang-switcher button {
    font-size: 10px;
    padding: 2px 3px;
  }
}

@media (max-width: 340px) {
  .brand-name {
    display: none !important;
  }

  .brand-logo {
    width: 145px;
    top: -4px;
  }

  .brand-name {
    margin-left: 152px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .directory-tools,
  .carousel-controls,
  .toast,
  .button {
    display: none !important;
  }

  body {
    color: #000;
  }

  .section,
  .section--compact,
  .page-hero {
    padding: 24px 0;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Average Price Guide (inspired by Zaask Portugal benchmarks) */
.price-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.price-card-benchmark {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.price-card-benchmark:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 150, 243, 0.45);
  box-shadow: var(--shadow-md);
}

.price-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.price-card-title {
  font-size: 1.1rem;
  font-weight: 750;
  color: var(--navy);
  margin: 0;
}

.price-card-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-deep);
  background: var(--surface-blue);
  padding: 3px 9px;
  border-radius: 999px;
}

.price-card-figure {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--blue);
  margin: 8px 0 4px;
  letter-spacing: -0.02em;
}

.price-card-unit {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate);
}

.price-card-meta {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-size: 0.82rem;
  color: var(--slate);
  display: flex;
  justify-content: space-between;
}
