/* ===================================================================
   Rechtorisz-Hadobás Beáta – Reflexterápia
   Főoldal · pasztell, kék-domináns, játékos dizájn
   =================================================================== */

/* ---------- Betűtípus: Ink Free ---------- */
@font-face {
  font-family: 'Ink Free';
  src: url('../assets/inkfree.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Kékek – a logók alapján (ReflexKuckó égszínkék + Stephens–Sarlós mélykék) */
  --blue-50:  #eef7fe;
  --blue-100: #d9edfb;
  --blue-200: #b8ddf6;
  --blue-300: #83c5ee;
  --blue-400: #45abe2;   /* ReflexKuckó égszínkék */
  --blue-500: #2490cf;
  --blue-600: #1d6fb0;
  --blue-700: #1c4e8a;   /* Stephens–Sarlós mélykék */
  --blue-800: #143a68;

  /* Élénk akcentusok – intenzív, telített színek */
  --mint:   #b6f0df;
  --mint-d: #14b58f;
  --lemon:  #ffe79c;
  --lemon-d:#f7a80f;
  --peach:  #ffc7b3;
  --peach-d:#ff6a3d;
  --lilac:  #d9ccff;
  --lilac-d:#7c4dff;
  --pink:   #ffbcdd;
  --pink-d: #ff3d8b;

  --ink:    #1a3350;
  --muted:  #5a7189;
  --line:   #e2edf6;
  --bg:     #fbfdff;
  --bg-tint:#f0f8fe;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 6px 18px rgba(28, 78, 138, 0.08);
  --shadow-md: 0 18px 40px rgba(28, 78, 138, 0.13);
  --shadow-lg: 0 30px 70px rgba(28, 78, 138, 0.18);

  --maxw: 1120px;
  --font-main: 'Ink Free', 'Segoe UI', system-ui, sans-serif;
}

/* ---------- Alap ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font-main);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.2; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: .2px; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); }
h3 { font-size: 1.4rem; }

p { color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.lead { font-size: 1.25rem; color: var(--ink); }

.text-grad {
  background: linear-gradient(100deg, var(--blue-400), var(--mint-d));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Gombok ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-main); font-weight: 700; font-size: 1.15rem;
  padding: .85rem 1.8rem; border-radius: 999px; cursor: pointer;
  border: 3px solid transparent; transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(120deg, var(--blue-500), var(--blue-400));
  color: #fff; box-shadow: 0 12px 26px rgba(36, 144, 207, .38);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(36, 144, 207, .48); }
.btn--lg { padding: 1.05rem 2.2rem; font-size: 1.3rem; }

.pill {
  display: inline-block; font-weight: 700; font-size: 1rem; letter-spacing: .3px;
  color: var(--blue-700); background: #fff;
  border: 2px solid var(--blue-200); padding: .35rem 1.1rem; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.eyebrow {
  display: inline-block; font-weight: 700; font-size: 1.05rem; letter-spacing: .4px;
  color: var(--blue-500); margin-bottom: .5rem;
}

/* ---------- Fejléc ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 253, 255, .82); backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__brand { display: flex; align-items: center; gap: .6rem; }
.nav__logo { width: 48px; height: 48px; object-fit: contain; }
.nav__name { font-weight: 700; font-size: 1.5rem; color: var(--blue-600); }

.nav__menu { display: flex; align-items: center; gap: .4rem; list-style: none; }
.nav__link {
  font-weight: 700; font-size: 1.15rem; color: var(--ink);
  padding: .5rem 1.2rem; border-radius: 999px; transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--blue-600); background: var(--blue-50); }
.nav__link.is-active { color: #fff; background: linear-gradient(120deg, var(--blue-500), var(--blue-400)); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 27px; height: 3px; background: var(--blue-600); border-radius: 3px; transition: transform .3s, opacity .3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem); overflow: hidden; }
.hero { background: linear-gradient(180deg, #e3f2ff 0%, var(--bg) 78%); }
.hero__shape {
  position: absolute; z-index: 0; filter: blur(4px); opacity: .8;
  border-radius: 46% 54% 57% 43% / 43% 46% 54% 57%;
  animation: blob-drift 22s ease-in-out infinite;
}
.hero__shape--1 { width: 320px; height: 320px; background: var(--blue-300); top: -80px; right: 6%; animation-duration: 24s; }
.hero__shape--2 { width: 220px; height: 220px; background: var(--mint); bottom: 4%; left: -60px; animation-duration: 28s; animation-delay: -6s; border-radius: 58% 42% 45% 55% / 52% 44% 56% 48%; }
.hero__shape--3 { width: 150px; height: 150px; background: var(--lemon); top: 18%; left: 6%; animation-duration: 19s; animation-delay: -3s; }
.hero__shape--4 { width: 110px; height: 110px; background: var(--lilac); top: 58%; right: 24%; animation-duration: 23s; animation-delay: -13s; }
.hero__shape--5 { width: 84px; height: 84px; background: var(--blue-200); top: 8%; left: 40%; animation-duration: 26s; animation-delay: -9s; }
.hero::after {
  content: ""; position: absolute; z-index: 0; width: 130px; height: 130px;
  border-radius: 55% 45% 48% 52% / 50% 55% 45% 50%;
  background: var(--pink); filter: blur(4px); opacity: .75; bottom: 18%; right: 10%;
  animation: blob-drift 21s ease-in-out infinite; animation-delay: -10s;
}

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .85fr; gap: 3rem; align-items: center; }
.hero__text .pill { margin-bottom: 1.4rem; }
.hero__role { font-size: 1.5rem; color: var(--blue-600); font-weight: 700; margin: .4rem 0 1.8rem; }

.contact-chip {
  display: inline-flex; align-items: center; gap: .8rem;
  background: #fff; border: 2px solid var(--blue-100); border-radius: 999px;
  padding: .6rem 1.4rem .6rem .7rem; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.contact-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-300); }
.contact-chip__ico {
  width: 44px; height: 44px; flex: none; display: grid; place-items: center; font-size: 1.3rem;
  border-radius: 50%; background: var(--blue-50);
}
.contact-chip small { display: block; font-size: .85rem; color: var(--muted); line-height: 1.1; }
.contact-chip span:last-child { font-size: 1.15rem; color: var(--blue-700); font-weight: 700; }

.hero__visual { display: flex; justify-content: center; }
.hero__logo-ring {
  position: relative; width: min(380px, 78vw); aspect-ratio: 1;
  display: grid; place-items: center; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #fff 0%, var(--blue-50) 72%);
  box-shadow: var(--shadow-lg); animation: float 6s ease-in-out infinite;
}
.hero__logo-ring::before {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 3px dashed var(--blue-200);
}
.hero__logo-ring img { width: 84%; }

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

/* ---------- Szekciók ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; overflow: hidden; }
.section--sky  { background: linear-gradient(180deg, #d7edff, #eff8ff); }
.section--mint { background: linear-gradient(180deg, #d5f6ec, #fff8e6); }

/* Dekoratív, szabálytalan formák minden szekcióban (csak transform animál) */
.section > .container { position: relative; z-index: 1; }
.section::before, .section::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  filter: blur(5px); opacity: .45;
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  animation: blob-drift 24s ease-in-out infinite;
}
.section::before { width: 260px; height: 240px; background: var(--blue-100); top: -70px; right: -60px; }
.section::after  {
  width: 210px; height: 220px; background: var(--mint); bottom: -80px; left: -70px;
  border-radius: 58% 42% 38% 62% / 55% 40% 60% 45%;
  animation-duration: 30s; animation-delay: -8s;
}
.section:nth-of-type(even)::before { background: var(--lemon); }
.section:nth-of-type(even)::after  { background: var(--lilac); }
.section:nth-of-type(3n)::before   { background: var(--peach); width: 230px; height: 240px; }
.section:nth-of-type(3n)::after    { background: var(--blue-200); }

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%      { transform: translate(20px, -16px) rotate(9deg) scale(1.06); }
  66%      { transform: translate(-16px, 14px) rotate(-7deg) scale(.96); }
}
.section__head { max-width: 46rem; margin: 0 auto 2.6rem; text-align: center; }
.section__sub { margin-top: .8rem; font-size: 1.2rem; color: var(--blue-500); font-weight: 700; }
.section__note {
  max-width: 44rem; margin: 2.8rem auto 0; text-align: center; font-size: 1.25rem;
  color: var(--ink); background: #fff; border: 2px solid var(--blue-100);
  padding: 1.4rem 1.8rem; border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.section__note strong { color: var(--blue-600); }

/* ---------- Módszer / Stephens–Sarlós badge ---------- */
.method {
  display: flex; align-items: center; gap: 2.6rem; flex-wrap: wrap; justify-content: center;
  background: linear-gradient(135deg, #e6f3ff 0%, #ffffff 65%);
  border: 3px solid var(--blue-300); border-radius: 28px;
  padding: 2.8rem 3rem; box-shadow: var(--shadow-md); margin-bottom: 3.5rem;
}
.method__badge {
  flex: none; width: 170px; height: 170px; border-radius: 50%;
  display: grid; place-items: center; background: #fff;
  border: 3px solid var(--blue-200); box-shadow: var(--shadow-sm); overflow: hidden;
}
.method__badge img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.method__text { flex: 1 1 340px; }
.method__text .eyebrow {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem); color: var(--blue-700);
  margin-bottom: .6rem; letter-spacing: .2px;
}
.method .lead {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem); color: var(--ink);
  font-weight: 700; line-height: 1.5;
}

/* Kérdés-cím – egy fokkal kisebb */
.section__head--q h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); }

/* ---------- Tünet-lista ---------- */
.symptoms {
  list-style: none; max-width: 60rem; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.symptoms li {
  position: relative; display: flex; align-items: center;
  border: 2px solid transparent;
  border-radius: var(--radius-sm); padding: 1rem 1.2rem 1rem 3.1rem;
  color: var(--ink); font-size: 1.1rem; font-weight: 700; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.symptoms li:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.symptoms li::before {
  content: "✦"; position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  font-size: 1.05rem;
}
.symptoms li:nth-child(5n+1) { background: var(--blue-100); border-color: var(--blue-300); }
.symptoms li:nth-child(5n+1)::before { color: var(--blue-600); }
.symptoms li:nth-child(5n+2) { background: var(--mint); border-color: var(--mint-d); }
.symptoms li:nth-child(5n+2)::before { color: var(--mint-d); }
.symptoms li:nth-child(5n+3) { background: var(--lemon); border-color: var(--lemon-d); }
.symptoms li:nth-child(5n+3)::before { color: var(--lemon-d); }
.symptoms li:nth-child(5n+4) { background: var(--peach); border-color: var(--peach-d); }
.symptoms li:nth-child(5n+4)::before { color: var(--peach-d); }
.symptoms li:nth-child(5n+5) { background: var(--lilac); border-color: var(--lilac-d); }
.symptoms li:nth-child(5n+5)::before { color: var(--lilac-d); }

/* ---------- Lépések ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.step {
  position: relative; background: #fff; border: 2px solid var(--line);
  border-radius: var(--radius); padding: 2.4rem 1.8rem 2rem; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 8px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.step--a { background: linear-gradient(180deg, #e7f4ff, #fff); border-color: var(--blue-200); }
.step--b { background: linear-gradient(180deg, #dcf7ef, #fff); border-color: #8fe3cf; }
.step--c { background: linear-gradient(180deg, #fff2cf, #fff); border-color: #f7d488; }
.step--a::before { background: var(--blue-400); }
.step--b::before { background: var(--mint-d); }
.step--c::before { background: var(--lemon-d); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
  font-weight: 700; font-size: 1.4rem; color: #fff;
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  margin-bottom: 1.1rem;
}
.step--a .step__num { background: linear-gradient(135deg, var(--blue-500), var(--blue-400)); box-shadow: 0 10px 20px rgba(36,144,207,.32); }
.step--b .step__num { background: linear-gradient(135deg, var(--mint-d), #6fd9c1); box-shadow: 0 10px 20px rgba(56,184,155,.32); }
.step--c .step__num { background: linear-gradient(135deg, var(--lemon-d), #f6c66a); box-shadow: 0 10px 20px rgba(233,168,60,.32); }
.step h3 { color: var(--blue-700); margin-bottom: .5rem; }

/* ---------- Rólam ---------- */
.about { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.about__text h2 { margin: .2rem 0 .3rem; }
.about__text .role { font-weight: 700; color: var(--blue-500); font-size: 1.2rem; margin-bottom: 1.2rem; }
.about__text p { margin-bottom: 1rem; font-size: 1.1rem; }
.about__text strong { color: var(--blue-700); }

.quote-card {
  position: relative; background: linear-gradient(140deg, var(--blue-700), var(--blue-400));
  color: #fff; border-radius: var(--radius); padding: 2.8rem 2.4rem; box-shadow: var(--shadow-md);
  overflow: hidden;
}
.quote-card::after {
  content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%;
  background: rgba(255,255,255,.12); bottom: -60px; right: -40px;
}
.quote-card__mark { font-size: 4.5rem; line-height: .5; opacity: .55; }
.quote-card__text { font-weight: 700; font-size: 1.8rem; color: #fff; margin: .6rem 0 1.2rem; }
.quote-card__by { color: rgba(255,255,255,.9); font-weight: 700; font-size: 1.15rem; }

/* ---------- Bemutatkozás oldal ---------- */
.intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.4rem; align-items: center; position: relative; z-index: 1; }
.intro__visual { display: flex; justify-content: center; }
.portrait {
  position: relative; width: min(360px, 82vw);
  border-radius: 28px; overflow: hidden; border: 8px solid #fff;
  box-shadow: var(--shadow-lg);
}
.portrait::before {
  content: ""; position: absolute; inset: -18px; border-radius: 42px;
  border: 3px dashed var(--blue-200); z-index: 2; pointer-events: none;
}
.portrait img { width: 100%; height: auto; display: block; }
.intro__text h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: .2rem; }
.intro__text .role { font-weight: 700; color: var(--blue-500); font-size: 1.25rem; margin-bottom: 1.3rem; }
.intro__text p { margin-bottom: 1rem; font-size: 1.15rem; }
.intro__text strong { color: var(--blue-700); }

@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; text-align: center; }
  .intro__text .eyebrow { margin-top: 1rem; }
}

/* ---------- Szolgáltatás-kártyák (áttekintés) ---------- */
.svc-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.svc-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; box-shadow: var(--shadow-sm); color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 8px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-card__ico {
  width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.7rem; margin-bottom: 1rem;
}
.svc-card h3 { font-size: 1.18rem; margin-bottom: .4rem; color: var(--blue-700); }
.svc-card p { font-size: 1rem; margin-bottom: 1rem; flex: 1; }
.svc-card__price { font-weight: 700; color: var(--blue-700); font-size: 1.15rem; }
.svc-card__price small { display: block; font-size: .82rem; color: var(--muted); font-weight: 700; }
.svc-card__go { margin-top: 1rem; font-weight: 700; }

.svc-card--a::before { background: var(--blue-400); }
.svc-card--a .svc-card__ico { background: var(--blue-50); }
.svc-card--a:hover { border-color: var(--blue-300); } .svc-card--a .svc-card__go { color: var(--blue-500); }
.svc-card--b::before { background: var(--mint-d); }
.svc-card--b .svc-card__ico { background: #dcf7ef; }
.svc-card--b:hover { border-color: #8fe3cf; } .svc-card--b .svc-card__go { color: var(--mint-d); }
.svc-card--c::before { background: var(--lemon-d); }
.svc-card--c .svc-card__ico { background: #fff2cf; }
.svc-card--c:hover { border-color: #f7d488; } .svc-card--c .svc-card__go { color: var(--lemon-d); }
.svc-card--d::before { background: var(--lilac-d); }
.svc-card--d .svc-card__ico { background: #ece4ff; }
.svc-card--d:hover { border-color: #c3b0ff; } .svc-card--d .svc-card__go { color: var(--lilac-d); }

/* ---------- Szolgáltatás részletek ---------- */
.svc { scroll-margin-top: 96px; }
.svc__card {
  max-width: 860px; margin: 0 auto; background: #fff;
  border: 2px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-sm);
  border-top: 8px solid var(--blue-400);
}
.svc--a .svc__card { border-top-color: var(--blue-400); }
.svc--b .svc__card { border-top-color: var(--mint-d); }
.svc--c .svc__card { border-top-color: var(--lemon-d); }
.svc--d .svc__card { border-top-color: var(--lilac-d); }
.svc__head { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.svc__logo {
  flex: none; width: 120px; height: 120px; border-radius: 50%;
  display: grid; place-items: center; background: #fff;
  border: 3px solid var(--blue-200); box-shadow: var(--shadow-sm); overflow: hidden;
}
.svc__logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.svc--b .svc__logo { border-color: #8fe3cf; }
.svc--c .svc__logo { border-color: #f7d488; }
.svc--d .svc__logo { border-color: #c3b0ff; }
.svc__head > div:last-child { flex: 1 1 300px; }

/* Logó a cím és a fő szöveg mellett */
.svc__split { display: flex; align-items: center; gap: 2.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.svc__logo--lg { width: 210px; height: 210px; }
.svc__split-text { flex: 1 1 340px; }
.svc__split-text .svc__sub { margin-bottom: 1rem; }

@media (max-width: 700px) {
  .svc__split { justify-content: center; text-align: left; }
}
.svc__head .svc__sub { margin-bottom: 0; }
.svc__eyebrow { display: inline-block; font-weight: 700; font-size: 1.05rem; margin-bottom: .5rem; }
.svc--a .svc__eyebrow { color: var(--blue-500); }
.svc--b .svc__eyebrow { color: var(--mint-d); }
.svc--c .svc__eyebrow { color: var(--lemon-d); }
.svc--d .svc__eyebrow { color: var(--lilac-d); }
.svc__card h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: .3rem; }
.svc__sub { font-weight: 700; color: var(--blue-600); font-size: 1.15rem; margin-bottom: 1.2rem; }
.svc__card p { font-size: 1.12rem; margin-bottom: 1rem; }
.svc__list { list-style: none; margin: .4rem 0 1.4rem; display: grid; gap: .6rem; }
.svc__list li { position: relative; padding-left: 1.8rem; font-size: 1.12rem; color: var(--ink); font-weight: 700; }
.svc__list li::before { content: "✦"; position: absolute; left: .2rem; color: var(--blue-500); }

/* Képgaléria – döntött "polaroid" párok */
.svc__gallery {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem;
  margin: 2rem 0 .6rem; align-items: center;
}
.svc__gallery img {
  width: 100%; border-radius: 16px; border: 6px solid #fff;
  box-shadow: var(--shadow-md); transform: rotate(-2deg);
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc__gallery img:nth-child(2) { transform: rotate(2deg); }
.svc__gallery img:hover { transform: rotate(0) scale(1.03); box-shadow: var(--shadow-lg); }

/* Képes témakártyák */
.svc-topics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin: .6rem 0 1rem; }
.svc-topic {
  margin: 0; background: #f6f1ff; border: 2px solid #e0d3ff; border-radius: var(--radius-sm);
  overflow: hidden; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.svc-topic:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-topic img { width: 100%; height: 180px; object-fit: cover; background: #fff; }
.svc-topic figcaption { padding: 1rem 1.1rem 1.2rem; font-weight: 700; color: var(--ink); font-size: 1.02rem; }

@media (max-width: 700px) {
  .svc__gallery { grid-template-columns: 1fr; }
  .svc-topics { grid-template-columns: 1fr; }
  .svc-topic img { height: 200px; }
}

/* Árlista */
.price-list { margin-top: 1.4rem; display: grid; gap: .7rem; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .95rem 1.2rem; background: var(--blue-50); border: 2px solid var(--blue-100);
  border-radius: 14px;
}
.price-row__label { font-weight: 700; color: var(--ink); }
.price-row__label small { display: block; font-weight: 700; color: var(--muted); font-size: .9rem; }
.price-row__amount { font-weight: 700; color: var(--blue-700); font-size: 1.2rem; white-space: nowrap; }

@media (max-width: 900px) {
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
  .price-row { flex-direction: column; gap: .2rem; }
}
@media (max-width: 560px) {
  .svc-cards { grid-template-columns: 1fr; }
}

/* ---------- Videók (A módszerről) ---------- */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; margin-top: 1rem; }
.video {
  position: relative; aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden;
  border: 6px solid #fff; box-shadow: var(--shadow-md); background: #0d1b2a;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video--ph {
  display: grid; place-items: center; gap: .6rem; text-align: center; color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  font-weight: 700; font-size: 1.15rem;
}
.video-ph__ico {
  width: 64px; height: 64px; display: grid; place-items: center; font-size: 1.6rem;
  border-radius: 50%; background: rgba(255,255,255,.22); border: 2px solid rgba(255,255,255,.6);
}
.video-item { margin: 0; }
.video-item figcaption { margin-top: .85rem; text-align: center; font-weight: 700; color: var(--blue-700); font-size: 1.05rem; }
@media (max-width: 700px) { .video-grid { grid-template-columns: 1fr; } }

/* ---------- Telefon / hívás gomb ---------- */
.nav__call {
  display: inline-flex; align-items: center; gap: .5rem; margin-left: auto; margin-right: .8rem;
  font-weight: 700; font-size: 1.02rem; color: #fff; white-space: nowrap;
  background: linear-gradient(120deg, #12a074, #2ecb9f);
  padding: .5rem 1.1rem; border-radius: 999px; box-shadow: 0 8px 18px rgba(18,160,116,.32);
  transition: transform .2s, box-shadow .2s;
}
.nav__call:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(18,160,116,.44); }
.nav__call-ico { font-size: 1.05rem; }

.btn--call { background: linear-gradient(120deg, #12a074, #2ecb9f); color: #fff; box-shadow: 0 12px 26px rgba(18,160,116,.35); }
.btn--call:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(18,160,116,.45); }

.hero__contacts { display: flex; flex-wrap: wrap; gap: .9rem; }

.section__cta { text-align: center; margin-top: 2.2rem; }
.svc__cta { margin-top: 1.8rem; }

.btn--video { background: #fff; color: var(--blue-600); border-color: var(--blue-300); }
.btn--video:hover { transform: translateY(-3px); border-color: var(--blue-400); box-shadow: var(--shadow-sm); background: var(--blue-50); }
.video-link { margin-top: 1.4rem; }

/* OKOSKALAND – külső gomb */
.btn--okos { background: linear-gradient(120deg, #e8642a, #f5a623); color: #fff; box-shadow: 0 12px 26px rgba(232,100,42,.30); }
.btn--okos:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(232,100,42,.44); }
.okos-link { margin: 1rem 0 .2rem; }
.svc-card__overlay { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.svc-card .btn { position: relative; z-index: 2; align-self: flex-start; margin: .2rem 0 1rem; font-size: .95rem; padding: .58rem 1.15rem; }

/* Kattintható CTA-doboz (a gombok külön működnek fölötte) */
.cta-box__link { position: absolute; inset: 0; z-index: 3; border-radius: inherit; }
.cta-box:has(.cta-box__link) { cursor: pointer; }
.cta-box .cta-actions { position: relative; z-index: 4; }

.footer__contact { display: flex; flex-direction: column; gap: .55rem; align-items: flex-start; }
.footer__contact a { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: rgba(255,255,255,.9); transition: color .2s; }
.footer__contact a:hover { color: #fff; }

@media (max-width: 900px) { .hero__contacts { justify-content: center; } }
@media (max-width: 560px) {
  .nav__call-num { display: none; }
  .nav__call { padding: .5rem .7rem; margin-right: .5rem; }
  .footer__contact { align-items: center; }
}

/* ---------- Házirend ---------- */
.rules { display: grid; gap: 1.6rem; max-width: 62rem; margin: 0 auto; }
.rule-card {
  background: #fff; border: 2px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 2rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rule-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.rule-card__head { display: flex; align-items: center; gap: 1rem; margin-bottom: .7rem; }
.rule-card__ico { width: 52px; height: 52px; flex: none; display: grid; place-items: center; font-size: 1.5rem; border-radius: 16px; background: var(--blue-50); }
.rule-card h2 { font-size: 1.35rem; color: var(--blue-700); }
.rule-card p { font-size: 1.08rem; }
.rule-card .ticks { margin-top: .4rem; }
.rule-card:nth-child(5n+2) .rule-card__ico { background: #dcf7ef; }
.rule-card:nth-child(5n+3) .rule-card__ico { background: #fff2cf; }
.rule-card:nth-child(5n+4) .rule-card__ico { background: #ffe3d8; }
.rule-card:nth-child(5n+5) .rule-card__ico { background: #ece4ff; }

/* ---------- CTA ---------- */
.section--cta { padding-bottom: clamp(4rem, 8vw, 7rem); }
.cta-box {
  position: relative; text-align: center; color: #fff; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: 30px; padding: clamp(2.8rem, 5vw, 4rem) 1.6rem; box-shadow: var(--shadow-lg);
}
.cta-box::before, .cta-box::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.1); }
.cta-box::before { width: 270px; height: 270px; top: -100px; left: -60px; }
.cta-box::after { width: 210px; height: 210px; bottom: -90px; right: -40px; }
.cta-box h2 { color: #fff; position: relative; max-width: 40rem; margin: 0 auto; }
.cta-actions { margin-top: 2rem; position: relative; }
.cta-box .btn--primary { background: #fff; color: var(--blue-600); box-shadow: 0 12px 26px rgba(0,0,0,.18); }
.cta-box .btn--primary:hover { background: var(--blue-50); }

/* ---------- Lábléc ---------- */
.footer { background: var(--blue-800); color: rgba(255,255,255,.78); padding: 2.8rem 0; }
.footer__inner { display: grid; grid-template-columns: 1fr auto; gap: 1.4rem 2rem; align-items: center; }
.footer__brand { display: flex; align-items: center; gap: .9rem; }
.footer__brand img { width: 52px; height: 52px; background: #fff; border-radius: 14px; padding: 5px; }
.footer__brand strong { display: block; color: #fff; font-size: 1.25rem; }
.footer__brand span { font-size: .98rem; }
.footer__copy { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.4rem; font-size: .95rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Reszponzív ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__text .pill, .contact-chip { margin-inline: auto; }
  .hero__visual { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .method { flex-direction: column; text-align: center; }

  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; gap: 0; padding: 1rem 1.2rem 1.6rem; border-bottom: 2px solid var(--line);
    box-shadow: var(--shadow-md); transform: translateY(-140%); transition: transform .35s ease; z-index: 40;
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__link { padding: .9rem 1rem; border-radius: var(--radius-sm); text-align: center; }
}

@media (max-width: 560px) {
  .symptoms { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
}

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