:root {
  --ink: #142b57;
  --ink-soft: #5c6880;
  --teal-950: #061b68;
  --teal-900: #0b319d;
  --teal-800: #0d5fca;
  --teal-500: #1e98f2;
  --teal-300: #7fc8ff;
  --mint-100: #dceeff;
  --mint-50: #f2f7ff;
  --cream: #ffffff;
  --white: #ffffff;
  --coral: #1e98f2;
  --coral-dark: #0878db;
  --line: rgba(8, 45, 145, 0.14);
  --shadow-sm: 0 16px 42px rgba(8, 45, 145, 0.10);
  --shadow-lg: 0 34px 90px rgba(8, 45, 145, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

button { color: inherit; }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  color: var(--teal-950);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

h1 { font-size: clamp(3rem, 5.5vw, 5.05rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.3rem, 4.2vw, 4rem); letter-spacing: -0.035em; }
h3 { font-size: 1.55rem; letter-spacing: -0.02em; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.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: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal-950);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.topbar { color: var(--white); background: var(--teal-900); font-size: 0.78rem; }

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  letter-spacing: 0.025em;
}

.topbar p { margin: 0; }
.topbar__contact { display: flex; gap: 10px; align-items: center; }
.topbar a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(9, 61, 67, 0.07); }

.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 84px; }

.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }

.brand__mark {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
}

.brand__mark img { display: block; width: 100%; height: 100%; }

.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { color: var(--teal-950); font-family: var(--serif); font-size: 1.32rem; font-weight: 600; }
.brand__text small { margin-top: 4px; color: var(--ink-soft); font-size: 0.62rem; letter-spacing: 0.09em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 29px); font-size: 0.89rem; font-weight: 600; }
.main-nav > a:not(.button) { position: relative; padding-block: 10px; }
.main-nav > a:not(.button)::after { position: absolute; bottom: 3px; left: 0; width: 100%; height: 1px; content: ""; background: var(--teal-500); transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.main-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--teal-950); transition: transform 180ms ease, opacity 180ms ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  padding: 13px 15px 13px 24px;
  color: var(--white);
  background: var(--coral);
  border: 1px solid var(--coral);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(30, 152, 242, 0.24);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-2px); }
.button__icon { display: grid; width: 34px; height: 34px; place-items: center; color: var(--coral); background: var(--white); border-radius: 50%; font-size: 1rem; }
.button--small { min-height: 44px; padding: 10px 22px; box-shadow: none; }
.button--blue { background: var(--teal-500); border-color: var(--teal-500); }
.button--light { color: var(--teal-950); background: var(--white); border-color: var(--white); box-shadow: none; }
.button--light:hover { color: var(--white); background: var(--coral); border-color: var(--coral); }
.button--light .button__icon { color: var(--white); background: var(--teal-900); }
.button--outline { color: var(--teal-900); background: transparent; border-color: var(--teal-900); box-shadow: none; }
.button--outline:hover { color: var(--white); background: var(--teal-900); border-color: var(--teal-900); }
.button--outline .button__icon { color: var(--white); background: var(--teal-900); }

.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--teal-900); font-size: 0.9rem; font-weight: 700; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--teal-800); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow > span { width: 26px; height: 1px; background: var(--teal-500); }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--teal-300); }

.hero { position: relative; min-height: calc(100vh - 122px); overflow: hidden; padding: 72px 0 28px; background: linear-gradient(115deg, #ffffff 0%, #f7faff 52%, #e9f4ff 100%); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr 0.92fr; align-items: center; gap: clamp(40px, 6vw, 88px); }
.hero__content h1 { max-width: 780px; margin-bottom: 26px; }
.hero__lead { max-width: 650px; margin-bottom: 32px; color: var(--ink-soft); font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.45; }
.hero__lead strong { color: var(--teal-900); font-weight: 600; }
.hero__actions { display: flex; align-items: center; gap: 26px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 14px 24px; padding: 28px 0 0; margin: 34px 0 0; border-top: 1px solid var(--line); list-style: none; color: var(--ink-soft); font-size: 0.83rem; font-weight: 600; }
.trust-list span { display: inline-grid; width: 19px; height: 19px; margin-right: 6px; place-items: center; color: var(--teal-900); background: var(--mint-100); border-radius: 50%; font-size: 0.68rem; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(4px); opacity: 0.8; }
.hero__glow--one { top: -180px; right: 13%; width: 420px; height: 420px; background: rgba(30, 152, 242, 0.20); }
.hero__glow--two { bottom: -180px; left: -120px; width: 380px; height: 380px; background: rgba(11, 49, 157, 0.08); }

.hero__visual { position: relative; }
.photo-stage { position: relative; min-height: 620px; overflow: hidden; background: linear-gradient(145deg, #0b319d 0%, #1479d9 50%, #53b8ff 100%); border-radius: 44% 44% 12px 12px / 20% 20% 12px 12px; box-shadow: var(--shadow-lg); }
.photo-stage::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 68% 32%, rgba(255,255,255,.28), transparent 24%), linear-gradient(128deg, transparent 46%, rgba(255,255,255,.13) 46% 48%, transparent 48% 58%, rgba(255,255,255,.09) 58% 60%, transparent 60%); }
.photo-stage::after { position: absolute; right: -7%; bottom: -7%; width: 66%; aspect-ratio: 1; content: ""; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; box-shadow: 0 0 0 36px rgba(255,255,255,.06), 0 0 0 72px rgba(255,255,255,.04); }
.photo-stage__rings { position: absolute; top: 29%; left: 42%; width: 190px; height: 190px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; box-shadow: 0 0 0 28px rgba(255,255,255,.07), 0 0 0 56px rgba(255,255,255,.04); }
.photo-stage__stamp { position: absolute; z-index: 2; top: 22%; left: -34px; display: grid; width: 152px; height: 152px; place-items: center; color: var(--white); background: var(--teal-950); border: 10px solid #eaf5ff; border-radius: 50%; text-align: center; transform: rotate(-8deg); }
.photo-stage__stamp span { max-width: 112px; font-size: .56rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.photo-stage__stamp strong { position: absolute; font-family: var(--serif); font-size: 2.6rem; font-weight: 400; }
.visual-card { position: relative; min-height: 615px; overflow: hidden; background: linear-gradient(145deg, #dcefeb 0%, #f1f7f3 100%); border: 1px solid rgba(255, 255, 255, 0.75); border-radius: 48% 48% 32px 32px / 28% 28% 32px 32px; box-shadow: var(--shadow-lg); }
.visual-card::before { position: absolute; inset: 28px; content: ""; border: 1px solid rgba(11, 77, 87, 0.1); border-radius: inherit; }
.visual-card__halo { position: absolute; top: 50%; left: 50%; width: 390px; height: 390px; background: rgba(255, 255, 255, 0.52); border-radius: 50%; transform: translate(-50%, -43%); }
.flow-illustration { position: absolute; inset: 4% 1% 0; width: 98%; height: 96%; }
.flow-line { fill: none; stroke: url(#flowGradient); stroke-width: 12; stroke-linecap: round; }
.flow-line--wide { stroke-width: 27; opacity: 0.22; }
.flow-line--light { stroke-width: 7; opacity: 0.45; }
.leaf { fill: rgba(101, 199, 197, 0.32); stroke: var(--teal-500); stroke-width: 2; }
.leaf--second { fill: rgba(235, 123, 103, 0.18); stroke: var(--coral); }
.flow-dot { fill: var(--coral); }
.flow-dot--small { fill: var(--teal-500); }
.flow-dot--soft { fill: var(--white); stroke: var(--teal-500); stroke-width: 2; }
.visual-card__badge { position: absolute; display: flex; align-items: center; gap: 12px; padding: 13px 18px 13px 13px; background: rgba(255, 255, 255, 0.92); border: 1px solid rgba(255, 255, 255, 0.85); border-radius: 16px; box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.visual-card__badge--top { top: 18%; left: -8%; }
.visual-card__badge--bottom { right: -4%; bottom: 12%; }
.visual-card__badge > span:last-child { display: flex; flex-direction: column; }
.visual-card__badge strong { color: var(--teal-950); font-family: var(--serif); font-size: 1rem; }
.visual-card__badge small { color: var(--ink-soft); font-size: 0.68rem; }
.badge-icon { display: grid; width: 38px; height: 38px; place-items: center; color: var(--white); background: var(--teal-500); border-radius: 50%; }
.badge-icon--coral { background: var(--coral); }
.hero__foot { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding-top: 44px; color: var(--ink-soft); font-family: var(--serif); font-size: 1rem; }
.hero__foot p { margin: 0; }
.hero__foot a { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; }

.image-slot { position: relative; isolation: isolate; overflow: hidden; color: var(--white); background: linear-gradient(140deg, #0b319d, #1e98f2); }
.image-slot::before { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(145deg, transparent 0 55%, rgba(255,255,255,.13) 55% 57%, transparent 57%), radial-gradient(circle at 75% 22%, rgba(255,255,255,.24), transparent 22%); }
.image-slot__index { position: absolute; z-index: 2; top: 20px; right: 22px; font-family: var(--serif); font-size: .8rem; letter-spacing: .1em; opacity: .76; }
.image-slot__label { position: absolute; z-index: 2; bottom: 20px; left: 22px; display: flex; flex-direction: column; padding: 10px 14px; background: rgba(4, 24, 90, .72); border-left: 3px solid var(--teal-300); backdrop-filter: blur(8px); font-size: .7rem; letter-spacing: .04em; }
.image-slot__label strong { font-family: var(--serif); font-size: 1rem; font-weight: 500; }

.statement-band { overflow: hidden; padding: 32px 0 38px; background: var(--white); border-top: 1px solid #e7f1ff; border-bottom: 1px solid #e7f1ff; }
.statement-band__track { display: flex; width: max-content; animation: statement-band-scroll 24s linear infinite; will-change: transform; }
.statement-band p { flex: 0 0 auto; margin: 0; color: #e1effd; font-family: var(--serif); font-size: clamp(3.7rem, 7.2vw, 7rem); line-height: 1; letter-spacing: -.04em; white-space: nowrap; }
.statement-band span { margin-inline: 24px; color: var(--teal-500); font-size: .35em; vertical-align: middle; }

@keyframes statement-band-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.section { padding: clamp(85px, 10vw, 138px) 0; }
.section--soft { background: var(--mint-50); }
.section-heading { max-width: 650px; margin-bottom: 55px; }
.section-heading h2 { margin-bottom: 20px; }
.section-heading p { color: var(--ink-soft); }
.section-heading--center { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading--split { display: grid; max-width: none; grid-template-columns: 1.1fr 0.65fr; align-items: end; gap: 80px; }
.section-heading--split p { margin-bottom: 11px; }

.concern-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.concern-card { position: relative; min-height: 330px; padding: 34px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.concern-card--accent { background: var(--teal-900); border-color: var(--teal-900); }
.concern-card--accent h3, .concern-card--accent p, .concern-card--accent .concern-card__number { color: var(--white); }
.concern-card.concern-card--accent p { color: #ffffff; font-weight: 500; opacity: 1; }
.concern-card__number { position: absolute; top: 22px; right: 28px; color: var(--teal-500); font-family: var(--serif); font-size: 0.83rem; }
.concern-card__icon { display: grid; width: 66px; height: 66px; margin-bottom: 50px; place-items: center; color: var(--teal-900); background: var(--mint-100); border-radius: 50%; font-family: var(--serif); font-size: 2.3rem; }
.concern-card--accent .concern-card__icon { color: var(--white); background: rgba(255, 255, 255, 0.13); }
.concern-card h3 { margin-bottom: 13px; }
.concern-card p { margin: 0; color: var(--ink-soft); font-size: 0.91rem; }
.notice { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; margin-top: 25px; padding: 22px 26px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.notice__icon { display: grid; width: 35px; height: 35px; place-items: center; color: var(--white); background: var(--teal-500); border-radius: 50%; font-family: var(--serif); font-weight: 700; }
.notice p { margin: 0; color: var(--ink-soft); font-size: 0.87rem; }

.story-section { position: relative; overflow: hidden; background: var(--white); }
.story-section::before { position: absolute; top: 28px; left: -2%; content: "Személyes figyelem"; color: #edf6ff; font-family: var(--serif); font-size: clamp(4rem, 9vw, 9rem); white-space: nowrap; }
.story-grid { position: relative; display: grid; grid-template-columns: 1fr 1.04fr; align-items: center; gap: clamp(55px, 8vw, 110px); }
.story-media { position: relative; padding-top: 40px; }
.image-slot--story { min-height: 560px; clip-path: polygon(0 8%, 86% 0, 100% 91%, 10% 100%); }
.story-media__bubble { position: absolute; top: 20%; right: -30px; display: grid; width: 135px; height: 135px; place-items: center; color: var(--white); background: var(--teal-900); border: 9px solid var(--white); border-radius: 50%; font-family: var(--serif); font-size: 3.2rem; }
.story-content h2 { margin-bottom: 24px; }
.story-content > p { color: var(--ink-soft); }
.story-content__lead { color: var(--ink) !important; font-family: var(--serif); font-size: 1.2rem; }
.story-points { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 34px 0; }
.story-points article { display: grid; grid-template-columns: 28px 1fr; gap: 12px; }
.story-points article > span { display: grid; width: 23px; height: 23px; place-items: center; color: var(--white); background: var(--teal-500); border-radius: 50%; font-size: .7rem; }
.story-points h3 { margin-bottom: 9px; font-size: 1.2rem; }
.story-points p { margin: 0; color: var(--ink-soft); font-size: .84rem; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 560px; padding: 28px 28px 34px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 10px 32px rgba(8,45,145,.06); transition: transform 200ms ease, box-shadow 200ms ease; }
.service-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.service-card--featured { background: var(--teal-900); }
.service-card--featured h3, .service-card--featured p, .service-card--featured a, .service-card--featured .service-card__index { color: var(--white); }
.service-card.service-card--featured p { color: #ffffff; font-weight: 500; opacity: 1; }
.service-card__top { display: flex; align-items: center; justify-content: space-between; }
.service-card__index { color: var(--teal-800); font-family: var(--serif); font-size: 0.85rem; }
.service-card__arrow { display: grid; width: 38px; height: 38px; place-items: center; color: var(--teal-900); background: var(--white); border: 1px solid var(--line); border-radius: 50%; }
.service-card__symbol { width: 86px; height: 86px; margin: 50px 0 30px; color: var(--teal-500); }
.service-card__symbol svg { fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.service-card__photo { min-height: 260px; margin: 24px 0 28px; border-radius: 8px; }
.service-card--featured .service-card__photo { border: 1px solid rgba(255,255,255,.25); }
.image-slot--service-2 { background: linear-gradient(145deg, #1452b8, #55b9ff); }
.image-slot--service-3 { background: linear-gradient(145deg, #081f78, #287fd8); }
.image-slot--service-4 { background: linear-gradient(145deg, #1473d0, #79c9ff); }
.service-card h3 { margin-bottom: 14px; font-size: 1.9rem; }
.service-card p { max-width: 530px; margin-bottom: 25px; color: var(--ink-soft); }
.service-card > a { color: var(--teal-900); font-size: 0.82rem; font-weight: 800; }

.process { color: rgba(255, 255, 255, 0.76); background: var(--teal-950); }
.process__grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(60px, 9vw, 130px); }
.process__intro { position: sticky; top: 155px; align-self: start; }
.process h2, .process h3 { color: var(--white); }
.process__intro p:not(.eyebrow) { margin-bottom: 32px; }
.process-list { padding: 0; margin: 0; list-style: none; }
.process-item { display: grid; grid-template-columns: 90px 1fr; gap: 22px; padding: 10px 0 42px; margin-bottom: 34px; border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
.process-item:last-child { margin-bottom: 0; }
.process-item__number { display: grid; width: 62px; height: 62px; place-items: center; color: var(--teal-950); background: var(--teal-300); border-radius: 50%; font-family: var(--serif); }
.process-item h3 { margin-bottom: 11px; font-size: 1.8rem; }
.process-item p { margin: 0; }

.section--about { background: var(--mint-50); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: clamp(55px, 9vw, 130px); }
.about-visual { position: relative; padding: 0 0 38px 38px; }
.about-visual::before { position: absolute; bottom: 0; left: 0; width: 64%; height: 72%; content: ""; background: var(--teal-900); border-radius: var(--radius-lg); }
.about-visual__frame { position: relative; z-index: 1; display: grid; min-height: 570px; padding: 40px; place-items: center; overflow: hidden; color: var(--white); background: linear-gradient(145deg, #0b319d, #56b8ff); border-radius: 45% 45% 14px 14px / 25% 25% 14px 14px; box-shadow: var(--shadow-lg); text-align: center; }
.about-visual__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-visual__frame::after { position: absolute; inset: 23px; content: ""; border: 1px solid rgba(11, 77, 87, 0.11); border-radius: inherit; }
.about-visual__monogram { font-family: var(--serif); font-size: 8rem; opacity: 0.13; }
.about-visual__frame p { position: absolute; right: 15%; bottom: 50px; left: 15%; margin: 0; font-size: 0.78rem; }
.experience-card { position: absolute; z-index: 2; right: -18px; bottom: 4px; display: flex; flex-direction: column; min-width: 172px; padding: 22px; color: var(--white); background: var(--teal-500); border: 8px solid var(--white); border-radius: var(--radius-md); }
.experience-card strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
.experience-card span { font-size: 0.77rem; }
.about-content h2 { margin-bottom: 27px; }
.about-content > p { color: var(--ink-soft); }
.about-content__lead { color: var(--ink) !important; font-family: var(--serif); font-size: 1.22rem; line-height: 1.55; }
.value-list { display: grid; gap: 0; margin-top: 35px; border-top: 1px solid var(--line); }
.value-list > div { display: grid; grid-template-columns: 45px 1fr; align-items: center; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.value-list span { color: var(--coral); font-family: var(--serif); font-size: 0.8rem; }
.value-list p { margin: 0; color: var(--ink-soft); font-size: 0.86rem; }
.value-list strong { color: var(--teal-950); }

.gallery-section { overflow: hidden; background: var(--white); }
.photo-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 250px 250px; gap: 18px; }
.photo-grid__item { min-height: 250px; border-radius: 10px; }
.photo-grid__item--large { grid-row: 1 / 3; }
.photo-grid__item--wide { grid-column: 2 / 4; }
.photo-grid__item--warm { background: linear-gradient(145deg, #1253bf, #37a7f7); }

.quote-section { padding: 110px 0; color: var(--white); background: linear-gradient(120deg, var(--teal-900), var(--teal-500)); }
.quote-section__inner { max-width: 960px; text-align: center; }
.quote-mark { display: block; height: 65px; font-family: var(--serif); font-size: 7rem; line-height: 1; opacity: 0.3; }
.quote-section blockquote { margin: 10px 0 22px; font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 4.2rem); line-height: 1.1; letter-spacing: -0.035em; }
.quote-section blockquote em { font-weight: 600; }
.quote-section p { margin: 0; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }

.faq-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(50px, 9vw, 130px); }
.faq-grid .section-heading { margin-bottom: 0; }
.faq-grid .button { margin-top: 15px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 58px 24px 0; color: var(--teal-950); cursor: pointer; font-family: var(--serif); font-size: 1.25rem; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 50%; right: 8px; width: 19px; height: 1px; content: ""; background: var(--teal-900); transition: transform 180ms ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0deg); }
.faq-list details p { max-width: 700px; padding: 0 58px 25px 0; margin: 0; color: var(--ink-soft); font-size: 0.9rem; }
.faq-list details p strong { color: var(--teal-900); font-weight: 800; }

.contact-section { padding: 0 0 100px; background: linear-gradient(to bottom, var(--cream) 0 48%, var(--teal-950) 48% 100%); }
.contact-card { display: grid; grid-template-columns: 1.12fr 0.88fr; overflow: hidden; color: rgba(255, 255, 255, 0.78); background: linear-gradient(120deg, var(--teal-900), #0d5fca); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.contact-card__content { padding: clamp(45px, 7vw, 82px); }
.contact-card h2 { color: var(--white); }
.contact-card__content > p:not(.eyebrow) { max-width: 630px; margin-bottom: 30px; }
.contact-card__details { display: flex; flex-direction: column; justify-content: center; padding: 40px clamp(35px, 5vw, 65px); background: rgba(255, 255, 255, 0.07); }
.contact-card__details > div { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.contact-card__details > div:last-child { border-bottom: 0; }
.contact-card__details p { margin: 0; font-size: 0.88rem; }
.contact-card__details strong { color: var(--white); }
.contact-card__details a:hover { color: var(--white); text-decoration: underline; }
.contact-icon { display: grid; width: 35px; height: 35px; place-items: center; color: var(--teal-950); background: var(--teal-300); border-radius: 50%; font-family: var(--serif); }

.site-footer { color: rgba(255, 255, 255, 0.68); background: var(--teal-950); }
.footer-main { display: grid; grid-template-columns: 1.6fr 0.7fr 1fr; gap: 70px; padding-top: 55px; padding-bottom: 55px; }
.brand--footer .brand__mark { filter: drop-shadow(0 7px 14px rgba(0,0,0,.2)); }
.brand--footer .brand__text strong { color: var(--white); }
.brand--footer .brand__text small { color: rgba(255, 255, 255, 0.55); }
.footer-brand > p { max-width: 430px; margin: 24px 0 0; font-family: var(--serif); font-size: 1.1rem; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-links h2 { margin-bottom: 10px; color: var(--white); font-family: var(--sans); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.footer-links a, .footer-links p { margin: 0; font-size: 0.82rem; }
.footer-links a:hover { color: var(--white); }
.disclaimer { padding-top: 24px; padding-bottom: 24px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.disclaimer p { margin: 0; font-size: 0.7rem; line-height: 1.65; }
.disclaimer strong { color: rgba(255, 255, 255, 0.85); }
.footer-bottom { background: rgba(0, 0, 0, 0.12); }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; min-height: 64px; font-size: 0.7rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div div { display: flex; gap: 25px; }
.footer-bottom a:hover { color: var(--white); }
.mobile-actions { display: none; }

/* Belső oldalak */
.page-hero { position: relative; overflow: hidden; padding: 78px 0 84px; color: rgba(255,255,255,.78); background: linear-gradient(118deg, var(--teal-950) 0%, var(--teal-900) 56%, var(--teal-500) 100%); }
.page-hero::before { position: absolute; top: -28%; right: -5%; width: 560px; height: 560px; content: ""; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 48px rgba(255,255,255,.04), 0 0 0 96px rgba(255,255,255,.03); }
.page-hero::after { position: absolute; right: 5%; bottom: -68%; width: 440px; height: 440px; content: ""; background: rgba(255,255,255,.07); border-radius: 50%; }
.page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .62fr; align-items: center; gap: 70px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; color: var(--teal-300); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--white); }
.page-hero h1 { max-width: 850px; margin-bottom: 22px; color: var(--white); font-size: clamp(3rem, 5.6vw, 5.2rem); }
.page-hero__lead { max-width: 720px; margin: 0; font-family: var(--serif); font-size: clamp(1.12rem, 2vw, 1.42rem); line-height: 1.5; }
.page-hero__visual { min-height: 360px; border: 1px solid rgba(255,255,255,.28); border-radius: 48% 48% 10px 10px / 28% 28% 10px 10px; box-shadow: 0 24px 65px rgba(4,20,74,.25); }
.page-hero__visual { overflow: hidden; background: var(--mint-100); }
.page-hero__visual img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; object-position: center; }
.page-hero__visual--lipodema img { object-position: 66% center; }
.page-hero__visual--machine-treatment img { object-position: 52% center; }
.page-hero__visual--manualis img { object-position: 58% center; }
.page-hero__visual--nyirokodema img { object-position: center 58%; }
.page-hero__visual--lipodema-treatment img { object-position: center 48%; }
.page-hero__visual--faq img { object-position: center 44%; }
.split-feature__image--manualis { overflow: hidden; }
.split-feature__image--manualis img { width: 100%; height: 100%; object-fit: cover; object-position: 61% center; }
.split-feature__image--spheroid { overflow: hidden; background: #e9e4dc; }
.split-feature__image--spheroid img { display: block; width: 100%; height: 520px; object-fit: cover; object-position: 52% center; }

.page-nav { background: var(--white); border-bottom: 1px solid var(--line); }
.page-nav__inner { display: flex; gap: 34px; min-height: 62px; align-items: center; overflow-x: auto; scrollbar-width: none; }
.page-nav__inner::-webkit-scrollbar { display: none; }
.page-nav a { position: relative; flex: 0 0 auto; color: var(--ink-soft); font-size: .78rem; font-weight: 700; }
.page-nav a:hover { color: var(--teal-800); }

.content-section { padding: clamp(74px, 8vw, 112px) 0; }
.content-section--soft { background: var(--mint-50); }
.content-section--blue { color: rgba(255,255,255,.76); background: var(--teal-950); }
.content-section--blue h2, .content-section--blue h3 { color: var(--white); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr); gap: clamp(55px, 8vw, 110px); }
.prose { max-width: 780px; }
.prose > :last-child { margin-bottom: 0; }
.prose h2 { margin: 0 0 22px; font-size: clamp(2.15rem, 3.8vw, 3.5rem); }
.prose h3 { margin: 40px 0 14px; font-size: 1.55rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose .lead { color: var(--ink); font-family: var(--serif); font-size: 1.24rem; line-height: 1.55; }
.prose ul, .prose ol { padding-left: 20px; }
.prose li { margin-bottom: 10px; }
.prose strong { color: var(--teal-950); }
.side-card { position: sticky; top: 150px; align-self: start; padding: 30px; background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--teal-500); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.side-card h2 { margin-bottom: 18px; font-size: 1.55rem; }
.side-card p { color: var(--ink-soft); font-size: .86rem; }
.side-card .button { width: 100%; margin-top: 10px; }
.side-card__links { display: grid; gap: 0; margin: 20px 0; border-top: 1px solid var(--line); }
.side-card__links a { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--teal-900); font-size: .82rem; font-weight: 700; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.feature-card__icon { display: grid; width: 54px; height: 54px; margin-bottom: 34px; place-items: center; color: var(--white); background: var(--teal-500); border-radius: 50%; font-family: var(--serif); font-size: 1.45rem; }
.feature-card h3 { margin-bottom: 12px; font-size: 1.45rem; }
.feature-card p { margin: 0; color: var(--ink-soft); font-size: .88rem; }

.stage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 45px; }
.stage-card { position: relative; display: flex; min-height: 650px; overflow: hidden; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.stage-card:nth-child(2) { color: var(--white); background: var(--teal-900); }
.stage-card:nth-child(2) h3, .stage-card:nth-child(2) p { color: var(--white); }
.stage-card__image { min-height: 235px; overflow: hidden; flex: 0 0 235px; background: var(--mint-100); }
.stage-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 450ms ease; }
.stage-card:hover .stage-card__image img { transform: scale(1.025); }
.stage-card:nth-child(2) .stage-card__image { background: linear-gradient(145deg, #166ac4, #6fc5ff); }
.stage-card:nth-child(3) .stage-card__image { background: linear-gradient(145deg, #071e75, #247fdc); }
.stage-card__body { display: flex; padding: 30px; flex: 1; flex-direction: column; }
.stage-card__number { display: block; margin-bottom: 18px; color: var(--teal-500); font-size: .66rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.stage-card:nth-child(2) .stage-card__number { color: var(--teal-300); }
.stage-card h3 { margin-bottom: 16px; font-size: 1.75rem; }
.stage-card p { margin: 0; color: var(--ink-soft); font-size: .94rem; line-height: 1.72; }

.warning-panel { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 28px; background: #fff8e8; border: 1px solid #f0dba5; border-left: 5px solid #e4a725; border-radius: var(--radius-sm); }
.warning-panel--blue { background: var(--mint-50); border-color: #bfddfa; border-left-color: var(--teal-500); }
.warning-panel__icon { display: grid; width: 42px; height: 42px; place-items: center; color: var(--white); background: #e4a725; border-radius: 50%; font-weight: 800; }
.warning-panel--blue .warning-panel__icon { background: var(--teal-500); }
.warning-panel h2, .warning-panel h3 { margin-bottom: 8px; font-size: 1.3rem; }
.warning-panel p { margin: 0; color: var(--ink-soft); font-size: .87rem; }

.split-feature { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(55px, 8vw, 110px); }
.split-feature--reverse { grid-template-columns: 1.08fr .92fr; }
.split-feature__image { min-height: 520px; border-radius: 14px; }
.split-feature__content h2 { margin-bottom: 23px; }
.split-feature__content > p { color: var(--ink-soft); }
.check-list { display: grid; gap: 13px; padding: 0; margin: 28px 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; color: var(--ink-soft); }
.check-list span { display: grid; width: 22px; height: 22px; place-items: center; color: var(--white); background: var(--teal-500); border-radius: 50%; font-size: .68rem; }

.about-story-section { overflow: visible; }
.about-story { grid-template-columns: .78fr 1.22fr; align-items: start; gap: clamp(48px, 7vw, 96px); }
.about-story__portrait { position: sticky; top: 145px; min-height: 690px; overflow: hidden; background: var(--mint-100); }
.about-story__portrait img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; object-position: center top; }
.about-story__content h2 { max-width: 720px; }
.about-story__intro { padding-bottom: 32px; margin-bottom: 0; border-bottom: 1px solid var(--line); font-size: 1.04rem; }
.about-story__chapter { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.about-story__number { display: grid; width: 42px; height: 42px; place-items: center; color: var(--white); background: var(--teal-900); border-radius: 50%; font-size: .7rem; font-weight: 800; letter-spacing: .08em; }
.about-story__chapter h3 { margin: 3px 0 14px; color: var(--teal-900); font-size: clamp(1.55rem, 2.4vw, 2rem); }
.about-story__chapter p { margin: 0; color: var(--ink-soft); }
.about-story__chapter--highlight { padding: 34px; margin-top: 34px; background: linear-gradient(145deg, var(--mint-50), #edf7ff); border: 1px solid #c7e0f8; border-left: 5px solid var(--teal-500); border-radius: var(--radius-md); }
.about-story__chapter--highlight .about-story__number { background: var(--teal-500); }
.about-story__goals { display: grid; gap: 13px; padding: 0; margin: 25px 0 0; list-style: none; }
.about-story__goals li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; color: var(--ink); line-height: 1.55; }
.about-story__goals .about-story__goal-icon { display: grid; width: 22px; height: 22px; margin-top: 1px; place-items: center; color: var(--white); background: var(--teal-500); border-radius: 50%; font-size: .65rem; font-weight: 900; }
.about-story__goals strong { color: var(--teal-900); }
.about-story__closing { padding: 32px 36px; margin: 34px 0 0; color: var(--white); background: linear-gradient(125deg, var(--teal-950), var(--teal-800)); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.about-story__closing p { margin: 0 0 10px; color: var(--white); font-family: var(--serif); font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1.25; }
.about-story__closing cite { color: rgba(255,255,255,.72); font-size: .72rem; font-style: normal; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.related-section { padding: 80px 0; background: var(--mint-50); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card { display: flex; min-height: 240px; padding: 28px; flex-direction: column; justify-content: flex-end; color: var(--white); background: linear-gradient(145deg, var(--teal-900), var(--teal-500)); border-radius: var(--radius-md); transition: transform 180ms ease; }
.related-card:hover { transform: translateY(-4px); }
.related-card small { margin-bottom: 18px; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.related-card h3 { margin: 0; color: var(--white); font-size: 1.55rem; }

.page-cta { padding: 70px 0; color: var(--white); background: linear-gradient(115deg, var(--teal-900), var(--teal-500)); }
.page-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.page-cta h2 { max-width: 760px; margin: 0; color: var(--white); }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { display: flex; min-height: 370px; flex-direction: column; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.article-card__image { min-height: 190px; overflow: hidden; background: var(--mint-100); }
.article-card__image img { width: 100%; height: 190px; object-fit: cover; object-position: center; transition: transform 450ms ease; }
.article-card__image--practice img { object-position: center 72%; }
.article-card:hover .article-card__image img { transform: scale(1.035); }
.article-card__body { display: flex; padding: 24px; flex: 1; flex-direction: column; }
.article-card small { color: var(--teal-500); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-card h2, .article-card h3 { margin: 12px 0; font-size: 1.45rem; }
.article-card p { color: var(--ink-soft); font-size: .84rem; }
.article-card a { margin-top: auto; color: var(--teal-900); font-size: .8rem; font-weight: 800; }

.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; }
.contact-info-panel { padding: 42px; color: rgba(255,255,255,.76); background: var(--teal-900); border-radius: var(--radius-md); }
.contact-info-panel h2 { color: var(--white); }
.contact-info-list { display: grid; gap: 0; margin-top: 32px; }
.contact-info-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 14px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.15); }
.contact-info-list span { display: grid; width: 38px; height: 38px; place-items: center; color: var(--teal-950); background: var(--teal-300); border-radius: 50%; }
.contact-info-list p { margin: 0; font-size: .87rem; }
.contact-info-list strong { color: var(--white); }
.map-placeholder { min-height: 520px; border-radius: var(--radius-md); }

.legal-prose { max-width: 900px; margin-inline: auto; }
.legal-prose h2 { margin-top: 52px; font-size: 2rem; }
.legal-prose h3 { margin-top: 30px; }
.legal-prose p, .legal-prose li { color: var(--ink-soft); }

.quiz-shell { max-width: 860px; margin-inline: auto; padding: 42px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.quiz-shell__status { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 20px; margin-bottom: 28px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: .78rem; }
.quiz-shell h2 { font-size: 2rem; }
.quiz-shell__note { padding: 18px; margin-top: 28px; color: var(--ink-soft); background: var(--mint-50); border-radius: 8px; font-size: .82rem; }

/* Tudástár – étrend és kezelés utáni teendők */
.nutrition-intro { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: clamp(45px, 8vw, 100px); margin-bottom: 48px; }
.nutrition-intro h2 { margin: 0; font-size: clamp(2.4rem, 4.5vw, 4rem); }
.nutrition-intro > p { margin: 0 0 8px; color: var(--ink-soft); }
.nutrition-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.nutrition-card { position: relative; overflow: hidden; padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.nutrition-card::after { position: absolute; top: -100px; right: -100px; width: 220px; height: 220px; content: ""; border-radius: 50%; opacity: .08; }
.nutrition-card--yes { border-top: 5px solid #22a56b; }
.nutrition-card--yes::after { background: #22a56b; }
.nutrition-card--no { border-top: 5px solid #e05b5b; }
.nutrition-card--no::after { background: #e05b5b; }
.nutrition-card__heading { position: relative; z-index: 1; display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.nutrition-card__heading > span { display: grid; width: 50px; height: 50px; flex: 0 0 auto; place-items: center; color: var(--white); border-radius: 50%; font-size: 1.35rem; font-weight: 800; }
.nutrition-card--yes .nutrition-card__heading > span { background: #22a56b; }
.nutrition-card--no .nutrition-card__heading > span { background: #e05b5b; }
.nutrition-card__heading small { color: var(--ink-soft); font-size: .64rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.nutrition-card__heading h3 { margin: 3px 0 0; font-size: 1.65rem; }
.food-list { padding: 0; margin: 0; list-style: none; }
.food-list li { display: grid; gap: 5px; padding: 16px 0; border-top: 1px solid var(--line); }
.food-list strong { color: var(--teal-950); font-family: var(--serif); font-size: 1.08rem; font-weight: 600; }
.food-list span { color: var(--ink-soft); font-size: .84rem; }
.daily-tips { padding-top: 82px; }
.daily-tips .section-heading { margin-bottom: 34px; }
.daily-tips__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.daily-tips__grid article { position: relative; min-height: 240px; padding: 28px; overflow: hidden; color: rgba(255,255,255,.78); background: linear-gradient(145deg, var(--teal-900), var(--teal-500)); border-radius: var(--radius-md); }
.daily-tips__grid article > span { display: block; margin-bottom: 42px; color: var(--teal-300); font-size: 1.3rem; }
.daily-tips__grid h3 { margin-bottom: 12px; color: var(--white); font-size: 1.4rem; }
.daily-tips__grid p { margin: 0; font-size: .84rem; }
.nutrition-note { margin-top: 28px; }

.aftercare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.aftercare-card { position: relative; min-height: 500px; padding: 30px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.aftercare-card__number { position: absolute; top: 23px; right: 25px; color: var(--teal-500); font-family: var(--serif); font-size: .8rem; }
.aftercare-card__icon { display: grid; width: 62px; height: 62px; margin-bottom: 34px; place-items: center; background: var(--mint-100); border-radius: 50%; font-size: 1.7rem; }
.aftercare-card h3 { margin-bottom: 15px; font-size: 1.7rem; }
.aftercare-card > p { color: var(--ink-soft); font-size: .86rem; }
.aftercare-card__action { padding: 18px; margin: 24px 0 18px; color: var(--ink-soft); background: var(--mint-50); border-left: 3px solid var(--teal-500); border-radius: 4px; font-size: .82rem; }
.aftercare-card__action strong { display: block; margin-bottom: 5px; color: var(--teal-900); font-size: .67rem; letter-spacing: .11em; text-transform: uppercase; }
.aftercare-card small { color: var(--ink-soft); line-height: 1.55; }
.aftercare-footer { display: grid; grid-template-columns: 1fr .65fr; align-items: start; gap: 50px; padding-top: 50px; }
.aftercare-footer > div { padding: 34px; background: var(--mint-100); border-radius: var(--radius-md); }
.aftercare-footer h3 { margin-bottom: 10px; font-size: 1.55rem; }
.aftercare-footer p { margin: 0; color: var(--ink-soft); }
.aftercare-footer .side-card { position: static; }

/* Tudástár – otthoni kísérletezés és biztonság */
.safety-section { overflow: hidden; background: linear-gradient(180deg, var(--white) 0%, #f4f8ff 100%); }
.safety-hero { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 28px; padding: clamp(32px, 5vw, 58px); overflow: hidden; color: rgba(255,255,255,.8); background: linear-gradient(135deg, var(--teal-950) 0%, var(--teal-900) 58%, var(--teal-800) 100%); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.safety-hero::after { position: absolute; top: -165px; right: -90px; width: 390px; height: 390px; content: ""; border: 75px solid rgba(127,200,255,.1); border-radius: 50%; }
.safety-hero__icon { position: relative; z-index: 1; display: grid; width: 68px; height: 68px; place-items: center; color: var(--white); background: #e24c5b; border: 7px solid rgba(255,255,255,.18); border-radius: 50%; font-family: var(--serif); font-size: 2rem; font-weight: 700; }
.safety-hero > div:last-child { position: relative; z-index: 1; max-width: 850px; }
.safety-hero .eyebrow { color: var(--teal-300); }
.safety-hero .eyebrow span { background: var(--teal-300); }
.safety-hero h2 { max-width: 760px; margin: 12px 0 20px; color: var(--white); font-size: clamp(2.4rem, 4.4vw, 4.35rem); }
.safety-hero p:last-child { max-width: 790px; margin: 0; font-size: .93rem; }

.myth-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.myth-card { display: flex; min-height: 370px; padding: 30px; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-top: 5px solid #e24c5b; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.myth-card__label { color: #c63848; font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.myth-card h3 { margin: 17px 0 26px; font-size: 1.75rem; }
.myth-card__reality { padding: 20px; margin-top: auto; color: var(--ink-soft); background: var(--mint-50); border-left: 3px solid var(--teal-500); border-radius: 5px; }
.myth-card__reality strong { display: block; margin-bottom: 8px; color: var(--teal-900); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.myth-card__reality p { margin: 0; font-size: 1rem; line-height: 1.65; }

.safety-difference { display: grid; grid-template-columns: .8fr 1.2fr; align-items: stretch; gap: clamp(35px, 6vw, 80px); padding: 100px 0 70px; }
.safety-difference blockquote { display: flex; min-height: 310px; padding: clamp(32px, 5vw, 55px); margin: 0; align-items: flex-end; color: var(--white); background: linear-gradient(145deg, var(--teal-900), var(--teal-500)); border-radius: var(--radius-lg); font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.75rem); line-height: 1.16; box-shadow: var(--shadow-lg); }
.safety-difference > div { align-self: center; }
.safety-difference h2 { margin: 13px 0 20px; font-size: clamp(2.25rem, 4vw, 3.65rem); }
.safety-difference > div > p:last-child { max-width: 650px; margin: 0; color: var(--ink-soft); }

.risk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: risk; }
.risk-grid article { position: relative; min-height: 265px; padding: 34px 30px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.risk-grid article::after { position: absolute; right: -45px; bottom: -70px; width: 150px; height: 150px; content: ""; background: rgba(226,76,91,.07); border-radius: 50%; }
.risk-grid__number { display: block; margin-bottom: 45px; color: #c63848; font-family: var(--serif); font-size: .82rem; }
.risk-grid h3 { margin-bottom: 13px; font-size: 1.65rem; }
.risk-grid p { position: relative; z-index: 1; margin: 0; color: var(--ink-soft); font-size: .86rem; }

.safety-statement { max-width: 910px; padding: 64px 0; margin: 70px auto; text-align: center; color: var(--teal-950); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.65rem); line-height: 1.12; }
.safety-statement strong { color: var(--teal-500); font-weight: 500; }

.home-device-panel { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; padding: clamp(30px, 4.5vw, 50px); color: rgba(255,255,255,.78); background: linear-gradient(125deg, var(--teal-950), var(--teal-900)); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.home-device-panel__icon { display: grid; width: 70px; height: 70px; place-items: center; color: var(--teal-950); background: var(--teal-300); border-radius: 50%; font-size: 2rem; }
.home-device-panel .eyebrow { color: var(--teal-300); }
.home-device-panel .eyebrow span { background: var(--teal-300); }
.home-device-panel h2 { margin: 9px 0 12px; color: var(--white); font-size: clamp(2rem, 3.3vw, 3rem); }
.home-device-panel p:last-child { max-width: 710px; margin: 0; font-size: .85rem; }
.home-device-panel .button { white-space: nowrap; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal--delay { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-header { background: var(--cream); backdrop-filter: none; }
  .topbar__inner > p { display: none; }
  .topbar__inner { justify-content: flex-end; }
  .main-nav { position: absolute; z-index: 2; top: 100%; right: 0; display: none; width: min(86vw, 390px); height: calc(100vh - 122px); padding: 35px; align-items: stretch; flex-direction: column; gap: 5px; overflow-y: auto; background: var(--cream); box-shadow: -20px 20px 50px rgba(9, 61, 67, 0.18); }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.button) { padding: 12px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.2rem; }
  .main-nav .button { margin-top: 20px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero__grid { grid-template-columns: 1fr 0.8fr; gap: 35px; }
  .visual-card { min-height: 530px; }
  .visual-card__badge--top { left: -3%; }
  .visual-card__badge--bottom { right: -2%; }
}

@media (max-width: 820px) {
  .hero { min-height: auto; padding-top: 65px; }
  .hero__grid, .section-heading--split, .story-grid, .process__grid, .about-grid, .faq-grid, .contact-card { grid-template-columns: 1fr; }
  .hero__content { text-align: center; }
  .hero__content .eyebrow { justify-content: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .trust-list { justify-content: center; }
  .hero__visual { width: min(100%, 520px); margin-inline: auto; }
  .photo-stage { min-height: 560px; }
  .visual-card { min-height: 560px; }
  .section-heading--split { align-items: start; gap: 15px; }
  .section-heading--split > p { max-width: 600px; }
  .concern-grid { grid-template-columns: 1fr; }
  .concern-card { min-height: 260px; }
  .concern-card__icon { margin-bottom: 35px; }
  .notice { grid-template-columns: auto 1fr; }
  .notice .text-link { grid-column: 2; }
  .story-grid { gap: 75px; }
  .story-media { width: min(100%, 560px); margin-inline: auto; }
  .story-points { max-width: 650px; }
  .process__intro { position: static; }
  .about-grid { gap: 80px; }
  .about-visual { width: min(100%, 550px); margin-inline: auto; }
  .faq-grid { gap: 60px; }
  .contact-card__details { padding-top: 20px; padding-bottom: 40px; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 390px 230px 260px; }
  .photo-grid__item--large { grid-column: 1 / 3; grid-row: auto; }
  .photo-grid__item--wide { grid-column: 1 / 3; }
  .footer-main { grid-template-columns: 1.4fr 0.6fr; }
  .footer-main .footer-links:last-child { grid-column: 1 / -1; }
  .page-hero__grid, .content-grid, .split-feature, .split-feature--reverse, .contact-layout { grid-template-columns: 1fr; }
  .about-story { gap: 48px; }
  .about-story__portrait { position: static; width: min(100%, 560px); min-height: 580px; margin-inline: auto; }
  .page-hero__visual { width: min(100%, 540px); min-height: 430px; }
  .side-card { position: static; }
  .feature-grid, .stage-grid, .related-grid, .article-grid { grid-template-columns: 1fr 1fr; }
  .page-cta__inner { align-items: flex-start; flex-direction: column; }
  .nutrition-intro, .aftercare-footer, .safety-difference { grid-template-columns: 1fr; }
  .nutrition-grid { grid-template-columns: 1fr; }
  .daily-tips__grid, .aftercare-grid, .myth-grid, .risk-grid { grid-template-columns: 1fr 1fr; }
  .safety-difference { gap: 35px; padding-top: 78px; }
  .safety-difference blockquote { min-height: 250px; }
  .home-device-panel { grid-template-columns: auto 1fr; }
  .home-device-panel .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 620px) {
  body { padding-bottom: 62px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar { display: none; }
  .nav-wrap { min-height: 76px; }
  .brand__mark { width: 46px; height: 46px; flex-basis: 46px; }
  .brand__text strong { font-size: 1.08rem; }
  .brand__text small { font-size: 0.52rem; }
  .main-nav { height: calc(100vh - 76px); }
  .hero { padding-top: 48px; }
  .hero__actions { flex-direction: column; gap: 19px; }
  .hero__actions .button { width: 100%; }
  .trust-list { gap: 12px; align-items: center; flex-direction: column; }
  .visual-card { min-height: 450px; border-radius: 44% 44% 25px 25px / 22% 22% 25px 25px; }
  .photo-stage { min-height: 470px; border-radius: 42% 42% 8px 8px / 18% 18% 8px 8px; }
  .photo-stage__stamp { top: 17%; left: -8px; width: 110px; height: 110px; border-width: 7px; }
  .photo-stage__stamp span { font-size: .45rem; }
  .photo-stage__stamp strong { font-size: 2rem; }
  .visual-card__badge { padding: 10px 13px 10px 10px; }
  .visual-card__badge--top { top: 14%; left: 2%; }
  .visual-card__badge--bottom { right: 2%; bottom: 8%; }
  .visual-card__badge strong { font-size: 0.82rem; }
  .visual-card__badge small { font-size: 0.58rem; }
  .badge-icon { width: 32px; height: 32px; }
  .hero__foot { justify-content: center; padding-top: 35px; text-align: center; }
  .hero__foot a { display: none; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .concern-card, .service-card { padding: 27px; }
  .notice { grid-template-columns: 1fr; text-align: center; }
  .notice__icon { margin-inline: auto; }
  .notice .text-link { grid-column: 1; justify-content: center; }
  .statement-band { padding: 22px 0 25px; }
  .story-section::before { top: 16px; }
  .image-slot--story { min-height: 430px; }
  .story-media__bubble { right: -4px; width: 96px; height: 96px; border-width: 6px; font-size: 2.4rem; }
  .story-points { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; }
  .service-card__symbol { margin: 40px 0 25px; }
  .service-card__photo { min-height: 220px; }
  .process-item { grid-template-columns: 58px 1fr; gap: 15px; }
  .process-item__number { width: 48px; height: 48px; }
  .about-visual { padding-left: 15px; }
  .about-visual__frame { min-height: 450px; }
  .experience-card { right: -4px; }
  .quote-section { padding: 80px 0; }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .photo-grid__item, .photo-grid__item--large, .photo-grid__item--wide { grid-column: auto; min-height: 300px; }
  .faq-list summary { font-size: 1.1rem; }
  .contact-section { padding-bottom: 70px; }
  .contact-card { border-radius: 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 42px; }
  .footer-main .footer-links:last-child { grid-column: auto; }
  .footer-bottom .container { padding: 15px 0; align-items: flex-start; flex-direction: column; gap: 8px; }
  .mobile-actions { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 62px; color: var(--white); background: var(--teal-950); box-shadow: 0 -8px 25px rgba(9, 61, 67, 0.18); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; gap: 9px; font-size: 0.82rem; font-weight: 800; }
  .mobile-actions a:last-child { background: var(--coral); }
  .page-hero { padding: 54px 0 62px; }
  .page-hero h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .page-hero__visual { min-height: 340px; }
  .page-nav__inner { gap: 24px; }
  .feature-grid, .stage-grid, .related-grid, .article-grid { grid-template-columns: 1fr; }
  .split-feature__image { min-height: 390px; }
  .split-feature__image--spheroid img { height: 390px; }
  .about-story__portrait { min-height: 470px; }
  .about-story__chapter { grid-template-columns: 40px 1fr; gap: 15px; }
  .about-story__number { width: 36px; height: 36px; }
  .about-story__chapter--highlight { padding: 26px 22px; }
  .about-story__closing { padding: 28px 24px; }
  .contact-info-panel, .quiz-shell { padding: 28px; }
  .map-placeholder { min-height: 390px; }
  .nutrition-card { padding: 26px; }
  .daily-tips__grid, .aftercare-grid, .myth-grid, .risk-grid { grid-template-columns: 1fr; }
  .aftercare-card { min-height: auto; }
  .safety-hero { grid-template-columns: 1fr; padding: 28px; }
  .safety-hero__icon { width: 56px; height: 56px; font-size: 1.55rem; }
  .myth-card { min-height: auto; padding: 26px; }
  .safety-difference { padding: 70px 0 55px; }
  .safety-difference blockquote { min-height: 220px; padding: 30px; }
  .risk-grid article { min-height: auto; }
  .risk-grid__number { margin-bottom: 28px; }
  .safety-statement { padding: 48px 0; margin: 55px auto; }
  .home-device-panel { grid-template-columns: 1fr; padding: 28px; }
  .home-device-panel .button { grid-column: 1; justify-self: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .statement-band__track { animation: none; transform: translateX(-4%); }
  .reveal { opacity: 1; transform: none; }
}
