/* ============================================================
   Ragyogó Lakás – egyoldalas weblap
   A színek és a hangulat a nyomtatott A6-os szórólapokból jönnek.
   ============================================================ */

:root {
  /* Szórólap-paletta */
  --teal:        #2D8178;
  --teal-dark:   #24685F;
  --teal-soft:   #EDF7F4;
  --blue:        #225F7A;
  --blue-soft:   #F2F8FA;
  --blue-line:   #D5E3E7;
  --orange:      #D9693A;
  --orange-dark: #BE552A;
  --orange-soft: #FFF3E8;
  --orange-line: #EADBD2;
  --navy:        #173B4F;
  --green:       #36874A;
  --cream:       #FFF9EE;
  --muted:       #5C6E75;

  --ink:         #12303F;
  --paper:       #FFFFFF;
  --line:        #E4EDF0;

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(23, 59, 79, .06), 0 2px 8px rgba(23, 59, 79, .05);
  --shadow:    0 2px 6px rgba(23, 59, 79, .06), 0 14px 34px rgba(23, 59, 79, .09);
  --shadow-lg: 0 4px 10px rgba(23, 59, 79, .07), 0 28px 60px rgba(23, 59, 79, .14);

  --wrap: 1140px;
  --header-h: 72px;

  --font: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system,
          "Aptos", "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- alap ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  margin: 0 0 .4em;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--navy);
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.1rem; }

p { margin: 0 0 1rem; }

a { color: var(--teal); text-underline-offset: 3px; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -140%);
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: .7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
  transition: transform .2s;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- gombok ---------- */

.btn {
  --btn-bg: var(--teal);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .78em 1.4em;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--teal); box-shadow: 0 6px 18px rgba(45, 129, 120, .28); }
.btn--primary:hover { background: var(--teal-dark); box-shadow: 0 10px 24px rgba(45, 129, 120, .34); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--blue-line);
}
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-soft); }

.btn--sm  { padding: .5em 1em; font-size: .92rem; }
.btn--lg  { padding: .9em 1.7em; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }

.ico { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* ---------- fejléc ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px rgba(23, 59, 79, .06);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--navy);
  margin-right: auto;
}
.brand__mark { width: 44px; height: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-size: 1.12rem; letter-spacing: -.02em; }
.brand__text small { font-size: .72rem; color: var(--muted); font-weight: 600; }

.nav ul {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav a {
  display: block;
  padding: .5rem .75rem;
  border-radius: 999px;
  color: var(--navy);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .18s, color .18s;
}
.nav a:hover { background: var(--teal-soft); color: var(--teal); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--blue-line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(1000px 460px at 8% -10%, var(--teal-soft) 0%, transparent 62%),
    radial-gradient(880px 420px at 96% 0%, var(--orange-soft) 0%, transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--blue-soft) 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 .9rem;
  padding: .38rem .85rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.eyebrow--light { background: rgba(255, 255, 255, .16); color: #fff; }

.hl {
  background: linear-gradient(180deg, transparent 62%, rgba(217, 105, 58, .22) 62%);
  padding-inline: .08em;
}

.lead {
  max-width: 52ch;
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1.6rem 0 1.4rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.chips--center { justify-content: center; }

.chip {
  padding: .38rem .8rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  border: 1px solid transparent;
}
.chip--teal   { background: var(--teal-soft);   color: var(--teal);   border-color: #CDE7E0; }
.chip--orange { background: var(--orange-soft); color: var(--orange); border-color: var(--orange-line); }
.chip--green  { background: #EAF6EC;            color: var(--green);  border-color: #CFE8D5; }

.hero__media { position: relative; }
.hero__media img {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 26px 34px rgba(23, 59, 79, .22));
  animation: float 7s ease-in-out infinite;
}
.hero__blob {
  position: absolute;
  inset: 6% -6% 12% 2%;
  background: radial-gradient(closest-side, rgba(45, 129, 120, .16), transparent 72%);
  border-radius: 50%;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ---------- futó csík ---------- */

.marquee {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.marquee__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 2rem;
  padding: .85rem 0;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.marquee span { position: relative; opacity: .92; }
.marquee span + span::before {
  content: "•";
  position: absolute;
  left: -1.1rem;
  color: var(--orange);
}

/* ---------- szekciók ---------- */

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--soft {
  background: linear-gradient(180deg, var(--blue-soft), #fff);
  border-block: 1px solid var(--line);
}

.section__head {
  max-width: 60ch;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.section__lead { color: var(--muted); margin-bottom: 0; }

.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- szolgáltatáskártyák ---------- */

.card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 2.6vw, 2.1rem);
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card--teal   { border-color: var(--blue-line);   background: linear-gradient(180deg, var(--teal-soft) 0%, #fff 42%); }
.card--orange { border-color: var(--orange-line); background: linear-gradient(180deg, var(--orange-soft) 0%, #fff 42%); }

.card__top { margin-bottom: 1rem; }

.card__badge {
  display: inline-block;
  margin-bottom: .7rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card--teal   .card__badge { color: var(--teal); }
.card--orange .card__badge { color: var(--orange); }

.card__price { margin: 0; color: var(--navy); }
.card__price strong { font-size: clamp(1.9rem, 3.4vw, 2.4rem); letter-spacing: -.03em; }
.card__price span { font-size: 1rem; color: var(--muted); font-weight: 600; }

.card__note { margin: .1rem 0 0; font-size: .85rem; font-weight: 700; color: var(--muted); }
.card__desc { color: var(--muted); }

.card__link {
  margin-top: auto;
  padding-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-weight: 700;
  text-decoration: none;
  color: var(--navy);
}
.card--teal   .card__link:hover { color: var(--teal); }
.card--orange .card__link:hover { color: var(--orange); }
.card__link span { transition: transform .2s; }
.card__link:hover span { transform: translateX(4px); }

/* pipás listák */
.ticks {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
}
.ticks li {
  position: relative;
  padding-left: 1.9rem;
  font-weight: 600;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .28em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232D8178'%3E%3Cpath d='M9.5 17.6 4 12.1l1.6-1.6 3.9 3.9L18.4 5.5 20 7.1z'/%3E%3C/svg%3E") center / .75rem no-repeat;
}
.card--orange .ticks li::before {
  background-color: var(--orange-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D9693A'%3E%3Cpath d='M9.5 17.6 4 12.1l1.6-1.6 3.9 3.9L18.4 5.5 20 7.1z'/%3E%3C/svg%3E");
}
.ticks em { font-style: normal; color: var(--muted); font-weight: 600; font-size: .88em; }
.ticks--sm li { font-size: .95rem; font-weight: 500; }

/* ---------- árak ---------- */

.price {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  background: #fff;
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.price--featured {
  position: relative;
  border-color: var(--orange-line);
  background: linear-gradient(180deg, var(--cream) 0%, #fff 55%);
  box-shadow: var(--shadow);
}

.price__flag {
  position: absolute;
  top: -.85rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: .3rem .9rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price__kicker {
  margin: 0 0 .25rem;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
}
.price--featured .price__kicker { color: var(--orange); }

.price__title { font-size: 1.3rem; margin-bottom: .5rem; }

.price__amount {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  margin: 0;
  color: var(--navy);
}
.price__amount strong { font-size: 2.6rem; letter-spacing: -.03em; line-height: 1; }
.price__amount span { font-size: .95rem; font-weight: 600; color: var(--muted); }

.price__min {
  margin: .35rem 0 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px dashed var(--blue-line);
  font-size: .85rem;
  font-weight: 700;
  color: var(--muted);
}

.price .btn { margin-top: auto; }
.price .ticks { margin-bottom: 1.4rem; }

.price__footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin: clamp(1.6rem, 3vw, 2.4rem) auto 0;
  padding: .9rem 1.3rem;
  max-width: 780px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: .92rem;
  font-weight: 700;
  text-align: center;
}
.ico--info { width: 1.2rem; height: 1.2rem; }

/* ---------- szolgáltatási terület ---------- */

.area {
  padding: clamp(1.3rem, 2.2vw, 1.8rem);
  border: 1px solid var(--blue-line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.area:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.area:nth-child(2n) { border-left-color: var(--orange); }

.area__name {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.15rem;
}
.area__name::before {
  content: "";
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232D8178'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.3 7 13 7 13s7-7.7 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.area:nth-child(2n) .area__name::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D9693A'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.3 7 13 7 13s7-7.7 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5Z'/%3E%3C/svg%3E");
}

.area p { margin: 0; color: var(--muted); font-size: .97rem; }

.area-nearby {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
  border: 1px dashed var(--blue-line);
  border-radius: var(--radius-lg);
  background: var(--blue-soft);
  text-align: center;
}
.area-nearby h3 { font-size: 1.02rem; margin-bottom: 1rem; }
.area-nearby .chips { justify-content: center; }
.area-nearby__note {
  margin: 1.1rem 0 0;
  font-size: .92rem;
  color: var(--muted);
}

/* ---------- GYIK ---------- */

.faq {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: .7rem;
}

.faq__item {
  border: 1px solid var(--blue-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq__item[open] { border-color: var(--teal); box-shadow: var(--shadow); }

.faq__item summary {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.05rem 1.3rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  margin-left: auto;
  width: 1.5rem;
  height: 1.5rem;
  flex: none;
  border-radius: 50%;
  background: var(--teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232D8178'%3E%3Cpath d='M11 5h2v14h-2z'/%3E%3Cpath d='M5 11h14v2H5z'/%3E%3C/svg%3E") center / .85rem no-repeat;
  transition: transform .25s;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--orange-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D9693A'%3E%3Cpath d='M11 5h2v14h-2z'/%3E%3Cpath d='M5 11h14v2H5z'/%3E%3C/svg%3E");
}
.faq__item summary:hover { background: var(--blue-soft); }

.faq__body {
  padding: 0 1.3rem 1.2rem;
  border-top: 1px solid var(--line);
  margin-top: -.2rem;
  padding-top: 1rem;
}
.faq__body p { margin: 0; color: var(--muted); font-size: .97rem; }

/* ---------- előnyök ---------- */

.feature {
  padding: clamp(1.3rem, 2.2vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-line); }

.feature__ico {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;
}
.feature__ico svg { width: 26px; height: 26px; }
.feature__ico img { width: 28px; height: 28px; }

.feature__ico--teal   { background: var(--teal-soft);   }
.feature__ico--teal svg   { fill: var(--teal); }
.feature__ico--orange { background: var(--orange-soft); }
.feature__ico--orange svg { fill: var(--orange); }
.feature__ico--blue   { background: var(--blue-soft);   }
.feature__ico--blue svg   { fill: var(--blue); }
.feature__ico--green  { background: #EAF6EC;            }

.feature p { margin: 0; color: var(--muted); font-size: .97rem; }

/* ---------- folyamat ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.4vw, 1.75rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  position: relative;
  padding: clamp(1.4rem, 2.4vw, 2rem) clamp(1.3rem, 2vw, 1.8rem);
  background: #fff;
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: .9rem;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}
.step:nth-child(2) .step__num { background: var(--teal); }
.step:nth-child(3) .step__num { background: var(--orange); }
.step p { margin: 0; color: var(--muted); font-size: .97rem; }

/* ---------- kapcsolat ---------- */

.cta { padding-bottom: clamp(3.5rem, 8vw, 6rem); }

.cta__box {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.4rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #fff;
  background:
    radial-gradient(700px 320px at 12% 0%, rgba(255, 255, 255, .16), transparent 60%),
    radial-gradient(600px 300px at 92% 110%, rgba(217, 105, 58, .38), transparent 60%),
    linear-gradient(135deg, var(--teal) 0%, var(--blue) 58%, var(--navy) 100%);
  box-shadow: var(--shadow-lg);
}
.cta__box h2 { color: #fff; }
.cta__lead {
  max-width: 54ch;
  margin-inline: auto;
  color: rgba(255, 255, 255, .88);
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 1.4rem 0 1.6rem;
  padding: .8rem 1.8rem;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: clamp(1.4rem, 3.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
  transition: transform .2s, box-shadow .2s;
}
.phone:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0, 0, 0, .26); }
.phone .ico { width: .9em; height: .9em; color: var(--teal); }

.cta .chip--teal   { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.28); }
.cta .chip--orange { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.28); }
.cta .chip--green  { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.28); }

/* ---------- lábléc ---------- */

.site-footer {
  padding: 2.5rem 0 calc(2.5rem + env(safe-area-inset-bottom));
  background: var(--blue-soft);
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer__brand { display: flex; align-items: center; gap: .8rem; }
.footer__brand img { width: 60px; }
.footer__slogan {
  margin: 0;
  font-weight: 800;
  color: var(--navy);
  font-size: .95rem;
}
.footer__nav { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.footer__nav a {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
}
.footer__nav a:hover { color: var(--teal); text-decoration: underline; }
.footer__meta {
  margin: 0;
  text-align: right;
  font-size: .9rem;
  color: var(--muted);
}
.footer__meta a { font-weight: 800; color: var(--navy); text-decoration: none; }
.footer__meta a:hover { color: var(--teal); }

.footer__areas {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--blue-line);
  font-size: .82rem;
  line-height: 1.9;
  color: var(--muted);
  text-align: center;
}

/* ---------- mobil hívás sáv ---------- */

.call-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(.9rem + env(safe-area-inset-bottom));
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1rem;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(23, 59, 79, .3);
}

/* ---------- megjelenési animáció ---------- */

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

/* ---------- reszponzív ---------- */

@media (max-width: 1120px) {
  .nav a { padding: .5rem .5rem; font-size: .88rem; }
  .brand__text small { display: none; }
  .header-cta { font-size: .86rem; }
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: left; }
  .hero__media { order: -1; max-width: 460px; margin-inline: auto; }
  .grid--2, .grid--3, .steps { grid-template-columns: 1fr; }
  .price--featured { margin-top: 1rem; }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .header-cta { display: none; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(23, 59, 79, .1);
    display: none;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .6rem 1.25rem 1rem; }
  .nav a { padding: .85rem .6rem; border-radius: var(--radius-sm); font-size: 1rem; }
  .nav li + li a { border-top: 1px solid var(--line); border-radius: 0; }

  .call-bar { display: flex; }
  body { padding-bottom: 4.5rem; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer__meta { text-align: center; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero__actions .btn { width: 100%; }
  .price__amount strong { font-size: 2.2rem; }
  .price__footnote { border-radius: var(--radius); }
}

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

/* ---------- nyomtatás ---------- */

@media print {
  .site-header, .call-bar, .marquee, .hero__actions, .nav-toggle { display: none !important; }
  body { padding: 0; }
  .reveal { opacity: 1; transform: none; }
  .cta__box { background: #fff; color: var(--navy); box-shadow: none; border: 1px solid var(--line); }
  .cta__box h2, .cta__lead { color: var(--navy); }
}
