
:root {
  --fig-purple: #241033;
  --fig-purple-2: #3b1f4a;
  --leaf-green: #6f7f3f;
  --leaf-green-2: #4f622e;
  --gold: #d7b56d;
  --cream: #faf6ef;
  --surface: #ffffff;
  --ink: #21152b;
  --muted: #665873;
  --line: rgba(36, 16, 51, .14);
  --shadow: 0 22px 70px rgba(36,16,51,.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; background: var(--gold); color: var(--fig-purple); padding: 8px 12px; border-radius: 8px; z-index: 10; }
.skip-link:focus { left: 12px; }
.header { position: sticky; top: 0; z-index: 20; background: rgba(250,246,239,.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 900; letter-spacing: -.02em; color: var(--fig-purple); }
.brand-logo { width: 54px; height: 54px; border-radius: 18px; object-fit: contain; background: #fff; box-shadow: 0 10px 28px rgba(36,16,51,.10); padding: 4px; }
.nav-links { display: flex; gap: 18px; align-items: center; font-weight: 700; font-size: 14px; }
.nav-links a { text-decoration: none; color: var(--fig-purple); opacity: .86; }
.nav-links a:hover { opacity: 1; color: var(--leaf-green-2); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch { text-decoration: none; font-weight: 900; color: var(--fig-purple); border: 1px solid var(--line); border-radius: 999px; padding: 8px 11px; background: rgba(255,255,255,.65); }
.mobile-toggle { display: none; border: 0; border-radius: 12px; padding: 8px 12px; color: var(--cream); background: var(--fig-purple); font-weight: 900; cursor: pointer; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 999px; padding: 12px 19px; text-decoration: none; font-weight: 900; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--fig-purple); color: #fff; box-shadow: 0 12px 28px rgba(36,16,51,.22); }
.btn-secondary { background: var(--gold); color: var(--fig-purple); }
.btn-ghost { color: var(--fig-purple); border: 1px solid rgba(36,16,51,.20); background: rgba(255,255,255,.68); }
.hero { padding: 86px 0 60px; background: radial-gradient(circle at 78% 24%, rgba(215,181,109,.28), transparent 28%), radial-gradient(circle at 5% 5%, rgba(111,127,63,.22), transparent 34%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--leaf-green-2); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
.eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(215,181,109,.18); }
h1 { font-size: clamp(42px, 6vw, 74px); line-height: .96; letter-spacing: -.06em; color: var(--fig-purple); margin: 18px 0 18px; }
.hero-lead { font-size: clamp(18px, 2vw, 21px); color: var(--muted); max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 22px; }
.trust-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; color: var(--fig-purple); font-weight: 800; }
.trust-list li { display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,.62); border: 1px solid var(--line); border-radius: 16px; padding: 10px 12px; }
.trust-list li::before { content: "✓"; color: var(--leaf-green-2); font-weight: 900; }
.hero-card { background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 34px; box-shadow: var(--shadow); padding: 36px; min-height: 420px; display: grid; place-items: center; position: relative; overflow: hidden; }
.hero-card::after { content: ""; position: absolute; inset: auto -80px -90px auto; width: 230px; height: 230px; background: rgba(111,127,63,.18); border-radius: 50%; }
.hero-logo { width: min(340px, 78%); border-radius: 38px; background: #fff; box-shadow: 0 18px 55px rgba(36,16,51,.10); padding: 18px; z-index: 1; }
.section { padding: 72px 0; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 28px; }
.section h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.05; letter-spacing: -.04em; color: var(--fig-purple); margin: 0 0 12px; }
.section-head p, .lead { color: var(--muted); font-size: 17px; max-width: 820px; margin: 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 26px; padding: 24px; box-shadow: 0 14px 45px rgba(36,16,51,.08); }
.card h3 { margin: 0 0 10px; color: var(--fig-purple); font-size: 21px; line-height: 1.2; }
.card p { color: var(--muted); margin: 0 0 12px; }
.card p:last-child { margin-bottom: 0; }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: rgba(111,127,63,.13); color: var(--leaf-green-2); font-weight: 900; font-size: 22px; margin-bottom: 14px; }
.band { background: linear-gradient(135deg, var(--fig-purple), var(--fig-purple-2)); color: #fff; border-radius: 34px; padding: clamp(28px, 5vw, 50px); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.band::after { content: ""; position: absolute; width: 270px; height: 270px; border-radius: 50%; background: rgba(215,181,109,.18); right: -90px; top: -90px; }
.band h2 { color: #fff; max-width: 840px; }
.band p { color: #eee6f4; max-width: 860px; }
.list { padding-left: 18px; margin: 0; color: var(--muted); }
.list li { margin: 8px 0; }
.process .card { counter-increment: step; }
.process .card::before { content: counter(step); width: 34px; height: 34px; display: grid; place-items: center; margin-bottom: 12px; border-radius: 50%; background: var(--gold); color: var(--fig-purple); font-weight: 900; }
.booking-box { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; align-items: start; }
.calendar-wrap { background: transparent; border: 0; border-radius: 24px; box-shadow: none; overflow: hidden; }
.google-calendar-frame { width: 100%; min-width: 0; height: 600px; max-height: 72vh; border: 0; border-radius: 24px; background: #fff; }
.form { display: grid; gap: 15px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.form label { display: grid; gap: 7px; color: var(--fig-purple); font-weight: 800; font-size: 14px; }
.form input, .form select, .form textarea { width: 100%; border: 1px solid rgba(36,16,51,.18); border-radius: 14px; padding: 12px 14px; font: inherit; color: var(--ink); background: #fff; outline: none; }
.form textarea { min-height: 130px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--leaf-green); box-shadow: 0 0 0 4px rgba(111,127,63,.13); }
.form .full { grid-column: 1 / -1; }
.consent { display: flex !important; grid-template-columns: auto 1fr; align-items: start; gap: 10px; color: var(--muted) !important; font-weight: 600 !important; }
.consent input { width: auto; margin-top: 3px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.legal-note { color: var(--muted); font-size: 13px; }
.contact-list { display: grid; gap: 12px; margin-top: 6px; }
.contact-line { margin: 0; color: var(--muted); }
.contact-line strong { color: var(--fig-purple); }
.email-link { color: var(--fig-purple); font-weight: 900; text-decoration: none; }
.email-link:hover { text-decoration: underline; }
.phone-reveal { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 0; }
.phone-value { color: var(--fig-purple); font-weight: 900; }
.phone-value[hidden] { display: none; }
.small-btn { border: 1px solid rgba(36,16,51,.20); border-radius: 999px; padding: 9px 13px; background: #fff; color: var(--fig-purple); font-weight: 900; cursor: pointer; }
.small-btn:hover { background: rgba(215,181,109,.18); }
.refs a { color: var(--fig-purple); font-weight: 800; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px 20px; margin: 12px 0; box-shadow: 0 10px 30px rgba(36,16,51,.05); }
.faq summary { color: var(--fig-purple); font-weight: 900; cursor: pointer; }
.faq p { color: var(--muted); margin-bottom: 0; }
.footer { background: var(--fig-purple); color: #fff; padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 24px; }
.footer p, .footer a, .footer small { color: #eee6f4; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--gold); }
@media (max-width: 920px) {
  .hero-grid, .grid-2, .grid-3, .booking-box { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-links { position: absolute; left: 16px; right: 16px; top: 76px; display: none; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px; box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .mobile-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .nav-actions .btn-primary { display: none; }
  .brand span { font-size: 16px; }
  .brand-logo { width: 46px; height: 46px; border-radius: 15px; }
  .hero { padding-top: 54px; }
  .trust-list, .grid-4, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 310px; padding: 24px; }
  .section { padding: 52px 0; }
  .google-calendar-frame { height: 620px; max-height: none; }
}


.recaptcha-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 78px;
  overflow: visible;
}

.recaptcha-field .g-recaptcha {
  transform-origin: left top;
}

@media (max-width: 380px) {
  .recaptcha-field .g-recaptcha {
    transform: scale(.88);
  }
}


.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 4px 0 0; color: var(--muted); }
.cookie-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
@media (max-width: 720px) { .cookie-banner { grid-template-columns: 1fr; } }


.btn:disabled,
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.recaptcha-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.recaptcha-note.is-error {
  color: #8a2a2a;
  font-weight: 700;
}

.form input.field-invalid,
.form select.field-invalid,
.form textarea.field-invalid {
  border-color: #b42318 !important;
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.14) !important;
  background: #fffafa;
}

.form .consent.field-invalid {
  border: 1px solid #b42318;
  border-radius: 14px;
  padding: 10px;
  background: #fff5f5;
}

.recaptcha-field.field-invalid {
  border: 1px solid #b42318;
  border-radius: 16px;
  padding: 10px;
  background: #fff5f5;
}


/* SEO optimalizált elrendezés és laptop nézet javítás */
.nav { min-height: 72px; gap: 14px; }
.nav-links { gap: 12px; font-size: 13px; white-space: nowrap; }
.nav-cta { padding: 10px 15px; }
.hero { padding: 72px 0 52px; }
.hero-grid { grid-template-columns: minmax(0, 1fr); gap: 30px; }
h1 { font-size: clamp(38px, 4.8vw, 64px); line-height: 1.02; letter-spacing: -.045em; max-width: 980px; }
.hero-lead { max-width: 860px; }
.hero-card.mini { min-height: auto; padding: 26px; text-align: center; }
.hero-card.mini .hero-logo { width: min(220px, 82%); margin: 0 auto 14px; }
.hero-card.mini p { margin: 0; color: var(--muted); }
.hero-card.mini a { color: var(--fig-purple); font-weight: 900; text-decoration: none; }
.compact-hero { padding: 62px 0 44px; }
.alt-section { background: rgba(255,255,255,.38); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 24px; align-items: start; }
.article { padding: clamp(24px, 4vw, 42px); }
.article h2 { margin-top: 0; }
.article p { color: var(--muted); font-size: 17px; margin: 0 0 18px; }
.sidebar { position: sticky; top: 96px; display: grid; gap: 16px; }
.link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.link-card { display: grid; gap: 6px; padding: 18px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(36,16,51,.06); text-decoration: none; }
.link-card strong { color: var(--fig-purple); }
.link-card span { color: var(--muted); font-size: 14px; }
.link-card:hover { transform: translateY(-1px); box-shadow: 0 16px 40px rgba(36,16,51,.10); }
.text-link { color: var(--fig-purple); font-weight: 900; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.band-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; position: relative; z-index: 1; }
.btn-ghost.light { color: #fff; border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.10); }
.legal-card h2, .legal-card h3 { color: var(--fig-purple); }
.legal-card p, .legal-card li, .legal-card td { color: var(--muted); }
.legal-card table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.legal-card th, .legal-card td { border: 1px solid var(--line); padding: 10px; vertical-align: top; }
.legal-card th { color: var(--fig-purple); text-align: left; background: rgba(215,181,109,.16); }
@media (max-width: 1120px) {
  .nav-links { position: absolute; left: 16px; right: 16px; top: 72px; display: none; flex-direction: column; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px; box-shadow: var(--shadow); white-space: normal; }
  .nav-links.is-open { display: flex; }
  .mobile-toggle { display: inline-flex; }
  .hero-grid, .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 920px) {
  .grid-2, .grid-3, .booking-box, .link-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  h1 { font-size: clamp(36px, 12vw, 48px); }
  .hero-actions .btn { width: 100%; }
  .trust-list, .grid-4, .form-grid, .footer-grid { grid-template-columns: 1fr; }
}


/* Rendezett kapcsolódó oldalak */
.related-section .topic-groups { display: grid; gap: 18px; }
.topic-group { padding: 22px; }
.topic-group h3 { margin-bottom: 14px; }
.link-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 920px) { .link-grid.compact { grid-template-columns: 1fr; } }
