@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: block;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 600;
  font-display: block;
  src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #111b27;
  --ink-soft: #4e5b69;
  --navy: #061b31;
  --navy-2: #0b2948;
  --orange: #f45524;
  --orange-dark: #d94315;
  --paper: #f7f4ef;
  --mist: #edf3f6;
  --line: #dbe1e5;
  --white: #fff;
  --thermal: linear-gradient(90deg, #6436f2, #ef436e 45%, #ff9a39 76%, #ffe557);
  --shadow: 0 24px 70px rgba(20, 35, 51, .1);
  --radius: 26px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Manrope, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 94px;
  background: #fff;
  border-bottom: 1px solid rgba(23, 32, 42, .08);
  transition: box-shadow .3s ease, height .3s ease;
}
.site-header.is-scrolled { height: 82px; box-shadow: 0 14px 36px rgba(24, 34, 44, .08); }
main { padding-top: 94px; }
.header-inner { display: flex; align-items: center; height: 100%; gap: 30px; }
.brand { flex: 0 0 auto; width: 205px; }
.brand img { width: 100%; height: 66px; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; justify-content: center; gap: 30px; margin-left: auto; }
.nav > a,
.nav-group-label {
  position: relative;
  color: #39434d;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.02em;
  white-space: nowrap;
  transition: color .25s ease;
}
.nav > a::after,
.nav-group-label::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.nav > a:hover::after,
.nav > a[aria-current="page"]::after,
.nav-group-label:hover::after,
.nav-group-label[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav > a:hover, .nav-group-label:hover { color: var(--orange-dark); }
.nav-group { position: relative; }
.nav-group-label { display: inline-flex; align-items: center; gap: 7px; }
.nav-group-label svg { width: 10px; height: 7px; transition: transform .2s ease; }
.nav-submenu {
  position: absolute;
  z-index: 5;
  isolation: isolate;
  top: 100%;
  left: -20px;
  display: grid;
  min-width: 350px;
  padding: 20px 10px 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  transition: opacity .2s ease, transform .2s ease;
}
.nav-submenu::before {
  position: absolute;
  z-index: -1;
  inset: 12px 0 0;
  background: var(--white);
  border: 1px solid rgba(23,32,42,.10);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(14,26,39,.14);
  content: "";
}
.nav-submenu a { padding: 11px 13px; color: #39434d; border-radius: 10px; font-size: 15px; line-height: 1.35; white-space: nowrap; transition: color .2s ease, background .2s ease; }
.nav-submenu a:hover, .nav-submenu a[aria-current="page"] { color: var(--orange-dark); background: #f8f4ef; }
.nav-group:hover .nav-submenu, .nav-group:focus-within .nav-submenu { opacity: 1; pointer-events: auto; transform: none; }
.nav-group:hover .nav-group-label svg, .nav-group:focus-within .nav-group-label svg { transform: rotate(180deg); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  background: var(--orange);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(237, 90, 36, .20);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s ease, box-shadow .2s ease;
}
.header-cta:hover { background: var(--orange-dark); box-shadow: 0 14px 30px rgba(201, 68, 20, .25); }
.header-cta svg { width: 18px; height: 18px; }
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
}
.menu-toggle svg { width: 23px; height: 23px; }

.page-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.page-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 20, 37, .94) 0%, rgba(2, 20, 37, .78) 49%, rgba(2, 20, 37, .35) 100%),
    url("../images/brand/hero.webp") center 42% / cover no-repeat;
}
.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--thermal);
  content: "";
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 70px;
}
.page-hero .eyebrow { color: #ffb391; }
.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 6.7rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.065em;
}
.page-lead {
  max-width: 710px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.65;
}
.page-hero-price {
  display: grid;
  width: min(710px, 100%);
  grid-template-columns: auto auto;
  align-items: baseline;
  justify-content: start;
  gap: 7px 26px;
  margin-top: 30px;
  padding-top: 20px;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.32);
}
.page-hero-price span { color: rgba(255,255,255,.88); font-size: clamp(1rem, 1.25vw, 1.1rem); font-weight: 500; letter-spacing: -.015em; }
.page-hero-price strong { font-size: clamp(2.1rem, 3.15vw, 2.7rem); font-weight: 400; line-height: .95; letter-spacing: -.055em; }
.page-hero-price small { grid-column: 1 / -1; color: rgba(255,255,255,.72); font-size: .85rem; line-height: 1.5; }

.content-section, .story-list { padding: 104px 0; background: var(--paper); }
.section-heading { margin-bottom: 50px; }
.section-heading--center { text-align: center; }
.section-heading h2, .contact-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.055em;
}
.story-list { padding-bottom: 0; }
.story-block { padding: 82px 0; background: var(--white); }
.story-block:nth-of-type(2n) { background: var(--mist); }
.story-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: 68px; }
.story-block--reverse .story-copy { order: 2; }
.story-block--reverse .story-media { order: 1; }
.story-copy {
  position: relative;
  padding: 0;
  background: transparent;
}
.story-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.05em;
}
.rich-text { max-width: 64ch; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.82; }
.story-copy .rich-text { max-width: 59ch; color: #3f4d5a; font-size: 1.08rem; line-height: 1.86; }
.rich-text p { margin: 0 0 1.15em; }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text ol { padding-left: 1.25em; }
.rich-text h2 {
  margin: 2em 0 .7em;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -.04em;
}
.media-grid { display: grid; gap: 16px; }
.media-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.media-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.media-grid--one { grid-template-columns: 1fr; }
.media-card {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(11, 34, 53, .14);
}
.media-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}
.media-card img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; transition: transform .55s ease; }
.media-card:hover img { transform: scale(1.035); }

.price-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.price-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 27px 28px 23px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(20, 35, 51, .055);
}
.price-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--thermal);
  content: "";
}
.price-item--featured {
  grid-column: 1 / -1;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .34fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 8px 48px;
  padding: 29px 32px 27px;
  background: linear-gradient(135deg, #fff, #f8f3ed);
}
.price-item--featured h2 { grid-column: 1; grid-row: 1; max-width: 620px; margin-bottom: 0; font-size: 1.25rem; }
.price-item--featured strong { grid-column: 2; grid-row: 1; font-size: 2.05rem; }
.price-item--featured p { grid-column: 1; grid-row: 2; max-width: 620px; margin-top: 0; font-size: .9rem; }
.price-item--featured a { grid-column: 2; grid-row: 2; margin-top: 0; }
.price-item h2 { margin: 0 0 11px; font-size: 1.05rem; font-weight: 500; line-height: 1.4; }
.price-item strong { color: var(--orange-dark); font-size: 1.75rem; font-weight: 500; letter-spacing: -.04em; line-height: 1.25; }
.price-item p { margin: 9px 0 0; color: var(--ink-soft); font-size: .84rem; line-height: 1.55; }
.price-item a { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 17px; color: var(--ink); border-top: 1px solid var(--line); font-size: .86rem; font-weight: 600; }
.price-item a span { color: var(--orange); font-size: 1.2rem; }
.price-note { margin-top: 28px; color: var(--ink-soft); text-align: center; font-size: .9rem; }

.thermography-intro { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 90px; margin-bottom: 78px; }
.thermography-intro .rich-text { font-size: 1.14rem; line-height: 1.9; }
.feature-image { position: relative; margin: 0; overflow: hidden; background: var(--white); border-radius: 20px; box-shadow: 0 24px 60px rgba(20,35,51,.09); }
.feature-image::before { position: absolute; inset: 0 0 auto; z-index: 1; height: 4px; background: var(--thermal); content: ""; }
.feature-image img { width: 100%; height: auto; }
.article-card { max-width: none; padding: 64px 0 0; background: transparent; border-top: 1px solid #cfd6db; }
.article-copy { max-width: none; font-size: 1.08rem; line-height: 1.9; }
.table-section { margin-top: 100px; }
.page-epulettermografia .article-copy h2,
.table-section > h2 { font-size: clamp(1.85rem, 2.8vw, 2.75rem); font-weight: 400; line-height: 1.2; letter-spacing: -.035em; }
.table-section > h2 { max-width: 1120px; margin: 0 0 36px; }
.table-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; font-size: .94rem; }
th, td { padding: 19px 24px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--white); background: var(--navy); font-weight: 500; }
th:last-child, td:last-child { width: 190px; text-align: right; white-space: nowrap; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: #f8fafb; }

.testimonial-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.testimonial {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  margin: 0;
  padding: 42px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(20, 35, 51, .07);
}
.testimonial--wide { grid-column: 1 / -1; min-height: 0; color: var(--white); background: var(--navy); }
.quote-mark { height: 45px; color: var(--orange); font: 400 5rem/1 Georgia, serif; }
.testimonial p { margin: 18px 0 30px; font-size: 1rem; line-height: 1.82; }
.testimonial footer { margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(80, 96, 112, .2); font-size: .88rem; font-weight: 600; }

.page-hazvasarlas-elotti-vizsgalat .page-hero-media {
  background:
    linear-gradient(90deg, rgba(2,20,37,.92) 0%, rgba(2,20,37,.72) 42%, rgba(2,20,37,.2) 76%, rgba(2,20,37,.08) 100%),
    url("../images/brand/purchase-inspection-hero-v2.webp") center 52% / cover no-repeat;
}
.page-hazvasarlas-elotti-vizsgalat .page-hero,
.page-hazvasarlas-elotti-vizsgalat .page-hero-inner { min-height: 410px; }
.page-hazvasarlas-elotti-vizsgalat .page-hero h1 { max-width: 1120px; font-size: clamp(2.8rem, 5.2vw, 5.25rem); line-height: 1.02; }
.purchase-article { padding: 96px 0 116px; background: var(--white); }
.purchase-article-inner { width: min(calc(100% - 48px), 1240px); }
.purchase-section { margin: 0 0 58px; padding: 0 0 58px; border-bottom: 1px solid #d3d9de; }
.purchase-section h2 { max-width: 1180px; margin: 0 0 30px; color: var(--ink); font-size: clamp(1.85rem, 3vw, 3rem); font-weight: 500; line-height: 1.18; letter-spacing: -.045em; }
.purchase-section h3 { margin: 0 0 16px; color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 600; line-height: 1.35; letter-spacing: -.025em; }
.purchase-section p { max-width: 112ch; margin: 0 0 1.15em; color: #455361; font-size: 1.06rem; line-height: 1.84; }
.purchase-section .purchase-strong { color: var(--ink); font-weight: 600; }
.purchase-section ul { max-width: 110ch; margin: 20px 0 28px; padding-left: 1.35em; color: #34424f; font-size: 1.03rem; line-height: 1.75; }
.purchase-section li { padding-left: 5px; margin: 3px 0; }
.purchase-subsection { margin-top: 38px; padding-top: 38px; border-top: 1px solid #e0e4e7; }
.purchase-scope > h2 + .purchase-subsection { margin-top: 0; padding-top: 0; border-top: 0; }
.purchase-final { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.purchase-button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-width: 0; margin-top: 16px; padding: 13px 17px; color: var(--white); background: var(--orange); border-radius: 10px; font-size: .94rem; font-weight: 600; transition: background .2s ease, transform .2s ease; }
.purchase-button:hover { background: var(--orange-dark); transform: translateY(-2px); }
.purchase-button span { font-size: 1rem; }

.contact-callouts-layout {
  display: grid;
  grid-template-columns: minmax(260px, .66fr) minmax(0, 1.34fr);
  align-items: start;
  gap: 104px;
}
.contact-callouts-heading { position: sticky; top: 126px; margin-bottom: 0; }
.contact-primary-phone { display: grid; gap: 4px; margin-top: 48px; padding: 20px 0; border-top: 1px solid #cfd6db; border-bottom: 1px solid #cfd6db; }
.contact-primary-phone span { color: var(--ink-soft); font-size: .74rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.contact-primary-phone strong { color: var(--orange-dark); font-size: clamp(1.35rem, 2.2vw, 1.75rem); font-weight: 500; letter-spacing: -.035em; }
.callout-list { border-top: 1px solid #cfd6db; }
.callout-row { display: grid; grid-template-columns: 24px minmax(0, 1fr) 30px; align-items: start; gap: 18px; padding: 27px 0; border-bottom: 1px solid #cfd6db; }
.callout-marker { width: 16px; height: 2px; margin-top: .82em; background: var(--orange); }
.callout-row p { max-width: 52ch; margin: 0; color: var(--ink); font-size: 1.08rem; line-height: 1.65; }
.callout-arrow { color: var(--orange); font-size: 1.22rem; transition: transform .2s ease; }
.callout-row:hover .callout-arrow { transform: translate(3px, -3px); }

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 0;
  background: #061b31;
}
.contact-section::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("../images/brand/contact-thermal-ai.webp") 50% 52% / cover no-repeat;
  filter: saturate(.9) contrast(1.06);
  opacity: .96;
  transform: scale(1.01);
  pointer-events: none;
  content: "";
}
.contact-section::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,27,49,.93) 0%, rgba(6,27,49,.80) 42%, rgba(6,27,49,.72) 100%),
    linear-gradient(180deg, rgba(6,27,49,.04), rgba(6,27,49,.32));
  pointer-events: none;
  content: "";
}
.contact-shell { position: relative; z-index: 1; display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 80px; }
.contact-copy h2 { color: #fff; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.contact-links { display: grid; gap: 12px; margin-top: 32px; }
.contact-links a, .contact-links span { color: rgba(255,255,255,.82); }
.contact-links a:hover { color: #fff; }
.contact-location { display: flex; align-items: center; gap: 7px; }
.contact-location svg { width: 17px; height: 17px; flex: 0 0 17px; color: #ff6a37; }
.contact-prices { display: grid; gap: 8px; margin-top: 28px; color: rgba(255,255,255,.70); font-size: .88rem; }
.contact-prices strong { color: #fff; font-weight: 600; }
.purchase-contact-price { display: grid; width: fit-content; gap: 3px; margin-top: 28px; padding-left: 16px; border-left: 2px solid var(--orange); }
.purchase-contact-price span { color: rgba(255,255,255,.72); font-size: .84rem; }
.purchase-contact-price strong { color: #fff; font-size: 1.9rem; font-weight: 500; line-height: 1.2; letter-spacing: -.045em; }
.purchase-contact-price small { max-width: 330px; color: rgba(255,255,255,.62); font-size: .76rem; line-height: 1.45; }
.offer-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 44px;
  background: var(--white);
  border: 1px solid rgba(17,27,39,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.field { display: grid; gap: 8px; }
.field--full, .submit, .form-status { grid-column: 1 / -1; }
.field label { color: #3f4b58; font-size: .875rem; font-weight: 500; }
.field input, .field textarea {
  width: 100%;
  min-height: 56px;
  padding: 13px 15px;
  color: var(--ink);
  background: #fcfcfc;
  border: 1px solid #d8dde1;
  border-radius: 13px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(244,85,36,.08); }
.submit {
  min-height: 58px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 600;
}
.submit:hover { background: var(--orange-dark); }
.hp-field { position: absolute; left: -9999px; }
.form-status {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-left-width: 4px;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.55;
}
.form-status--success { color: #175a36; background: #edf9f2; border-color: #9bd5b3; }
.form-status--error { color: #8e2f1d; background: #fff0ec; border-color: #f0b3a5; }

.footer { padding: 64px 0 24px; color: rgba(255,255,255,.72); background: #101a25; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr; gap: 70px; padding-bottom: 46px; }
.footer h2 { margin: 0 0 20px; color: var(--white); font-size: 18px; font-weight: 500; }
.footer p { margin: 0; }
.footer-brand { width: 190px; margin-bottom: 22px; padding: 8px; border-radius: 10px; background: #fff; }
.footer-menu, .footer-contact { display: grid; gap: 10px; }
.footer a:hover { color: var(--white); }
.copyright { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10); font-size: 13px; }
.mobile-actionbar { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .site-header, .site-header.is-scrolled { height: 78px; }
  main { padding-top: 78px; }
  .header-inner { justify-content: space-between; }
  .brand { width: 165px; }
  .brand img { height: 58px; }
  .header-cta { margin-left: 0; }
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    position: fixed;
    z-index: 99;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    max-height: calc(100dvh - 78px);
    margin: 0;
    padding: 20px 24px 28px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: 0 30px 50px rgba(14,26,39,.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .nav > a, .nav-group-label { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
  .nav > a::after, .nav-group-label::after { display: none; }
  .nav-group-label { justify-content: space-between; }
  .nav-group-label svg { transform: rotate(180deg); }
  .nav-submenu { position: static; min-width: 0; padding: 4px 0 8px 18px; opacity: 1; pointer-events: auto; transform: none; }
  .nav-submenu::before { display: none; }
  .nav-submenu a { padding: 10px 0; color: var(--ink-soft); border-radius: 0; font-size: 16px; white-space: normal; }
  .nav-submenu a:hover, .nav-submenu a[aria-current="page"] { background: transparent; }
  .story-grid { gap: 38px; }
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-callouts-layout { gap: 54px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 72px; font-size: 16px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .header-inner { gap: 12px; }
  .brand { width: 142px; }
  .brand img { height: 54px; }
  .header-cta { display: none; }
  .page-hero, .page-hero-inner { min-height: 390px; }
  .page-hero-media { background-position: 61% center; }
  .page-hero-inner { padding-block: 54px; }
  .page-hero h1 { max-width: 94%; font-size: clamp(2.7rem, 15vw, 4.7rem); line-height: 1; }
  .page-epulettermografia .page-hero h1 { max-width: 100%; font-size: clamp(2rem, 9.6vw, 2.9rem); line-height: 1.04; overflow-wrap: anywhere; }
  .page-lead { max-width: 96%; margin-top: 22px; font-size: .96rem; line-height: 1.55; }
  .page-hero-price { width: 100%; grid-template-columns: 1fr; align-items: start; gap: 7px; margin-top: 24px; padding-top: 16px; }
  .page-hero-price strong { font-size: 1.9rem; }
  .page-hero-price small { grid-column: auto; }
  .content-section, .story-list, .contact-section { padding: 72px 0; }
  .contact-section::before { inset: 0; background-position: 58% center; filter: saturate(.88) contrast(1.04); opacity: .94; }
  .contact-section::after { background: rgba(6,27,49,.82); }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .contact-copy h2 { font-size: clamp(2.25rem, 12vw, 3.6rem); }
  .story-list { padding-bottom: 0; }
  .story-block { padding: 56px 0; }
  .story-grid, .thermography-intro, .contact-shell, .contact-callouts-layout { grid-template-columns: 1fr; gap: 32px; }
  .story-block--reverse .story-copy, .story-block--reverse .story-media { order: initial; }
  .story-copy, .story-block--reverse .story-copy { padding: 0; border-radius: 0; }
  .story-copy h2 { font-size: 2.15rem; }
  .rich-text, .article-copy { font-size: 1.02rem; line-height: 1.8; }
  .story-copy .rich-text { font-size: 1rem; line-height: 1.82; }
  .media-grid--four, .media-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .media-card, .media-card img { min-height: 155px; }
  .media-card { border-radius: 14px; }
  .price-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .price-item--featured { grid-column: auto; display: flex; }
  .price-item { min-height: 0; padding: 24px 23px 20px; }
  .price-item--featured h2,
  .price-item--featured strong,
  .price-item--featured p,
  .price-item--featured a { grid-column: auto; grid-row: auto; }
  .price-item--featured h2 { margin-bottom: 11px; }
  .price-item--featured p { margin-top: 9px; }
  .price-item--featured a { margin-top: 22px; }
  .contact-callouts-heading { position: static; }
  .thermography-intro { margin-bottom: 34px; }
  .thermography-intro .rich-text { font-size: 1rem; line-height: 1.75; }
  .feature-image { border-radius: 18px; }
  .article-card { padding: 38px 0 0; }
  .table-section { margin-top: 65px; }
  .page-epulettermografia .article-copy h2, .table-section > h2 { font-size: 1.9rem; line-height: 1.24; }
  th, td { padding: 15px; font-size: .82rem; }
  th:last-child, td:last-child { width: 125px; }
  .testimonial { min-height: 0; padding: 30px 24px; }
  .testimonial--wide { grid-column: auto; }
  .page-hazvasarlas-elotti-vizsgalat .page-hero h1 { max-width: 100%; font-size: clamp(2.3rem, 10.8vw, 3.7rem); line-height: 1.05; }
  .page-hazvasarlas-elotti-vizsgalat .page-hero-media { background-position: 68% center; }
  .purchase-article { padding: 66px 0 78px; }
  .purchase-article-inner { width: min(calc(100% - 30px), 1080px); }
  .purchase-section { margin-bottom: 42px; padding-bottom: 42px; }
  .purchase-section h2 { margin-bottom: 23px; font-size: 1.82rem; line-height: 1.23; }
  .purchase-section h3 { font-size: 1.24rem; }
  .purchase-section p { font-size: 1rem; line-height: 1.76; }
  .purchase-section ul { margin-block: 17px 24px; font-size: .98rem; line-height: 1.68; }
  .purchase-subsection { margin-top: 30px; padding-top: 30px; }
  .purchase-button { width: 100%; min-width: 0; }
  .contact-primary-phone { margin-top: 30px; }
  .callout-row { grid-template-columns: 18px minmax(0, 1fr) 24px; gap: 12px; padding: 23px 0; }
  .callout-marker { width: 12px; }
  .callout-row p { font-size: 1.03rem; line-height: 1.62; }
  .contact-copy { padding: 0 4px; }
  .offer-form { grid-template-columns: 1fr; padding: 29px 21px; border-radius: 20px; }
  .field, .field--full, .submit, .form-status { grid-column: 1; }
  .footer { padding-bottom: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .mobile-actionbar {
    position: fixed;
    z-index: 120;
    inset: auto 10px calc(8px + env(safe-area-inset-bottom)) 10px;
    display: grid;
    grid-template-columns: .8fr .8fr 1.45fr;
    gap: 6px;
    min-height: 58px;
    padding: 6px;
    color: var(--white);
    background: rgba(12, 29, 47, .94);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(9, 24, 39, .30);
    backdrop-filter: blur(16px);
  }
  .mobile-actionbar a { display: flex; align-items: center; justify-content: center; gap: 7px; color: #fff; border-radius: 13px; font-size: 12px; font-weight: 600; }
  .mobile-actionbar a:last-child { background: linear-gradient(90deg, #e94d18, #ff7137); }
  .mobile-actionbar b { font-size: 17px; font-weight: 400; line-height: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
