:root {
  --navy: #132843;
  --navy-2: #1e3b5d;
  --brick: #c94f36;
  --brick-dark: #9f3725;
  --gold: #e8b94f;
  --cream: #f4efe6;
  --paper: #fffdf8;
  --sage: #2f6d63;
  --ink: #1a2b38;
  --muted: #64717a;
  --line: #d8d1c5;
  --white: #fff;
  --shadow: 10px 10px 0 rgba(19,40,67,.12);
  --shadow-dark: 10px 10px 0 #0c1b2e;
  --radius: 14px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Aptos, "Segoe UI", Arial, sans-serif; line-height: 1.58; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
:where(a, button, input, summary):focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); font-family: "Arial Narrow", Aptos, "Segoe UI", sans-serif; font-weight: 900; line-height: .98; letter-spacing: -.055em; }
h1 { font-size: clamp(3.7rem, 7.6vw, 7.9rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.35rem, 4.5vw, 4.8rem); }
h3 { font-size: clamp(1.35rem, 2.1vw, 1.9rem); }
.container { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }
.narrow { width: min(840px, calc(100% - 44px)); }
.section { padding: clamp(80px, 9vw, 128px) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: -80px; padding: 12px 18px; color: #fff; background: var(--navy); border: 2px solid #fff; }
.skip-link:focus { top: 16px; }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; color: var(--brick); font-size: .76rem; font-weight: 950; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 10px; height: 10px; background: currentColor; transform: rotate(45deg); }
.lead { max-width: 680px; color: #c4ced8; font-size: clamp(1.06rem, 1.6vw, 1.3rem); }
.button { display: inline-flex; min-height: 52px; padding: 12px 23px; align-items: center; justify-content: center; color: #fff; background: var(--brick); border: 2px solid var(--brick); border-radius: 5px; box-shadow: 5px 5px 0 var(--gold); font-weight: 900; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translate(3px,3px); background: var(--brick-dark); box-shadow: 2px 2px 0 var(--gold); }
.button-small { min-height: 42px; padding: 8px 16px; font-size: .9rem; }
.button-full { width: 100%; }
.button-ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,.55); box-shadow: none; }
.button-ghost:hover { color: var(--navy); background: var(--gold); border-color: var(--gold); }
.button-light { color: var(--navy); background: var(--paper); border-color: var(--paper); box-shadow: 5px 5px 0 var(--gold); }
.button-light:hover { color: #fff; background: var(--brick); border-color: var(--brick); }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--brick-dark); font-weight: 900; }
.text-link:hover { color: var(--navy); }
.text-link-light { color: #fff; }
.text-link-call { color: var(--sage); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 30px; }

.topbar { color: #fff; background: var(--brick); font-size: .77rem; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 34px; font-weight: 750; letter-spacing: .03em; }
.topbar a { font-weight: 950; }
.site-header { position: sticky; z-index: 100; top: 0; padding: 10px 0; background: rgba(244,239,230,.94); border-bottom: 2px solid var(--navy); backdrop-filter: blur(14px); }
.header-inner { min-height: 60px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand > span:last-child { display: grid; line-height: .95; }
.brand strong { color: var(--navy); font-size: 1rem; letter-spacing: -.03em; }
.brand small { color: var(--brick); font-size: .83rem; font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
.brand-mark { position: relative; width: 44px; height: 44px; overflow: hidden; background: var(--navy); border: 2px solid var(--navy); }
.brand-mark span { position: absolute; display: block; background: var(--gold); }
.brand-mark span:nth-child(1) { width: 25px; height: 5px; left: 8px; top: 8px; }
.brand-mark span:nth-child(2) { width: 5px; height: 27px; left: 8px; top: 8px; }
.brand-mark span:nth-child(3) { width: 25px; height: 16px; left: 8px; bottom: 6px; background: var(--brick); }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 0; flex: 1; }
.main-nav a { padding: 9px 11px; color: #31465c; border-bottom: 3px solid transparent; font-size: .86rem; font-weight: 800; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--brick-dark); border-color: var(--brick); }
.header-call { margin-left: auto; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 9px; background: transparent; border: 2px solid var(--navy); }
.menu-toggle > span:not(.sr-only) { display: block; height: 3px; margin: 5px 0; background: var(--navy); }

.debrecen-hero { position: relative; min-height: 760px; overflow: hidden; color: #fff; background: var(--navy); }
.debrecen-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 18px; background: repeating-linear-gradient(90deg,var(--gold) 0 60px,var(--brick) 60px 120px,var(--paper) 120px 180px); }
.hero-city-code { position: absolute; z-index: 0; left: -2vw; bottom: -7vw; color: rgba(255,255,255,.035); font: 950 clamp(13rem,31vw,33rem)/.75 "Arial Narrow", Arial, sans-serif; letter-spacing: -.11em; }
.hero-grid { position: relative; z-index: 2; min-height: 742px; display: grid; grid-template-columns: .96fr 1.04fr; align-items: stretch; gap: 0; }
.hero-copy { position: relative; z-index: 3; padding: 96px 62px 104px 0; display: flex; flex-direction: column; justify-content: center; border-right: 2px solid rgba(255,255,255,.16); }
.debrecen-hero .eyebrow { color: var(--gold); }
.debrecen-hero h1 { max-width: 700px; margin-bottom: 30px; color: #fff; text-transform: uppercase; }
.debrecen-hero h1 span { display: block; color: var(--gold); }
.hero-visual { position: relative; min-height: 742px; padding: 65px 0 65px 65px; display: flex; align-items: center; justify-content: center; background: var(--brick); }
.hero-visual::before { content: ""; position: absolute; inset: 9% 8% 9% 10%; background: var(--cream); border: 3px solid var(--navy); box-shadow: var(--shadow-dark); transform: rotate(-2deg); }
.hero-visual img { position: relative; z-index: 3; width: min(610px,95%); max-height: 520px; object-fit: contain; filter: drop-shadow(0 30px 24px rgba(19,40,67,.32)); }
.city-grid { position: absolute; z-index: 1; inset: 0; background: linear-gradient(rgba(19,40,67,.14) 2px,transparent 2px),linear-gradient(90deg,rgba(19,40,67,.14) 2px,transparent 2px); background-size: 44px 44px; }
.hero-coordinate { position: absolute; z-index: 4; right: 24px; top: 26px; color: var(--navy); background: var(--gold); padding: 7px 10px; font-size: .68rem; font-weight: 950; letter-spacing: .13em; }
.floating-card { position: absolute; z-index: 5; left: 38px; bottom: 48px; width: min(320px,75%); padding: 19px 22px; color: #fff; background: var(--navy); border: 2px solid #fff; box-shadow: 7px 7px 0 var(--gold); }
.floating-card span, .floating-card small { display: block; color: #bac8d6; font-size: .7rem; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.floating-card strong { display: block; margin: 6px 0; line-height: 1.1; }
.floating-card small { color: var(--gold); }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; margin: 10px 0; }
.check-list li::before { content: "+"; position: absolute; left: 0; color: var(--brick); font-weight: 950; }
.check-list-inline { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 30px; color: #ccd4dc; font-size: .82rem; font-weight: 800; }
.check-list-inline li { margin: 0; }
.check-list-inline li::before { color: var(--gold); }

.metric-ribbon { padding: 34px 0; background: var(--cream); border-bottom: 2px solid var(--navy); }
.metric-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 2px solid var(--navy); background: var(--paper); box-shadow: var(--shadow); }
.metric-grid > div { min-height: 118px; padding: 23px 27px; display: flex; flex-direction: column; justify-content: center; border-right: 2px solid var(--navy); }
.metric-grid > div:last-child { border-right: 0; }
.metric-grid strong { color: var(--brick); font: 950 2.8rem/1 "Arial Narrow", Arial, sans-serif; }
.metric-grid span { color: var(--navy); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }

.shipping-section { padding: 74px 0; background: var(--paper); }
.shipping-ticket { position: relative; min-height: 240px; padding: 42px 48px 42px 190px; display: grid; grid-template-columns: 1fr auto; gap: 45px; align-items: center; color: #fff; background: var(--sage); border: 3px solid var(--navy); box-shadow: var(--shadow); }
.shipping-ticket::before, .shipping-ticket::after { content: ""; position: absolute; left: 145px; width: 24px; height: 24px; background: var(--paper); border: 3px solid var(--navy); border-radius: 50%; }
.shipping-ticket::before { top: -14px; }
.shipping-ticket::after { bottom: -14px; }
.shipping-ticket h2 { max-width: 760px; margin-bottom: 0; color: #fff; font-size: clamp(2.1rem,3.7vw,3.9rem); }
.shipping-ticket .eyebrow { color: #fff; }
.shipping-code { position: absolute; left: 0; top: 0; bottom: 0; width: 158px; display: grid; place-items: center; color: var(--navy); background: var(--gold); border-right: 3px dashed var(--navy); font-size: .88rem; font-weight: 950; letter-spacing: .12em; writing-mode: vertical-rl; transform: rotate(180deg); }

.section-heading { max-width: 900px; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 0; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.15fr .85fr; gap: 65px; align-items: end; }
.split-heading > p { margin-bottom: 5px; color: var(--muted); }
.category-showcase { background: var(--cream); border-block: 2px solid var(--navy); }
.category-showcase-grid { display: grid; grid-template-columns: 1.12fr .88fr .88fr; gap: 20px; }
.category-tile { position: relative; min-height: 390px; padding: 32px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; background: var(--paper); border: 2px solid var(--navy); box-shadow: 7px 7px 0 rgba(19,40,67,.12); transition: transform .18s ease, box-shadow .18s ease; }
.category-tile::before { content: ""; position: absolute; right: -40px; top: -40px; width: 150px; height: 150px; background: var(--gold); transform: rotate(45deg); }
.category-tile:hover { transform: translate(4px,4px); box-shadow: 3px 3px 0 rgba(19,40,67,.12); }
.category-tile > span { position: absolute; left: 30px; top: 27px; color: var(--brick); font-size: .73rem; font-weight: 950; letter-spacing: .1em; }
.category-tile h3 { margin-bottom: 16px; font-size: clamp(2rem,3vw,3.5rem); text-transform: uppercase; }
.category-tile p { color: var(--muted); }
.category-tile strong { margin-top: 20px; color: var(--brick-dark); }
.category-tile-main { color: #d6e0e8; background: var(--navy); }
.category-tile-main h3 { color: #fff; }
.category-tile-main p { color: #c7d1dc; }
.category-tile-main strong, .category-tile-main > span { color: var(--gold); }
.category-tile-main::before { background: var(--brick); }

.mobile-service-band { color: #fff; background: var(--brick); }
.mobile-service-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.mobile-service-grid h2 { color: #fff; }
.mobile-service-grid .eyebrow { color: var(--gold); }
.mobile-service-grid > div > p { max-width: 660px; color: #f1d8d1; }
.mobile-service-grid .text-link { color: #fff; }
.mobile-service-grid ol { margin: 0; padding: 0; list-style: none; background: var(--paper); border: 3px solid var(--navy); box-shadow: var(--shadow-dark); }
.mobile-service-grid li { display: grid; grid-template-columns: 76px 1fr; align-items: center; min-height: 82px; color: var(--navy); border-bottom: 2px solid var(--navy); font-size: 1.02rem; font-weight: 900; }
.mobile-service-grid li:last-child { border-bottom: 0; }
.mobile-service-grid li span { height: 100%; display: grid; place-items: center; color: #fff; background: var(--navy); font-weight: 950; }

.section-products { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.product-grid-three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.product-card { min-width: 0; overflow: hidden; background: #fff; border: 2px solid var(--navy); box-shadow: 6px 6px 0 rgba(19,40,67,.11); transition: transform .18s ease, box-shadow .18s ease; }
.product-card:hover { transform: translate(4px,4px); box-shadow: 2px 2px 0 rgba(19,40,67,.11); }
.product-image { position: relative; min-height: 285px; padding: 28px; display: grid; place-items: center; overflow: hidden; background: var(--cream); border-bottom: 2px solid var(--navy); }
.product-image::after { content: ""; position: absolute; right: -44px; bottom: -44px; width: 125px; height: 125px; background: var(--gold); transform: rotate(45deg); opacity: .7; }
.product-image img { position: relative; z-index: 2; width: 100%; height: 235px; object-fit: contain; transition: transform .2s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-badge { position: absolute; z-index: 4; left: 16px; top: 16px; padding: 6px 10px; color: #fff; background: var(--brick); border: 2px solid var(--navy); font-size: .68rem; font-weight: 950; text-transform: uppercase; }
.image-placeholder { color: var(--brick); font-size: 4rem; font-weight: 950; opacity: .3; }
.product-card-body { padding: 26px; }
.product-kicker { margin-bottom: 9px; color: var(--brick); font-size: .71rem; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.product-card h3 { min-height: 2.1em; margin-bottom: 13px; }
.product-summary { min-height: 4.8em; color: var(--muted); font-size: .91rem; }
.price-block { display: grid; gap: 2px; margin: 23px 0 19px; padding-top: 18px; border-top: 2px solid var(--navy); }
.price-block > strong { color: var(--navy); font-size: 1.5rem; }
.price-block > span { color: var(--muted); font-size: .84rem; }
.price-block span span, .price-block strong span { font-size: .66em; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.old-price { text-decoration: line-through; }
.product-card-links { display: flex; justify-content: space-between; gap: 14px; font-size: .88rem; }

.network-section { color: #cdd6df; background: var(--navy); border-top: 14px solid var(--gold); }
.network-panel { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.network-panel h2 { color: #fff; }
.network-panel .eyebrow { color: var(--gold); }

.page-hero { position: relative; padding: 76px 0 88px; overflow: hidden; color: #d8e0e8; background: var(--navy); border-bottom: 16px solid var(--gold); }
.page-hero::after { content: ""; position: absolute; right: -95px; top: -105px; width: 390px; height: 390px; background: var(--brick); transform: rotate(36deg); }
.page-hero.compact { padding-bottom: 66px; }
.breadcrumbs { position: relative; z-index: 2; display: flex; gap: 10px; margin-bottom: 37px; color: #9fafbd; font-size: .8rem; }
.breadcrumbs a { color: var(--gold); font-weight: 900; }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.18fr .82fr; gap: 65px; align-items: end; }
.page-hero-grid h1 { max-width: 920px; margin-bottom: 0; color: #fff; font-size: clamp(3.2rem,6vw,6.4rem); text-transform: uppercase; }
.page-hero-grid p { color: #c4cfda; font-size: 1.08rem; }
.page-hero .eyebrow { color: var(--gold); }
.catalog-categories { position: sticky; z-index: 70; top: 82px; background: rgba(244,239,230,.95); border-bottom: 2px solid var(--navy); backdrop-filter: blur(12px); }
.category-links { min-height: 72px; display: flex; align-items: center; gap: 6px; overflow-x: auto; }
.category-links a { flex: 0 0 auto; padding: 9px 14px; color: var(--navy); border: 2px solid transparent; font-size: .86rem; font-weight: 900; }
.category-links a span { margin-left: 7px; color: var(--brick); }
.category-links a[aria-current="page"] { color: #fff; background: var(--navy); border-color: var(--navy); }
.category-links a[aria-current="page"] span { color: var(--gold); }
.catalog-section { background: var(--cream); }
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 35px; }
.search-field { flex: 1; max-width: 590px; }
.search-field input { width: 100%; min-height: 56px; padding: 13px 18px; color: var(--navy); background: #fff; border: 2px solid var(--navy); border-radius: 0; outline: none; box-shadow: 4px 4px 0 rgba(19,40,67,.11); }
.search-field input:focus { box-shadow: 4px 4px 0 var(--gold); }
.catalog-count { color: var(--muted); }
.catalog-count strong { color: var(--brick); }
.empty-state { padding: 28px; text-align: center; background: var(--paper); border: 2px solid var(--navy); }
.advice-section { background: var(--paper); }
.advice-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.advice-list { display: grid; gap: 12px; }
.advice-list > div { padding: 24px; background: var(--cream); border: 2px solid var(--navy); }
.advice-list p { margin-bottom: 0; color: var(--muted); }

.product-detail-hero { padding: 56px 0 92px; background: var(--cream); border-bottom: 2px solid var(--navy); }
.product-detail-hero .breadcrumbs { color: var(--muted); }
.product-detail-hero .breadcrumbs a { color: var(--brick); }
.product-detail-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 62px; align-items: start; }
.gallery-main { position: relative; min-height: 555px; padding: 40px; display: grid; place-items: center; overflow: hidden; background: #fff; border: 3px solid var(--navy); box-shadow: var(--shadow); }
.gallery-main::after { content: ""; position: absolute; right: -55px; top: -55px; width: 150px; height: 150px; background: var(--gold); transform: rotate(45deg); }
.gallery-main img { position: relative; z-index: 2; width: 100%; height: 470px; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; overflow-x: auto; }
.gallery-thumb { width: 84px; height: 70px; padding: 7px; background: #fff; border: 2px solid var(--navy); cursor: pointer; }
.gallery-thumb.is-active { background: var(--gold); border-color: var(--brick); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-detail-copy { padding-top: 28px; }
.product-detail-copy h1 { margin-bottom: 22px; font-size: clamp(2.9rem,4.7vw,5.2rem); text-transform: uppercase; }
.product-detail-copy .lead { min-height: 0; color: var(--muted); font-size: 1.02rem; }
.detail-price { margin: 28px 0; padding: 22px 0; border-block: 2px solid var(--navy); }
.detail-price strong { display: block; color: var(--brick); font-size: 2.2rem; }
.detail-price > span { color: var(--muted); }
.price-note { color: var(--muted); font-size: .79rem; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.product-detail-copy .product-highlights { display: grid; gap: 8px; margin: 25px 0; padding: 0; list-style: none; }
.product-highlights { padding: 56px 0; color: #fff; background: var(--sage); border-bottom: 2px solid var(--navy); }
.product-highlights h2 { color: #fff; font-size: clamp(2rem,3.4vw,3.5rem); }
.product-highlights .eyebrow { color: var(--gold); }
.product-highlights ul { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.product-highlights li { padding: 13px 16px 13px 42px; color: var(--navy); background: var(--paper); border: 2px solid var(--navy); }
.product-highlights li::before { content: "+"; float: left; margin-left: -26px; color: var(--brick); font-weight: 950; }
.product-content-section { background: var(--paper); }
.content-layout { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 70px; align-items: start; }
.prose { min-width: 0; color: #3d505d; }
.prose h2 { margin: 46px 0 17px; color: var(--navy); font-size: clamp(1.7rem,2.8vw,2.7rem); }
.prose > h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 19px; }
.prose ul { padding-left: 22px; }
.prose .kiemelt-doboz, .prose .helyi-doboz, .prose .helyi-kiegeszites, .prose .helyi-cta-doboz, .prose .cta-doboz, .prose .figyelmeztetes { margin: 30px 0; padding: 25px 28px; background: var(--cream); border: 2px solid var(--navy); box-shadow: 5px 5px 0 rgba(19,40,67,.09); }
.prose .kiemelt-doboz, .prose .helyi-doboz { border-left: 9px solid var(--sage); }
.prose .cta-doboz, .prose .helyi-cta-doboz { border-left: 9px solid var(--brick); }
.prose .figyelmeztetes { border-left: 9px solid var(--gold); }
.prose div h2 { margin-top: 0; font-size: 1.68rem; }
.sticky-aside { position: sticky; top: 176px; }
.aside-card { padding: 29px; color: #c8d3dd; background: var(--navy); border: 3px solid var(--navy); box-shadow: 7px 7px 0 var(--gold); }
.aside-card h2 { color: #fff; font-size: 2rem; }
.aside-card .eyebrow { color: var(--gold); }
.aside-card .text-link { margin-top: 18px; color: #fff; }
.aside-card .check-list li::before { color: var(--gold); }
.related-services { display: grid; gap: 9px; margin-top: 25px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); }
.related-services a { color: #d4dde5; font-size: .9rem; }
.video-card { min-height: 200px; margin-top: 18px; padding: 24px; display: grid; place-items: center; text-align: center; color: #fff; background: var(--brick); border: 3px solid var(--navy); box-shadow: var(--shadow); }

.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 35px; }
.contact-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.contact-card { min-height: 180px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; background: #fff; border: 2px solid var(--navy); box-shadow: 4px 4px 0 rgba(19,40,67,.09); }
.contact-card:hover { box-shadow: 4px 4px 0 var(--gold); }
.contact-card span, .contact-card small { color: var(--muted); font-size: .75rem; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.contact-card strong { color: var(--navy); font-size: 1.23rem; line-height: 1.25; }
.contact-card-accent { background: var(--gold); }
.service-area-panel { padding: 40px; color: #fff; background: var(--brick); border: 3px solid var(--navy); box-shadow: var(--shadow-dark); }
.service-area-panel h2 { color: #fff; font-size: 3rem; }
.service-area-panel .eyebrow { color: var(--gold); }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 25px 0; }
.area-tags span { padding: 7px 11px; color: var(--navy); background: var(--paper); border: 2px solid var(--navy); font-size: .79rem; font-weight: 900; }
.service-area-panel .text-link { display: flex; margin-top: 18px; color: #fff; }
.visit-section, .process-section, .cost-section { background: var(--cream); border-block: 2px solid var(--navy); }
.visit-grid, .process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 65px; }
.check-panels { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }
.check-panels > div { padding: 23px; background: #fff; border: 2px solid var(--navy); }
.check-panels p { margin-bottom: 0; color: var(--muted); }
.service-detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.service-detail-grid article { min-height: 260px; padding: 29px; background: #fff; border: 2px solid var(--navy); box-shadow: 5px 5px 0 rgba(19,40,67,.09); }
.service-detail-grid article > span { color: var(--brick); font-size: 1.7rem; font-weight: 950; }
.service-detail-grid p { color: var(--muted); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 22px 0; border-bottom: 2px solid var(--navy); }
.process-list li > span { width: 62px; height: 55px; display: grid; place-items: center; color: #fff; background: var(--brick); border: 2px solid var(--navy); box-shadow: 4px 4px 0 var(--gold); font-weight: 950; }
.process-list p { margin-bottom: 0; color: var(--muted); }
.faq-section details { margin-bottom: 12px; padding: 19px 23px; background: #fff; border: 2px solid var(--navy); }
.faq-section summary { color: var(--navy); font-weight: 900; cursor: pointer; }
.faq-section details p { margin: 15px 0 0; color: var(--muted); }
.pricing-grid, .installment-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.pricing-grid article, .installment-grid article { padding: 27px; background: #fff; border: 2px solid var(--navy); box-shadow: 5px 5px 0 rgba(19,40,67,.09); }
.pricing-grid article > span, .installment-grid article > span { color: var(--brick); font-size: .75rem; font-weight: 950; text-transform: uppercase; }
.pricing-grid strong { display: block; margin: 17px 0; color: var(--navy); font-size: 1.8rem; }
.pricing-grid small, .installment-grid small { font-size: .7em; }
.pricing-featured, .installment-accent { color: #d6e0e8; background: var(--navy) !important; transform: translateY(-9px); box-shadow: 6px 6px 0 var(--gold) !important; }
.pricing-featured strong, .installment-accent h3, .pricing-featured > span, .installment-accent > span { color: #fff !important; }
.installment-grid h3 { margin: 18px 0 24px; }
.installment-grid ul { margin: 0; padding: 0; list-style: none; }
.installment-grid li { padding: 12px 0; display: grid; gap: 4px; border-top: 1px solid var(--line); }
.notice-box { margin-top: 25px; padding: 19px 22px; background: var(--gold); border: 2px solid var(--navy); }
.cost-list { display: grid; gap: 11px; }
.cost-list > div { display: grid; grid-template-columns: 1fr auto; gap: 4px 20px; padding: 19px; background: #fff; border: 2px solid var(--navy); }
.cost-list small { grid-column: 1/-1; color: var(--muted); }
.small-note { color: #b8c6d2; font-size: .82rem; }

.contact-strip { padding: 64px 0; color: #fff; background: var(--brick); border-top: 14px solid var(--gold); }
.contact-strip-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.contact-strip h2 { max-width: 790px; margin-bottom: 0; color: #fff; font-size: clamp(2rem,3.8vw,3.9rem); }
.contact-strip .eyebrow { color: var(--gold); }
.contact-strip-actions { display: flex; gap: 17px; align-items: center; }
.site-footer { padding: 70px 0 28px; color: #b9c5d0; background: #0d1d31; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .9fr .8fr; gap: 58px; }
.brand-footer strong { color: #fff; }
.brand-footer small { color: var(--gold); }
.site-footer h3 { color: #fff; font-size: 1rem; letter-spacing: -.01em; }
.site-footer a { color: #fff; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 8px 0; }
.footer-bottom { margin-top: 54px; padding-top: 21px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.13); font-size: .76rem; }

.legacy-message { position: fixed; z-index: 1000; inset: 0; padding: 30px; place-items: center; background: rgba(9,24,41,.88); }
.legacy-message:not([hidden]) { display: grid; }
.legacy-message-content { width: min(780px,100%); max-height: 80vh; overflow: auto; padding: 34px; color: var(--ink); background: #fff; border: 3px solid var(--navy); box-shadow: var(--shadow-dark); }
.legacy-message-close { position: fixed; right: 25px; top: 25px; width: 48px; height: 48px; color: #fff; background: var(--brick); border: 2px solid #fff; font-size: 1.8rem; cursor: pointer; }

@media (max-width:1100px) {
  .main-nav a { padding-inline: 8px; font-size: .8rem; }
  .hero-copy { padding-right: 38px; }
  .hero-visual { padding-left: 38px; }
  .category-showcase-grid { grid-template-columns: 1fr 1fr; }
  .category-tile-main { grid-row: span 2; }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .pricing-grid, .installment-grid { grid-template-columns: repeat(2,1fr); }
  .content-layout { grid-template-columns: minmax(0,1fr) 290px; gap: 38px; }
}

@media (max-width:860px) {
  .topbar-inner span:first-child { display: none; }
  .header-call { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav { position: absolute; left: 22px; right: 22px; top: calc(100% + 8px); padding: 12px; display: none; align-items: stretch; flex-direction: column; background: var(--cream); border: 2px solid var(--navy); box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .hero-grid, .page-hero-grid, .split-heading, .mobile-service-grid, .network-panel, .product-detail-grid, .content-layout, .contact-grid, .visit-grid, .process-grid, .advice-grid { grid-template-columns: 1fr; }
  .debrecen-hero { min-height: auto; }
  .hero-grid { min-height: 0; }
  .hero-copy { padding: 72px 0 48px; border-right: 0; }
  .hero-visual { min-height: 520px; padding: 50px 20px 70px; border-top: 2px solid rgba(255,255,255,.18); }
  .metric-grid { grid-template-columns: repeat(2,1fr); }
  .metric-grid > div:nth-child(2) { border-right: 0; }
  .metric-grid > div:nth-child(-n+2) { border-bottom: 2px solid var(--navy); }
  .shipping-ticket { padding: 130px 32px 38px; grid-template-columns: 1fr; }
  .shipping-code { width: 100%; height: 94px; bottom: auto; writing-mode: horizontal-tb; transform: none; border-right: 0; border-bottom: 3px dashed var(--navy); }
  .shipping-ticket::before, .shipping-ticket::after { display: none; }
  .split-heading, .page-hero-grid { gap: 24px; }
  .category-showcase-grid { grid-template-columns: 1fr; }
  .category-tile-main { grid-row: auto; }
  .category-tile { min-height: 320px; }
  .sticky-aside { position: static; }
  .service-detail-grid, .check-panels { grid-template-columns: repeat(2,1fr); }
  .contact-strip-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width:620px) {
  .container, .narrow { width: min(100% - 28px,var(--max)); }
  .section { padding: 70px 0; }
  h1 { font-size: clamp(3.2rem,16vw,4.9rem); }
  .topbar-inner { justify-content: space-between; gap: 10px; font-size: .68rem; }
  .topbar-inner span:nth-child(2) { display: none; }
  .debrecen-hero h1 { font-size: clamp(3.2rem,15vw,4.6rem); }
  .hero-copy { padding-top: 58px; }
  .hero-visual { min-height: 410px; }
  .hero-visual::before { inset: 9% 5%; }
  .hero-visual img { max-height: 340px; }
  .floating-card { left: 18px; bottom: 28px; }
  .hero-coordinate { top: 16px; right: 14px; }
  .metric-grid > div { min-height: 102px; padding: 18px; }
  .metric-grid strong { font-size: 2.1rem; }
  .shipping-ticket { padding-inline: 24px; }
  .category-tile { min-height: 300px; padding: 26px; }
  .product-grid, .product-grid-three, .service-detail-grid, .check-panels, .contact-cards, .pricing-grid, .installment-grid { grid-template-columns: 1fr; }
  .product-image { min-height: 260px; }
  .page-hero { padding: 53px 0 64px; }
  .page-hero-grid h1 { font-size: clamp(2.9rem,14vw,4.5rem); }
  .catalog-categories { top: 82px; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; }
  .gallery-main { min-height: 390px; padding: 23px; }
  .gallery-main img { height: 330px; }
  .content-layout { gap: 30px; }
  .product-highlights ul { grid-template-columns: 1fr; }
  .service-area-panel { padding: 27px; }
  .pricing-featured, .installment-accent { transform: none; }
  .contact-strip-actions { align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cost-list > div { grid-template-columns: 1fr; }
  .cost-list small { grid-column: auto; }
}

@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; transition: none !important; }
}
