:root {
  --ink: #17221d;
  --muted: #5f6b64;
  --forest: #174c3c;
  --forest-deep: #0d372b;
  --forest-soft: #dfece5;
  --sage: #edf3ed;
  --cream: #fbfaf5;
  --paper: #ffffff;
  --yellow: #e9bd5a;
  --yellow-soft: #fff2c9;
  --line: #dce4de;
  --danger: #a53a32;
  --shadow: 0 24px 70px rgba(26, 51, 39, .10);
  --shadow-small: 0 12px 30px rgba(26, 51, 39, .08);
  --radius: 24px;
  --radius-small: 14px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 6vw, 5.75rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.2rem, 4vw, 3.75rem); margin-bottom: 24px; }
h3 { font-size: 1.35rem; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-tint { background: var(--sage); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -80px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--forest);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow > span { width: 30px; height: 2px; background: var(--yellow); }
.eyebrow.light { color: #dbe9e1; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 2px solid var(--forest);
  border-radius: 12px;
  background: var(--forest);
  color: white;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--forest-deep); box-shadow: 0 10px 20px rgba(23, 76, 60, .16); }
.button-small { min-height: 42px; padding: 9px 17px; font-size: .9rem; }
.button-ghost { border-color: #b8c8be; background: transparent; color: var(--forest-deep); }
.button-ghost:hover { border-color: var(--forest); background: rgba(23, 76, 60, .05); }
.button-light { border-color: white; background: white; color: var(--forest-deep); }
.button-light:hover { background: var(--yellow-soft); border-color: var(--yellow-soft); }
.button-block { width: 100%; }
.text-link { display: inline-flex; gap: 9px; align-items: center; color: var(--forest); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(220, 228, 222, .82);
  background: rgba(251, 250, 245, .91);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(23, 34, 29, .07); }
.header-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-size: 1.25rem; font-weight: 850; letter-spacing: -.04em; text-decoration: none; }
.brand-mark { position: relative; display: inline-grid; width: 32px; height: 32px; place-items: center; overflow: hidden; border-radius: 9px; background: var(--forest); }
.brand-mark::before, .brand-mark::after, .brand-mark span { content: ""; position: absolute; background: var(--yellow); transform: rotate(-22deg); }
.brand-mark::before { width: 8px; height: 19px; left: 6px; top: 11px; }
.brand-mark::after { width: 8px; height: 25px; left: 15px; top: 2px; }
.brand-mark span { width: 7px; height: 15px; right: 4px; top: -1px; }
.header-phone { display: inline-flex; align-items: baseline; gap: 8px; margin-left: auto; padding: 8px 0; color: var(--forest-deep); line-height: 1; text-decoration: none; white-space: nowrap; }
.header-phone small { color: var(--muted); font-size: .63rem; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.header-phone strong { font-size: .96rem; letter-spacing: .01em; }
.header-phone:hover strong { color: var(--forest); text-decoration: underline; text-underline-offset: 4px; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.main-nav a { color: #47534c; font-size: .91rem; font-weight: 680; text-decoration: none; }
.main-nav a:hover { color: var(--forest); }

.hero { position: relative; overflow: hidden; padding: 72px 0 80px; }
.hero::before {
  content: "";
  position: absolute;
  width: 630px;
  height: 630px;
  right: -300px;
  top: -280px;
  border-radius: 50%;
  background: rgba(224, 237, 227, .75);
}
.hero::after {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -100px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(23, 76, 60, .12);
  border-radius: 50%;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 74px; }
.hero-copy, .hero-board { min-width: 0; }
.hero h1 em { display: block; color: var(--forest); font-style: normal; }
.hero-lead { max-width: 660px; color: #4f5c54; font-size: clamp(1.1rem, 2vw, 1.32rem); line-height: 1.65; }
.hero-highlight { max-width: 660px; margin: 20px 0 27px; padding: 14px 17px; border-left: 4px solid var(--yellow); border-radius: 0 12px 12px 0; background: var(--yellow-soft); color: var(--forest-deep); font-size: 1rem; font-weight: 750; }
.hero-highlight strong { color: var(--forest); }
.gift-note { display: inline-flex; align-items: center; gap: 12px; margin: 7px 0 28px; padding: 10px 15px 10px 10px; border-radius: 999px; background: var(--yellow-soft); font-size: .93rem; }
.gift-icon { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--forest-deep); font-size: 1.3rem; font-weight: 900; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 25px; padding: 0; margin: 28px 0 0; list-style: none; color: #556158; font-size: .88rem; font-weight: 700; }
.hero-points li::before { content: "✓"; margin-right: 8px; color: var(--forest); font-weight: 900; }

.hero-board { position: relative; padding: 24px; border: 1px solid rgba(23, 76, 60, .12); border-radius: 28px; background: rgba(255, 255, 255, .94); box-shadow: var(--shadow); transform: rotate(1.1deg); }
.hero-board::before { content: ""; position: absolute; z-index: -1; inset: 18px -18px -18px 18px; border-radius: 28px; background: var(--forest); opacity: .1; }
.board-top, .board-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.board-top { padding: 0 3px 18px; border-bottom: 1px solid var(--line); }
.board-title { font-weight: 850; letter-spacing: -.02em; }
.board-status { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: .72rem; font-weight: 750; }
.board-status i { width: 8px; height: 8px; border-radius: 50%; background: #4ca876; box-shadow: 0 0 0 4px #e2f1e7; }
.route { padding: 12px 0; margin: 0; list-style: none; }
.route-item { position: relative; display: grid; grid-template-columns: 38px 1fr 24px; align-items: center; gap: 13px; padding: 12px 10px; border-bottom: 1px solid #edf0ee; }
.route-item:last-child { border-bottom: 0; }
.route-number { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; background: var(--sage); color: var(--forest); font-size: .73rem; font-weight: 850; }
.route-item.is-active { margin: 3px -7px; padding-inline: 17px; border: 0; border-radius: 14px; background: var(--forest-soft); }
.route-item strong, .route-item small { display: block; }
.route-item strong { margin-bottom: 2px; font-size: .94rem; }
.route-item small { color: var(--muted); font-size: .73rem; line-height: 1.45; }
.route-check { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: var(--forest); color: white; font-size: .75rem; font-weight: 900; }
.route-dot { justify-self: center; width: 7px; height: 7px; border: 2px solid #b9c5bd; border-radius: 50%; }
.board-foot { padding: 17px 4px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; font-weight: 700; }
.mini-arrow { color: var(--forest); font-size: 1.2rem; }

.proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-grid > div { padding: 28px 38px; border-right: 1px solid var(--line); text-align: center; }
.proof-grid > div:last-child { border-right: 0; }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { font-size: 1rem; }
.proof-grid span { color: var(--muted); font-size: .82rem; }

.split-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.split-intro h2 { margin-bottom: 0; }
.intro-copy { padding-top: 30px; color: var(--muted); font-size: 1.08rem; }
.intro-copy p:last-child { margin-bottom: 0; color: var(--ink); font-weight: 650; }

.tailored-section { padding: 0; }
.tailored-card { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 68px; padding: 48px; overflow: hidden; border-radius: var(--radius); background: var(--forest-deep); color: white; }
.tailored-copy .eyebrow { color: #bdd3c7; }
.tailored-copy h2 { margin-bottom: 18px; font-size: clamp(2rem, 3.4vw, 3.25rem); }
.tailored-copy h2 em { color: var(--yellow); font-style: normal; }
.tailored-copy > p:last-of-type { margin-bottom: 25px; color: #cbd9d1; font-size: .96rem; }
.tailored-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tailored-tags span { padding: 7px 11px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; background: rgba(255, 255, 255, .06); color: #eef5f1; font-size: .7rem; font-weight: 750; }
.tailored-preview { min-width: 0; }
.tailored-preview .mockup { display: block; width: 100%; height: auto; filter: drop-shadow(0 18px 38px rgba(0, 0, 0, .28)); }
.tailored-preview .mockup text { font-family: inherit; letter-spacing: .01em; }


.section-heading { max-width: 750px; margin-bottom: 58px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.step-card { position: relative; min-height: 270px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-small); background: white; }
.step-card::after { content: ""; position: absolute; right: -48px; bottom: -50px; width: 120px; height: 120px; border-radius: 50%; background: var(--sage); }
.step-index { position: absolute; top: 22px; right: 24px; color: #a0aca4; font-size: .76rem; font-weight: 850; letter-spacing: .1em; }
.step-symbol { display: grid; width: 51px; height: 51px; margin-bottom: 36px; place-items: center; border-radius: 14px; background: var(--forest); color: var(--yellow); font-size: 1.45rem; font-weight: 800; }
.step-card h3 { max-width: 180px; margin-bottom: 14px; }
.step-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: .9rem; }

.assistant-section { background: var(--forest-deep); color: white; }
.assistant-section .eyebrow { color: #bcd4c7; }
.assistant-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 95px; }
.assistant-copy > p:not(.eyebrow):not(.plain-note) { color: #c6d4cc; font-size: 1.05rem; }
.check-list { padding: 0; margin: 30px 0; list-style: none; }
.check-list li { position: relative; margin: 14px 0; padding-left: 33px; color: #eef5f0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 2px; display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--forest-deep); font-size: .7rem; font-weight: 900; }
.plain-note { padding: 16px 18px; border-left: 3px solid var(--yellow); background: rgba(255, 255, 255, .06); color: #c7d5cd; font-size: .88rem; }
.assistant-levels { display: grid; gap: 10px; margin: 28px 0; }
.assistant-levels > div { display: grid; grid-template-columns: 105px 1fr; gap: 15px; align-items: start; padding: 14px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px; background: rgba(255, 255, 255, .06); }
.assistant-levels > div > span { color: var(--yellow); font-size: .76rem; font-weight: 850; }
.assistant-levels p, .assistant-levels strong, .assistant-levels small { display: block; margin: 0; }
.assistant-levels strong { color: white; font-size: .85rem; }
.assistant-levels small { margin-top: 3px; color: #bfd0c7; font-size: .7rem; line-height: 1.45; }
.assistant-demo { overflow: hidden; border: 1px solid rgba(255, 255, 255, .11); border-radius: 25px; background: white; color: var(--ink); box-shadow: 0 30px 70px rgba(0, 0, 0, .23); }
.demo-head { display: flex; align-items: center; justify-content: space-between; padding: 23px 27px 16px; }
.demo-head strong, .demo-head span { display: block; }
.demo-kicker { margin-bottom: 3px; color: var(--forest); font-size: .66rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.demo-step { color: var(--muted); font-size: .73rem; font-weight: 750; }
.demo-progress { height: 4px; background: var(--sage); }
.demo-progress span { display: block; width: 40%; height: 100%; background: var(--yellow); }
.demo-body { padding: 32px 30px 27px; }
.demo-question { font-size: 1.15rem; font-weight: 850; }
.demo-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.demo-options span { display: flex; align-items: center; gap: 10px; min-height: 51px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 11px; color: var(--muted); font-size: .78rem; font-weight: 700; }
.demo-options i { width: 14px; height: 14px; border: 1px solid #aebbb2; border-radius: 50%; }
.demo-options .is-selected { border-color: var(--forest); background: var(--sage); color: var(--ink); }
.demo-options .is-selected i { border: 4px solid var(--forest); }
.demo-next { display: flex; justify-content: center; gap: 8px; margin-top: 19px; padding: 12px; border-radius: 10px; background: var(--forest); color: white; font-size: .8rem; font-weight: 800; }
.mail-preview { display: flex; align-items: center; gap: 14px; padding: 18px 27px; border-top: 1px solid var(--line); background: var(--sage); }
.mail-icon { display: grid; width: 37px; height: 37px; place-items: center; border-radius: 10px; background: white; color: var(--forest); }
.mail-preview small, .mail-preview strong { display: block; }
.mail-preview small { color: var(--muted); font-size: .66rem; }
.mail-preview strong { font-size: .78rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.price-card { position: relative; padding: 35px 30px 30px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow-small); }
.price-card.featured { border: 2px solid var(--forest); }
.price-card.is-selected { box-shadow: 0 0 0 4px rgba(233, 189, 90, .55), var(--shadow-small); }
.package-role { position: absolute; top: 0; left: 27px; padding: 7px 13px; border-radius: 0 0 9px 9px; background: var(--yellow); color: var(--forest-deep); font-size: .68rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.price-card .package-name { padding-top: 16px; }
.package-scope { margin: -2px 0 18px; color: var(--muted); font-size: .8rem; font-style: italic; line-height: 1.55; }
.package-name { margin-bottom: 9px; color: var(--forest); font-size: 1.05rem; font-weight: 850;
  /* p -> h3 atalakitas utan a korabbi megjelenes megorzese */
  line-height: 1.65;
  letter-spacing: normal;
}
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.price strong { font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.06em; }
.price span { color: var(--muted); font-size: .82rem; font-weight: 750; }
.package-intro { min-height: 78px; color: var(--muted); font-size: .88rem; }
.feature-list { padding: 25px 0 20px; margin: 25px 0 0; border-top: 1px solid var(--line); list-style: none; }
.feature-list li { position: relative; margin: 11px 0; padding-left: 26px; color: #3f4c44; font-size: .82rem; line-height: 1.5; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--forest); font-weight: 900; }
.renewal { padding: 17px; border-radius: 12px; background: var(--sage); }
.renewal span, .renewal strong, .renewal small { display: block; }
.renewal span { color: var(--muted); font-size: .7rem; font-weight: 750; text-transform: uppercase; }
.renewal strong { margin: 2px 0 4px; color: var(--forest); }
.renewal small { color: var(--muted); font-size: .7rem; line-height: 1.45; }

.addon-section { padding-block: 72px; background: white; }
.addon-card { display: grid; grid-template-columns: 70px 1fr auto; align-items: center; gap: 34px; padding: 45px; border-radius: var(--radius); background: var(--forest); color: white; }
.addon-card .eyebrow { color: #c8ded2; }
.addon-card h2 { margin-bottom: 14px; font-size: clamp(1.9rem, 3vw, 2.7rem); }
.addon-card p:last-child { margin-bottom: 0; color: #d3e0d9; font-size: .93rem; }
.addon-badge { display: grid; width: 67px; height: 67px; place-items: center; border-radius: 18px; background: var(--yellow); color: var(--forest-deep); font-size: 2rem; font-weight: 900; }
.addon-action { min-width: 220px; padding-left: 30px; border-left: 1px solid rgba(255, 255, 255, .2); }
.addon-action div { margin-bottom: 14px; }
.addon-action span, .addon-action strong { display: block; }
.addon-action span { color: #bcd1c6; font-size: .72rem; text-transform: uppercase; }
.addon-action strong { font-size: 1.35rem; }

.hosting-section { padding-top: 0; }
.hosting-card { display: grid; grid-template-columns: 70px 1fr .75fr; align-items: center; gap: 35px; padding: 45px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.hosting-icon { display: grid; width: 67px; height: 67px; place-items: center; border-radius: 18px; background: var(--yellow-soft); color: var(--forest); font-size: 1.7rem; }
.hosting-card h2 { margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.hosting-card p:last-child { margin: 0; color: var(--muted); font-size: .9rem; }
.hosting-points { display: grid; gap: 10px; padding-left: 28px; border-left: 1px solid var(--line); }
.hosting-points span { display: flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 750; }
.hosting-points i { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: var(--forest-soft); color: var(--forest); font-size: .65rem; font-style: normal; }

.faq-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 95px; align-items: start; }
.faq-grid > div:first-child > p:last-child { color: var(--muted); }
.faq-list { border-top: 1px solid #cbd8d0; }
.faq-list details { border-bottom: 1px solid #cbd8d0; }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 24px 0; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; flex: 0 0 31px; width: 31px; height: 31px; place-items: center; border: 1px solid #b5c4bb; border-radius: 50%; color: var(--forest); font-size: 1.2rem; transition: transform .2s, background .2s; }
.faq-list details[open] summary span { background: var(--forest); color: white; transform: rotate(45deg); }
.faq-list details p { max-width: 690px; padding: 0 50px 24px 0; margin: 0; color: var(--muted); font-size: .92rem; }

.form-section { background: white; }
.form-section[hidden] { display: none; }
.intake-shell { scroll-margin-top: 76px; }
.form-intro { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.form-intro h2 { margin-bottom: 12px; }
.form-intro > div:first-child > p:last-child { margin: 0; color: var(--muted); }
.selected-package-summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 15px 24px; border-bottom: 1px solid #b9cfc4; background: var(--forest-soft); color: var(--forest-deep); }
.selected-package-summary > div { display: flex; flex: 0 0 auto; flex-wrap: wrap; align-items: baseline; gap: 3px 10px; }
.selected-package-summary span { flex-basis: 100%; font-size: .61rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.selected-package-summary strong { font-size: .9rem; }
.selected-package-summary b { color: var(--forest); font-size: .84rem; }
.selected-package-summary p { max-width: 500px; margin: 0; color: #53675d; font-size: .72rem; line-height: 1.45; }
.payment-notice { display: flex; max-width: 390px; align-items: flex-start; gap: 12px; padding: 14px 16px; border: 1px solid #e4d18e; border-radius: 12px; background: #fffae9; }
.payment-notice > span { display: grid; flex: 0 0 25px; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: var(--yellow); font-size: .75rem; font-weight: 900; }
.payment-notice p, .payment-notice strong { display: block; }
.payment-notice p { margin: 0; color: #64572f; font-size: .74rem; line-height: 1.45; }
.intake-shell { max-width: 930px; margin-inline: auto; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); box-shadow: var(--shadow-small); }
.form-progress { display: flex; align-items: center; gap: 24px; padding: 17px 24px; border-bottom: 1px solid var(--line); background: var(--forest-deep); color: white; }
.form-progress[hidden] { display: none; }
.form-progress-copy { display: grid; flex: 0 0 auto; gap: 2px; }
.form-progress-copy > span { color: var(--yellow); font-size: .62rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.form-progress-copy strong { font-size: .8rem; }
.form-progress-copy strong b { color: white; }
.form-progress-copy strong em { color: #c8d8d0; font-style: normal; font-weight: 700; }
.form-progress > i { flex: 1; height: 6px; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, .2); }
.form-progress > i > b { display: block; width: 11.11%; height: 100%; border-radius: inherit; background: var(--yellow); transition: width .25s; }
.intake-form { min-height: 560px; padding: 45px 58px; background: var(--cream); }
.form-step { min-width: 0; padding: 0; margin: 0; border: 0; }
.js .form-step:not(.is-active) { display: none; }
.form-step legend { display: block; width: 100%; margin-bottom: 8px; font-size: 1.75rem; font-weight: 850; letter-spacing: -.035em; line-height: 1.2; }
.field-hint { margin-bottom: 30px; color: var(--muted); font-size: .86rem; }
.form-grid { display: grid; gap: 18px; }
.two-cols { grid-template-columns: 1fr 1fr; }
.field { display: block; margin-bottom: 20px; }
.field > span, .question-label { display: block; margin-bottom: 8px; color: #36433c; font-size: .78rem; font-weight: 800; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #c9d3cd;
  border-radius: 10px;
  background: white;
  color: var(--ink);
  transition: border .15s, box-shadow .15s;
}
.field textarea { min-height: 105px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--forest); outline: 0; box-shadow: 0 0 0 3px rgba(23, 76, 60, .12); }
.field input::placeholder, .field textarea::placeholder { color: #98a29c; }
.field small { display: block; margin-top: 7px; color: var(--muted); font-size: .7rem; }
.field input:user-invalid, .field textarea:user-invalid, .field select:user-invalid { border-color: var(--danger); }
.package-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.package-option { position: relative; cursor: pointer; }
.package-option input { position: absolute; opacity: 0; }
.package-option > span { display: grid; min-height: 94px; align-content: center; gap: 5px; padding: 13px 15px; border: 1px solid #cbd5cf; border-radius: 11px; background: white; transition: border .15s, background .15s, box-shadow .15s; }
.package-option strong, .package-option small { display: block; }
.package-option strong { font-size: .77rem; }
.package-option small { color: var(--muted); font-size: .66rem; line-height: 1.35; }
.package-option input:checked + span { border-color: var(--forest); background: var(--forest-soft); box-shadow: inset 4px 0 0 var(--forest); }
.package-option input:focus-visible + span { outline: 3px solid var(--yellow); outline-offset: 3px; }
.package-assistant-note { padding: 14px 16px; margin-bottom: 26px; border-radius: 11px; background: var(--forest-soft); color: #375248; font-size: .76rem; line-height: 1.5; }
.package-assistant-note strong { color: var(--forest-deep); }
.package-brief-block { padding: 20px; margin: 4px 0 25px; border: 1px solid #cbd8d0; border-left: 4px solid var(--forest); border-radius: 12px; background: white; }
.package-brief-block[hidden] { display: none; }
.brief-head { display: grid; gap: 3px; padding-bottom: 14px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.brief-head span { color: var(--forest); font-size: .67rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.brief-head strong { font-size: .9rem; }
.package-questionnaire { padding: 22px; margin-bottom: 25px; border: 1px solid #cbd8d0; border-radius: 14px; background: white; }
.package-questionnaire[hidden] { display: none; }
.questionnaire-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 16px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.questionnaire-head span { color: var(--forest); font-size: .72rem; font-weight: 850; text-transform: uppercase; }
.questionnaire-head strong { font-size: .85rem; text-align: right; }
.question-block { margin: 4px 0 22px; }
.inline-options { display: flex; flex-wrap: wrap; gap: 9px; }
.inline-options label { cursor: pointer; }
.inline-options input { position: absolute; opacity: 0; }
.inline-options label span { display: inline-flex; min-width: 92px; justify-content: center; padding: 9px 16px; border: 1px solid #c9d3cd; border-radius: 9px; background: white; color: var(--muted); font-size: .78rem; font-weight: 750; }
.inline-options input:checked + span { border-color: var(--forest); background: var(--forest-soft); color: var(--forest-deep); }
.inline-options input:focus-visible + span { outline: 3px solid var(--yellow); outline-offset: 3px; }
.stacked-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stacked-options label { position: relative; cursor: pointer; }
.stacked-options input { position: absolute; opacity: 0; }
.stacked-options label > span { display: block; min-height: 80px; padding: 14px 15px; border: 1px solid #c9d3cd; border-radius: 10px; background: white; }
.stacked-options strong, .stacked-options small { display: block; }
.stacked-options strong { margin-bottom: 3px; font-size: .78rem; }
.stacked-options small { color: var(--muted); font-size: .67rem; line-height: 1.4; }
.stacked-options input:checked + span { border-color: var(--forest); background: var(--forest-soft); box-shadow: inset 4px 0 0 var(--forest); }
.stacked-options input:focus-visible + span { outline: 3px solid var(--yellow); outline-offset: 3px; }
.conditional-panel { padding: 17px; margin: -8px 0 22px; border-radius: 11px; background: var(--sage); }
.conditional-panel .field:last-child { margin-bottom: 0; }
.upload-field input { padding: 9px; border-style: dashed; }
.upload-field input::file-selector-button { margin-right: 12px; padding: 8px 11px; border: 0; border-radius: 7px; background: var(--forest-soft); color: var(--forest-deep); font-weight: 750; cursor: pointer; }
.consent-field { display: grid; grid-template-columns: 19px 1fr; gap: 11px; align-items: start; margin: 25px 0; color: var(--muted); font-size: .74rem; cursor: pointer; }
.consent-field input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--forest); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 25px; border-top: 1px solid var(--line); }
.mobile-progress { display: none; }
.form-result { max-width: 610px; padding: 55px 20px; margin: auto; text-align: center; }
.result-icon { display: grid; width: 68px; height: 68px; margin: 0 auto 24px; place-items: center; border-radius: 50%; background: var(--forest); color: white; font-size: 1.8rem; font-weight: 900; }
.form-result .eyebrow { justify-content: center; }
.form-result h3 { font-size: 1.8rem; }
.form-result > p:not(.eyebrow) { color: var(--muted); }
.result-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 30px 0; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--line); text-align: left; }
.result-summary > div { padding: 14px; background: white; }
.result-summary dt { color: var(--muted); font-size: .68rem; font-weight: 750; text-transform: uppercase; }
.result-summary dd { margin: 3px 0 0; font-size: .84rem; font-weight: 800; word-break: break-word; }
.result-actions { display: flex; justify-content: center; gap: 10px; }

.price-info-section { border-top: 1px solid var(--line); background: var(--sage); }
.price-info-heading { max-width: 870px; }
.bottom-price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.bottom-price-card { display: flex; min-height: 225px; flex-direction: column; padding: 25px 23px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow-small); }
.bottom-price-card p { margin-bottom: 15px; color: var(--forest); font-size: .82rem; font-weight: 850; }
.bottom-price-card > strong { margin-bottom: 7px; font-size: clamp(1.65rem, 2.5vw, 2.3rem); letter-spacing: -.055em; line-height: 1; }
.bottom-price-card small { color: var(--muted); font-size: .7rem; line-height: 1.45; }
.bottom-price-card > span { display: block; padding-top: 14px; margin-top: auto; border-top: 1px solid var(--line); color: var(--muted); font-size: .7rem; line-height: 1.45; }
.bottom-price-card > span b { color: var(--forest-deep); }
.bottom-price-service { border-color: #d6b14c; background: var(--yellow-soft); }
.bottom-price-service p, .bottom-price-service > strong { color: var(--forest-deep); }
.gross-note { margin: 18px 0 0; color: var(--muted); font-size: .75rem; font-weight: 720; text-align: center; }
.evolution-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 20px; margin-top: 64px; }
.evolution-card, .ai-roadmap-card { padding: 38px; border-radius: var(--radius); }
.evolution-card { border: 1px solid var(--line); background: white; }
.evolution-card h3, .ai-roadmap-card h3 { margin-bottom: 18px; font-size: clamp(1.65rem, 2.5vw, 2.35rem); }
.evolution-card > p:not(.eyebrow):not(.individual-note) { color: var(--muted); }
.important-list { padding: 0; margin: 25px 0; list-style: none; }
.important-list li { position: relative; padding-left: 27px; }
.important-list li { margin: 12px 0; color: #405047; font-size: .82rem; }
.important-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; font-size: .62rem; font-weight: 900; }
.important-list li::before { background: var(--forest-soft); color: var(--forest); }
.individual-note { padding: 15px 17px; margin: 26px 0 0; border-left: 4px solid var(--yellow); border-radius: 0 10px 10px 0; background: var(--cream); color: var(--muted); font-size: .75rem; line-height: 1.55; }
.individual-note strong { color: var(--forest-deep); }
.ai-roadmap-card { background: var(--forest-deep); color: white; box-shadow: var(--shadow); }
.ai-roadmap-card .eyebrow { color: #bdd3c7; }
.ai-roadmap-lead { margin: 24px 0 0; color: #e8f0eb; font-size: .84rem; line-height: 1.6; }
.ai-roadmap-more { padding-top: 19px; margin: 19px 0 0; border-top: 1px solid rgba(255, 255, 255, .15); font-size: .78rem; }
.ai-roadmap-more a { color: var(--yellow); font-weight: 700; text-decoration: none; }
.ai-roadmap-more a:hover, .ai-roadmap-more a:focus-visible { text-decoration: underline; }

.closing-section { padding: 105px 0; background: var(--forest-deep); color: white; text-align: center; }
.closing-inner { max-width: 810px; }
.closing-inner .eyebrow { justify-content: center; }
.closing-inner h2 { margin-bottom: 18px; }
.closing-inner > p:not(.eyebrow) { max-width: 650px; margin: 0 auto 30px; color: #c6d5cd; }
.site-footer { padding: 35px 0; border-top: 1px solid #e4e7e4; background: white; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 30px; }
.footer-inner p { margin: 0; color: var(--muted); font-size: .72rem; }
.footer-brand { font-size: 1rem; }
.footer-brand .brand-mark { width: 26px; height: 26px; transform: scale(.8); }

@media (max-width: 1000px) {
  .main-nav { gap: 18px; }
  .hero-grid { gap: 38px; }
  .hero-board { transform: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .assistant-grid { gap: 50px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card:last-child { grid-column: 1 / -1; }
  .package-intro { min-height: auto; }
  .addon-card { grid-template-columns: 62px 1fr; }
  .addon-action { grid-column: 2; display: flex; align-items: center; gap: 25px; padding: 0; border: 0; }
  .addon-action div { margin: 0; }
  .faq-grid { gap: 55px; }
  .hosting-card { grid-template-columns: 60px 1fr; }
  .hosting-points { grid-column: 2; grid-template-columns: 1fr 1fr; padding: 0; border: 0; }
  .intake-form { padding: 40px 34px; }
  .bottom-price-grid { grid-template-columns: 1fr 1fr; }
  .evolution-grid { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  body { font-size: 16px; }
  .section { padding: 82px 0; }
  .main-nav { display: none; }
  .hero { padding: 75px 0 80px; }
  .hero-grid, .split-intro, .assistant-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .tailored-card { grid-template-columns: 1fr; gap: 38px; }
  .tailored-preview { order: 2; }
  .hero-copy { max-width: 680px; }
  .hero-board { max-width: 600px; }
  .proof-grid { grid-template-columns: 1fr; padding-block: 8px; }
  .proof-grid > div { padding: 17px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid > div:last-child { border-bottom: 0; }
  .intro-copy { padding-top: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .price-card:last-child { grid-column: auto; }
  .addon-card { grid-template-columns: 1fr; padding: 36px; }
  .addon-action { grid-column: auto; display: block; }
  .addon-action div { margin-bottom: 14px; }
  .hosting-card { grid-template-columns: 1fr; }
  .hosting-points { grid-column: auto; }
  .form-intro { display: block; }
  .payment-notice { margin-top: 22px; }
  .intake-shell { display: block; min-height: auto; }
  .form-progress { display: none; }
  .selected-package-summary { align-items: flex-start; flex-direction: column; gap: 7px; padding: 14px 19px; }
  .selected-package-summary p { font-size: .69rem; }
  .mobile-progress { display: flex; align-items: center; gap: 14px; margin: -40px -34px 27px; padding: 11px 34px; border-bottom: 1px solid var(--line); background: rgba(251, 250, 245, .96); color: var(--muted); }
  .mobile-progress > span { display: grid; flex: 0 0 auto; gap: 1px; }
  .mobile-progress small { color: var(--forest); font-size: .58rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
  .mobile-progress strong { font-size: .7rem; }
  .mobile-progress i { flex: 1; height: 5px; overflow: hidden; border-radius: 999px; background: var(--line); }
  .mobile-progress > i > b { display: block; width: 11.11%; height: 100%; border-radius: inherit; background: var(--forest); transition: width .25s; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; gap: 10px; text-align: center; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 67px; }
  .header-inner > .button { min-height: 44px; padding: 9px 13px; font-size: .78rem; }
  .brand { font-size: 1.05rem; }
  .brand-mark { width: 28px; height: 28px; transform: scale(.9); }
  .header-phone { padding: 12px 0; }
  .header-phone small { display: none; }
  .header-phone strong { font-size: .82rem; }
  .hero { padding: 40px 0 68px; }
  .hero-grid { gap: 34px; }
  .tailored-section { padding-bottom: 0; }
  .tailored-card { padding: 26px 22px; }
  .tailored-preview .mockup-phone { display: none; }
  .tailored-preview .mockup { filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .25)); }
  .hero .eyebrow { margin-bottom: 12px; font-size: .68rem; }
  .hero h1 { margin-bottom: 17px; font-size: clamp(2.05rem, 9vw, 2.75rem); }
  .hero h1 em { margin-top: 5px; }
  .hero-lead { margin-bottom: 0; font-size: 1rem; line-height: 1.48; }
  .hero-highlight { margin: 16px 0 19px; padding: 11px 13px; font-size: .9rem; line-height: 1.4; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-actions .button-ghost { display: none; }
  .hero-points { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; margin-top: 18px; font-size: .72rem; line-height: 1.35; }
  .hero-points li:last-child { grid-column: 1 / -1; }
  .gift-note { align-items: flex-start; border-radius: 14px; line-height: 1.35; }
  .hero-board { padding: 15px; border-radius: 19px; }
  .board-status { display: none; }
  .route-item { grid-template-columns: 34px 1fr 20px; gap: 9px; padding: 11px 6px; }
  .route-item.is-active { padding-inline: 10px; }
  .route-number { width: 32px; height: 32px; }
  .route-item small { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; padding: 24px 22px; }
  .step-symbol { margin-bottom: 25px; }
  .demo-options { grid-template-columns: 1fr; }
  .demo-body { padding: 26px 19px 22px; }
  .demo-head, .mail-preview { padding-inline: 19px; }
  .price-card { padding: 32px 23px 25px; }
  .addon-card, .hosting-card { padding: 28px 23px; }
  .hosting-points { grid-template-columns: 1fr; }
  .faq-list summary { padding-block: 20px; font-size: .9rem; }
  .faq-list details p { padding-right: 0; }
  .intake-form { min-height: 0; padding: 28px 19px; }
  .mobile-progress { margin: -28px -19px 24px; padding-inline: 19px; }
  .form-step legend { font-size: 1.5rem; }
  .package-options, .two-cols, .stacked-options { grid-template-columns: 1fr; }
  .package-option > span { min-height: 59px; }
  .questionnaire-head { display: grid; gap: 4px; }
  .questionnaire-head strong { text-align: left; }
  .package-questionnaire { padding: 17px 14px; }
  .package-brief-block { padding: 17px 14px; }
  .form-actions { position: sticky; z-index: 7; bottom: 0; align-items: stretch; flex-direction: column-reverse; margin: 0 -19px -28px; padding: 14px 19px calc(14px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(251, 250, 245, .97); backdrop-filter: blur(12px); }
  .form-actions .button { width: 100%; }
  .form-actions > span { display: none; }
  .result-summary { grid-template-columns: 1fr; }
  .result-actions { flex-direction: column; }
  .result-actions .button { width: 100%; }
  .bottom-price-grid { grid-template-columns: 1fr; }
  .bottom-price-card { min-height: 0; padding: 22px 20px; }
  .bottom-price-card > span { padding-top: 12px; margin-top: 18px; }
  .evolution-grid { margin-top: 44px; }
  .evolution-card, .ai-roadmap-card { padding: 27px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media print {
  .site-header, .hero-actions, .closing-section, .site-footer, .form-section { display: none; }
  body { background: white; color: black; }
  .section { padding: 30px 0; }
}

/* 2026-08: egyszerűsített értékesítési útvonal */
.header-inner { justify-content: flex-start; }
.hero-focus { position: relative; z-index: 1; }
.hero-focus .hero-copy { max-width: 980px; }
.hero-focus h1 { max-width: 940px; font-size: clamp(2.8rem, 5.3vw, 4.8rem); }
.hero-focus h1 em { display: inline; }
.hero-explainer { max-width: 730px; margin: -4px 0 16px; color: var(--muted); font-size: 1rem; }
.hero-offer { max-width: 730px; margin-bottom: 8px; color: var(--forest-deep); font-weight: 720; }
.hero-price { max-width: 760px; margin: 0 0 28px; color: var(--ink); font-size: 1.02rem; }
.hero-price strong { color: var(--forest); font-size: 1.14em; }
.proof-grid-four { grid-template-columns: repeat(4, 1fr); }

.market-section { background: white; }
.market-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 90px; }
.market-copy > p:not(.eyebrow) { color: var(--muted); }
.market-copy .market-highlight { color: var(--forest-deep); font-size: 1.08rem; font-weight: 850; line-height: 1.5; }
.market-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 250px)); gap: 10px; margin: 25px 0 0; }
.market-facts div { padding: 15px 17px; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); }
.market-facts strong, .market-facts span { display: block; }
.market-facts strong { color: var(--forest); font-size: 1.25rem; letter-spacing: -.025em; }
.market-facts span { margin-top: 3px; color: var(--muted); font-size: .7rem; line-height: 1.4; }
.source-note { margin: 26px 0 0; font-size: .72rem; line-height: 1.55; }
.source-note a { color: var(--forest); font-weight: 800; text-underline-offset: 3px; }
.market-chart { position: relative; min-height: 470px; padding: 27px 27px 20px 78px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, #fff 0%, #f3f7f3 100%); box-shadow: var(--shadow-small); }
.chart-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; margin: 0 0 18px -48px; }
.chart-heading span { color: var(--forest-deep); font-size: .82rem; font-weight: 850; }
.chart-heading strong { color: var(--muted); font-size: .64rem; }
.chart-scale { position: absolute; inset: 77px auto 96px 16px; display: flex; width: 48px; flex-direction: column; justify-content: space-between; color: #77827b; font-size: .58rem; font-weight: 750; text-align: right; }
.market-chart::before { content: ""; position: absolute; left: 73px; right: 27px; top: 85px; bottom: 104px; border-top: 1px dashed #d3ddd7; border-bottom: 1px solid #b8c7be; }
.chart-scale i { height: 1px; }
.chart-bars { position: relative; z-index: 1; display: grid; height: 300px; grid-template-columns: repeat(7, minmax(34px, 1fr)); align-items: end; gap: 9px; }
.chart-column { display: grid; height: 100%; grid-template-rows: 30px 1fr 30px; align-items: end; justify-items: center; }
.chart-column i { display: block; width: min(100%, 58px); height: var(--bar-height); min-height: 22px; border-radius: 9px 9px 3px 3px; background: linear-gradient(180deg, #2d7a61, var(--forest)); box-shadow: 0 7px 16px rgba(23, 76, 60, .12); }
.chart-column:first-child i { background: var(--yellow); }
.chart-column-total i { background: linear-gradient(180deg, #d9ad45, #b98417); }
.chart-column-latest i { background: linear-gradient(180deg, #1f7458, var(--forest-deep)); }
.chart-value { color: var(--forest-deep); font-size: .64rem; font-weight: 900; white-space: nowrap; }
.chart-column strong { align-self: center; font-size: .65rem; }
.chart-method { margin: 10px 0 0 31px; /* a role="img" elemen kivulre kerult bekezdes igazitasa */ color: var(--muted); font-size: .58rem; line-height: 1.45; }
.chart-method strong { color: var(--forest-deep); }
.market-context { max-width: 920px; margin-top: 36px; color: var(--forest-deep); font-size: 1rem; font-weight: 600; line-height: 1.65; text-align: center; }

.funnel-section { overflow: hidden; background: var(--cream); }
.funnel-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 85px; }
.funnel-copy > p:not(.eyebrow):not(.funnel-partnership) { color: var(--muted); }
.funnel-partnership { padding: 18px 20px; margin: 28px 0 0; border-left: 4px solid var(--yellow); border-radius: 0 12px 12px 0; background: white; color: var(--muted); font-size: .92rem; box-shadow: var(--shadow-small); }
.funnel-partnership strong { color: var(--forest-deep); }
.funnel-visual { display: flex; min-width: 0; align-items: center; flex-direction: column; padding: 30px 28px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.funnel-sources { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; width: 100%; }
.funnel-sources span, .funnel-actions span { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 800; line-height: 1.25; text-align: center; }
.funnel-sources span { min-height: 34px; padding: 7px 12px; border: 1px solid #c8d7cf; background: var(--sage); color: var(--forest-deep); font-size: .66rem; }
.funnel-down { display: grid; width: 32px; height: 32px; place-items: center; margin: 7px 0; border-radius: 50%; background: var(--yellow-soft); color: var(--forest); font-size: 1.08rem; font-weight: 900; }
.funnel-stage { display: grid; place-items: center; padding: 20px 58px 22px; color: white; line-height: 1.35; text-align: center; clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%); }
.funnel-stage small, .funnel-stage strong, .funnel-stage span { display: block; }
.funnel-stage small { margin-bottom: 3px; color: #c5d9ce; font-size: .62rem; font-weight: 760; letter-spacing: .04em; text-transform: uppercase; }
.funnel-stage strong { font-size: 1.1rem; letter-spacing: -.02em; }
.funnel-stage span { margin-top: 5px; color: #dce9e2; font-size: .66rem; font-weight: 680; }
.funnel-stage-site { width: 92%; background: var(--forest-deep); }
.funnel-stage-offer { width: 72%; padding-block: 17px 20px; background: var(--forest); }
.funnel-stage-offer small { color: #d3e4da; }
.funnel-actions { display: grid; width: 82%; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 9px; }
.funnel-actions span { min-height: 32px; padding: 6px 10px; background: var(--yellow-soft); color: #5d4b1c; font-size: .61rem; }
.funnel-result { display: grid; place-items: center; width: 58%; min-height: 74px; margin-top: 10px; padding: 13px 20px; border-radius: 16px; background: var(--yellow); color: var(--forest-deep); text-align: center; box-shadow: 0 12px 24px rgba(144, 103, 14, .15); }
.funnel-result small, .funnel-result strong { display: block; }
.funnel-result small { font-size: .58rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.funnel-result strong { font-size: .82rem; line-height: 1.3; }
.funnel-note { display: flex; max-width: 960px; align-items: flex-start; gap: 14px; padding: 19px 22px; margin: 42px auto 0; border: 1px solid #c8d7cf; border-radius: 15px; background: var(--sage); }
.funnel-note > span { display: grid; flex: 0 0 28px; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--forest); color: var(--yellow); font-size: .72rem; font-weight: 900; }
.funnel-note p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.55; }
.funnel-note strong { color: var(--forest-deep); }

.assistant-grid-reworked { grid-template-columns: 1.15fr .85fr; }
.function-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0; margin: 30px 0 0; list-style: none; }
.function-list li { display: grid; grid-template-columns: 34px 1fr; gap: 11px; padding: 15px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px; background: rgba(255, 255, 255, .055); }
.function-list li > span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 9px; background: var(--yellow); color: var(--forest-deep); font-size: .65rem; font-weight: 900; }
.function-list p, .function-list strong, .function-list small { display: block; margin: 0; }
.function-list strong { color: white; font-size: .82rem; }
.function-list small { margin-top: 3px; color: #bcd0c5; font-size: .67rem; line-height: 1.4; }

.package-meta { margin: -8px 0 15px; color: var(--forest); font-size: .68rem; font-weight: 820; letter-spacing: .02em; }
.feature-list strong { color: var(--forest-deep); }
.pricing-note { max-width: 780px; margin: 30px auto 0; padding: 14px 18px; border-radius: 12px; background: var(--yellow-soft); color: #5d512d; font-size: .78rem; font-weight: 720; text-align: center; }
.hosting-card-reworked { background: linear-gradient(135deg, white, #f0f6f1); }
.order-review { padding: 22px; margin: 28px 0 20px; border: 1px solid #b9cbc0; border-radius: 14px; background: white; box-shadow: inset 5px 0 0 var(--forest); }
.order-review-label { color: var(--forest); font-size: .67rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.order-review h3 { margin: 4px 0 18px; }
.order-review dl { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; padding: 1px; margin: 0 0 18px; overflow: hidden; border-radius: 10px; background: var(--line); }
.order-review dl > div { padding: 12px; background: var(--cream); }
.order-review dt { color: var(--muted); font-size: .63rem; font-weight: 720; }
.order-review dd { margin: 2px 0 0; color: var(--forest-deep); font-size: .77rem; font-weight: 850; }
.order-review > p { margin: 0; color: var(--muted); font-size: .74rem; line-height: 1.5; }
.order-review > p strong { color: var(--forest-deep); }
.trap-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent-field a { color: var(--forest); font-weight: 800; text-underline-offset: 3px; }
.form-error { padding: 13px 15px; margin: 18px 0 0; border: 1px solid #d89b96; border-radius: 10px; background: #fff0ef; color: #7d2d28; font-size: .78rem; font-weight: 700; }
.button:disabled { opacity: .62; cursor: wait; transform: none; box-shadow: none; }
.footer-contact, .footer-legal { display: grid; gap: 3px; }
.footer-contact a, .footer-legal a, .legal-footer a { color: var(--forest); font-weight: 760; text-underline-offset: 3px; }
.footer-cookie-button { width: max-content; padding: 0; border: 0; background: transparent; color: var(--forest); font: inherit; font-weight: 760; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }

.cookie-banner { position: fixed; z-index: 1000; right: 22px; bottom: 22px; left: 22px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; max-width: 1040px; padding: 22px 24px; margin: 0 auto; border: 1px solid #b8cbc0; border-radius: 18px; background: #fffef9; box-shadow: 0 18px 55px rgba(13, 48, 38, .2); }
.cookie-banner[hidden] { display: none; }
.cookie-banner-copy strong { display: block; margin-bottom: 5px; color: var(--forest-deep); font-size: 1rem; }
.cookie-banner-copy p { max-width: 700px; margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.cookie-banner-copy a { color: var(--forest); font-weight: 800; text-underline-offset: 3px; }
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; min-width: 390px; }
.cookie-button { min-height: 48px; padding: 11px 15px; border: 1px solid var(--forest); border-radius: 10px; font: inherit; font-size: .75rem; font-weight: 820; cursor: pointer; }
.cookie-button-essential { background: white; color: var(--forest); }
.cookie-button-accept { background: var(--forest); color: white; }
.cookie-button:focus-visible, .footer-cookie-button:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.cookie-data { margin: 20px 0; }

.legal-page { background: var(--cream); }
.legal-main { padding: 70px 0 100px; }
.legal-document { max-width: 900px; }
.legal-document > h1 { max-width: 760px; margin-bottom: 12px; font-size: clamp(2.45rem, 6vw, 4.8rem); }
.legal-updated { margin-bottom: 38px; color: var(--muted); font-size: .82rem; font-weight: 750; }
.legal-document > p:not(.eyebrow):not(.legal-updated):not(.legal-back) { max-width: 780px; color: var(--muted); font-size: 1.02rem; }
.legal-document section { padding: 38px 0; border-top: 1px solid var(--line); }
.legal-document section:first-of-type { margin-top: 48px; }
.legal-document section h2 { margin-bottom: 20px; font-size: clamp(1.55rem, 3vw, 2.35rem); }
.legal-document section h3 { margin: 28px 0 12px; font-size: 1.18rem; }
.legal-document section p, .legal-document section li { color: #4f5d55; font-size: .92rem; }
.legal-document section li { margin: 8px 0; }
.legal-document section a { color: var(--forest); font-weight: 760; text-underline-offset: 3px; }
.legal-data { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; max-width: 760px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--line); }
.legal-data > div { padding: 15px 17px; background: white; }
.legal-data dt { color: var(--muted); font-size: .68rem; font-weight: 750; text-transform: uppercase; }
.legal-data dd { margin: 3px 0 0; font-size: .86rem; font-weight: 760; }
.legal-back { margin-top: 38px; }
.legal-footer { grid-template-columns: 1fr auto; }

@media (max-width: 1000px) {
  .market-grid, .funnel-grid { gap: 50px; }
  .assistant-grid-reworked { grid-template-columns: 1fr; }
  .assistant-grid-reworked .assistant-demo { max-width: 620px; }
}

@media (max-width: 800px) {
  .market-grid, .funnel-grid { grid-template-columns: 1fr; gap: 42px; }
  .funnel-copy { max-width: 720px; }
  .funnel-visual { width: min(100%, 650px); margin-inline: auto; }
  .proof-grid-four { grid-template-columns: 1fr 1fr; padding-block: 0; }
  .proof-grid-four > div { border-right: 1px solid var(--line); }
  .proof-grid-four > div:nth-child(2n) { border-right: 0; }
  .proof-grid-four > div:nth-last-child(-n + 2) { border-bottom: 0; }
  .cookie-banner { grid-template-columns: 1fr; gap: 17px; }
  .cookie-actions { min-width: 0; }
}

@media (max-width: 580px) {
  .site-header { position: relative; }
  .hero { padding: 32px 0 44px; }
  .hero-focus h1 { margin-bottom: 15px; font-size: clamp(2rem, 10vw, 2.62rem); }
  .hero-lead { font-size: .98rem; }
  .hero-explainer { margin: 9px 0 12px; font-size: .83rem; line-height: 1.48; }
  .hero-offer { margin-bottom: 8px; font-size: .82rem; }
  .hero-price { margin-bottom: 20px; font-size: .86rem; line-height: 1.45; }
  .hero-actions .button { min-height: 58px; }
  .proof-grid-four { grid-template-columns: 1fr; }
  .proof-grid-four > div { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .proof-grid-four > div:last-child { border-bottom: 0 !important; }
  .market-chart { min-height: 415px; padding: 24px 11px 17px 50px; }
  .market-chart::before { left: 48px; right: 11px; top: 90px; bottom: 112px; }
  .chart-heading { display: block; margin: 0 0 15px -34px; }
  .chart-heading span, .chart-heading strong { display: block; }
  .chart-heading strong { margin-top: 2px; }
  .chart-scale { left: 5px; top: 82px; bottom: 104px; width: 34px; }
  .chart-bars { height: 245px; grid-template-columns: repeat(7, minmax(28px, 1fr)); gap: 4px; }
  .chart-column { grid-template-rows: 27px 1fr 27px; }
  .chart-column i { width: min(100%, 38px); border-radius: 7px 7px 2px 2px; }
  .chart-value { font-size: .5rem; }
  .chart-column strong { font-size: .53rem; }
  .chart-method { margin-left: 17px; font-size: .53rem; }
  .funnel-section { padding-block: 74px; }
  .funnel-grid { gap: 32px; }
  .funnel-copy h2 { font-size: clamp(2rem, 10vw, 2.7rem); }
  .funnel-copy > p:not(.eyebrow):not(.funnel-partnership) { font-size: .9rem; line-height: 1.58; }
  .funnel-partnership { padding: 15px 16px; margin-top: 22px; font-size: .82rem; }
  .funnel-visual { padding: 22px 12px 18px; border-radius: 19px; }
  .funnel-sources { gap: 5px; }
  .funnel-sources span { min-height: 31px; padding: 6px 9px; font-size: .58rem; }
  .funnel-down { width: 29px; height: 29px; margin-block: 6px; }
  .funnel-stage { padding: 17px 32px 19px; }
  .funnel-stage-site { width: 100%; }
  .funnel-stage-offer { width: 84%; padding-block: 15px 17px; }
  .funnel-stage strong { font-size: .92rem; }
  .funnel-stage span { font-size: .58rem; }
  .funnel-actions { width: 94%; gap: 5px; }
  .funnel-actions span { min-height: 30px; padding: 5px 7px; font-size: .54rem; }
  .funnel-result { width: 76%; min-height: 66px; padding: 11px 15px; }
  .funnel-result strong { font-size: .74rem; }
  .funnel-note { gap: 11px; padding: 16px 15px; margin-top: 27px; }
  .funnel-note p { font-size: .73rem; }
  .function-list { grid-template-columns: 1fr; }
  .assistant-grid-reworked { gap: 38px; }
  .package-meta { margin-top: -4px; }
  .order-review { padding: 18px 15px; }
  .order-review dl { grid-template-columns: 1fr; }
  .form-actions button[type="submit"] { font-size: .8rem; line-height: 1.3; }
  .legal-main { padding: 45px 0 70px; }
  .legal-document section { padding: 29px 0; }
  .legal-data { grid-template-columns: 1fr; }
  .legal-footer { grid-template-columns: 1fr; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; padding: 18px 16px; border-radius: 14px; }
  .cookie-actions { grid-template-columns: 1fr; }
  .cookie-button { min-height: 52px; }
}


/* 2026-08-03: Rólunk szekció + fejléc menülink */
.about-signature { margin-top: 28px; font-weight: 800; color: var(--forest-deep); }
.about-back { margin-top: 22px; font-size: .9rem; font-weight: 700; }
.about-back a { color: var(--forest); text-decoration: none; }
.about-back a:hover { text-decoration: underline; text-underline-offset: 4px; }
.faq-guide-link { padding-bottom: 24px !important; }
.faq-guide-link a { color: var(--forest); font-weight: 700; text-decoration: none; }
.faq-guide-link a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* 2026-08-03: Rólunk kivonat a kezdőlapon */
.footer-company { margin-top: 6px; color: rgba(255, 255, 255, .55); font-size: .72rem; line-height: 1.55; }
.legal-footer .footer-company { color: var(--muted); }
.about-teaser-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.about-teaser-inner h2 { margin: 6px 0 18px; }
.about-teaser-inner p { margin: 0 0 14px; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.about-teaser-link { margin-top: 6px !important; }
.about-teaser-link a { color: var(--forest); font-weight: 700; text-decoration: none; }
.about-teaser-link a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* 2026-08-03: útmutató oldal */
.guide-document .legal-lead { font-size: 1.02rem; color: var(--forest-deep); font-weight: 600; }
.guide-document h4 { margin: 26px 0 10px; color: var(--forest-deep); font-size: 1.02rem; font-weight: 800; }
.guide-document ol,
.guide-document ul { margin: 0 0 18px; padding-left: 22px; color: var(--muted); line-height: 1.7; }
.guide-document li { margin-bottom: 8px; }
.guide-document li::marker { color: var(--forest); font-weight: 700; }
.guide-document .faq-guide-note { color: var(--forest-deep); font-style: italic; }

/* 2026-08-03: belépő adatlap (3 lépcsős) és javaslatképernyő */
.field-note { margin: 6px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.field-error { margin: 8px 0 0; color: #a1231f; font-size: .84rem; font-weight: 700; }
.suggestion { max-width: 720px; }
.suggestion p { margin: 0 0 12px; color: var(--muted); font-size: .95rem; line-height: 1.62; }
.suggestion .suggestion-pick { margin-top: 16px; color: var(--forest-deep); font-size: 1.02rem; font-weight: 800; }
.suggestion-packages { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 24px 0 14px; }
.package-pick { display: flex; flex-direction: column; gap: 7px; padding: 18px; border: 1px solid #cbd8d0; border-radius: 16px; background: #fff; transition: opacity .2s, border-color .2s, box-shadow .2s; }
.package-pick strong { font-size: 1rem; }
.package-pick b { color: var(--forest); font-size: 1.16rem; }
.package-pick small { color: var(--muted); font-size: .84rem; line-height: 1.5; }
.package-pick .button { margin-top: auto; align-self: flex-start; min-height: 40px; padding: 9px 14px; font-size: .8rem; }
.package-pick-flag { align-self: flex-start; padding: 4px 10px; border-radius: 999px; background: var(--yellow); color: var(--forest-deep); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.package-pick.is-muted { opacity: .6; }
.package-pick.is-chosen { border-color: var(--forest); box-shadow: 0 0 0 2px rgba(18, 63, 50, .14); opacity: 1; }
.suggestion-note { max-width: 720px; margin: 0 0 24px; color: var(--muted); font-size: .82rem; font-style: italic; }
@media (max-width: 860px) {
  .suggestion-packages { grid-template-columns: 1fr; }
}
.package-pick .button[hidden] { display: none; }
.package-pick .button[disabled] { border-color: var(--forest); color: var(--forest-deep); background: rgba(18, 63, 50, .07); cursor: default; }


/* ================================================================
   ELLENORZOLISTA - "Ezen a listan haladunk vegig" (#ellenorzolista)
   A lenyito a GYIK-lenyitok jelolesét es animaciojat koveti
   (kor alaku "+", nyitva 45 fokban elfordul es kizoldul),
   de szelesebb, kartyas panelben es tagoltabb belso szerkezettel.
   ================================================================ */
.checklist-section h2 { max-width: 750px; margin-bottom: 26px; }

.checklist-details { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--paper); box-shadow: var(--shadow-small); }
.checklist-details > summary { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 24px 28px; color: var(--forest-deep); font-weight: 800; cursor: pointer; list-style: none; }
.checklist-details > summary::-webkit-details-marker { display: none; }
.checklist-details > summary:hover { background: #f6f9f6; }
.checklist-details > summary:focus-visible { outline: 3px solid var(--yellow); outline-offset: -3px; }
.checklist-details > summary > span { display: grid; flex: 0 0 31px; width: 31px; height: 31px; place-items: center; border: 1px solid #b5c4bb; border-radius: 50%; color: var(--forest); font-size: 1.2rem; transition: transform .2s, background .2s, color .2s; }
.checklist-details[open] > summary { border-bottom: 1px solid var(--line); }
.checklist-details[open] > summary > span { background: var(--forest); color: white; transform: rotate(45deg); }

.checklist-body { padding: 4px 28px 32px; }
.checklist-block { padding-top: 30px; }
.checklist-block + .checklist-block { margin-top: 36px; border-top: 1px solid var(--line); }
.checklist-block-head { max-width: 780px; margin-bottom: 28px; padding: 17px 21px; border-left: 3px solid var(--yellow); border-radius: 0 12px 12px 0; background: var(--sage); }
.checklist-block-head h3 { margin: 0; font-size: 1.12rem; line-height: 1.35; }
.checklist-block-head p { margin: 5px 0 0; color: var(--muted); font-size: .85rem; font-weight: 750; }

.checklist-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 48px; align-items: start; }
.checklist-group-title { margin: 0 0 9px; color: var(--forest); font-size: .68rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.checklist-items { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.checklist-items li { position: relative; padding: 9px 0 9px 26px; color: #3f4c44; font-size: .84rem; line-height: 1.5; }
.checklist-items li + li { border-top: 1px solid #eef2ef; }
.checklist-items li::before { content: "\2713"; position: absolute; top: 9px; left: 0; color: var(--forest); font-weight: 900; }

.checklist-closing { max-width: 780px; margin: 36px 0 0; padding: 18px 21px; border: 1px dashed #b5c4bb; border-radius: 12px; color: var(--muted); font-size: .88rem; font-weight: 700; }

@media (max-width: 780px) {
  .checklist-groups { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .checklist-section h2 { margin-bottom: 20px; }
  .checklist-details > summary { gap: 14px; padding: 19px 17px; font-size: .95rem; }
  .checklist-body { padding: 2px 17px 26px; }
  .checklist-block { padding-top: 24px; }
  .checklist-block + .checklist-block { margin-top: 28px; }
  .checklist-block-head { margin-bottom: 22px; padding: 15px 16px; }
  .checklist-block-head h3 { font-size: 1rem; }
  .checklist-closing { margin-top: 28px; padding: 15px 16px; }
}


/* ================================================================
   MEGRENDELESI FOLYAMAT 2026-08 - megrendelo urlap (#megrendeles),
   onkentes csomagajanlo (#csomagajanlo) es a vezetett kerdoiv
   (/felmeres) stilusai.
   ================================================================ */

.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }

/* --- halk link a csomagkartyak alatt --- */
.pricing-helper { margin: 26px 0 0; text-align: center; }
.pricing-helper .text-link { color: var(--muted); font-size: .86rem; font-weight: 750; }
.pricing-helper .text-link:hover { color: var(--forest); }

/* --- onkentes csomagajanlo --- */
.helper-section { background: var(--paper); }
.helper-section[hidden] { display: none; }
.is-hidden { display: none; }
.helper-shell { max-width: 860px; margin-inline: auto; padding: 34px 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); box-shadow: var(--shadow-small); }
.helper-actions { display: flex; justify-content: flex-end; padding-top: 22px; border-top: 1px solid var(--line); }
.helper-questions[hidden], .helper-result[hidden] { display: none; }
.helper-echo { padding: 15px 18px; margin-bottom: 22px; border-left: 3px solid var(--yellow); border-radius: 0 12px 12px 0; background: var(--sage); }
.helper-echo-label { margin: 0 0 4px; color: var(--forest); font-size: .68rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.helper-echo p:last-child { margin: 0; color: #36433c; font-size: .9rem; font-weight: 700; line-height: 1.55; }
.suggestion .suggestion-headline { color: var(--forest-deep); font-size: 1.08rem; font-weight: 850; }
.suggestion .suggestion-prefix { color: #55625a; font-style: italic; }
.helper-soft { max-width: 720px; margin: 4px 0 6px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.helper-restart { margin: 6px 0 0; }
.helper-restart .text-link { padding: 0; border: 0; background: none; color: var(--muted); font-size: .8rem; text-decoration: underline; cursor: pointer; }
.helper-restart .text-link:hover { color: var(--forest); }
.package-pick.is-recommended { border-color: var(--forest); box-shadow: 0 0 0 2px rgba(18, 63, 50, .14); opacity: 1; }

/* --- megrendelo urlap --- */
.order-form { min-height: 0; }
.order-fields { min-width: 0; padding: 0; margin: 0; border: 0; }
.order-fields[hidden] { display: none; }
.stacked-options-tight { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stacked-options-tight label > span { min-height: 0; }
.conditional-field { margin-top: 14px; }
.conditional-field[hidden] { display: none; }
.conditional-field .field { margin-bottom: 0; }
.form-actions-single { justify-content: flex-end; }

@media (max-width: 780px) {
  .helper-shell { padding: 24px 20px; }
}
@media (max-width: 580px) {
  .helper-shell { padding: 20px 16px; }
  .helper-echo { padding: 13px 15px; }
  .helper-actions { justify-content: stretch; }
  .helper-actions .button { width: 100%; }
  .stacked-options-tight { grid-template-columns: 1fr; }
}


/* ================================================================
   VEZETETT KERDOIV (/felmeres) - mobilra elsokent tervezve.
   Nem tablazat: szakaszokra bontott kerdoiv, egy kerdes egy sorban.
   ================================================================ */
.fx-body { background: var(--cream); }
.fx-hero { padding: 46px 0 26px; background: var(--forest-deep); color: white; }
.fx-hero .eyebrow { color: #bdd3c7; }
.fx-hero h1 { max-width: 760px; margin: 0 0 12px; font-size: clamp(1.7rem, 5vw, 2.5rem); }
.fx-lead { max-width: 720px; margin: 0; color: #cfe0d6; font-size: .95rem; line-height: 1.6; }

.fx-progress-bar { position: sticky; z-index: 8; top: 0; padding: 12px 0; border-bottom: 1px solid var(--line); background: rgba(251, 250, 245, .96); backdrop-filter: blur(10px); }
.fx-progress-bar[hidden] { display: none; }
.fx-progress-track { position: relative; height: 8px; overflow: hidden; border-radius: 999px; background: #dde5e0; }
.fx-progress-track > span { display: block; width: 0; height: 100%; border-radius: 999px; background: var(--forest); transition: width .25s; }
.fx-progress-text { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 0; color: var(--muted); font-size: .74rem; }
.fx-progress-text strong { color: var(--forest-deep); }
.fx-saved { color: var(--forest); font-weight: 700; }
.fx-jump { display: flex; gap: 7px; margin-top: 9px; overflow-x: auto; padding-bottom: 3px; scrollbar-width: thin; }
.fx-jump-link { flex: 0 0 auto; padding: 6px 11px; border: 1px solid #c9d3cd; border-radius: 999px; background: white; color: #36433c; font-size: .7rem; font-weight: 750; text-decoration: none; white-space: nowrap; }
.fx-jump-link:hover { border-color: var(--forest); color: var(--forest); }

.fx-container { padding-bottom: 70px; }
.fx-form { max-width: 760px; margin-inline: auto; }
.fx-section { padding: 30px 26px; margin: 22px 0; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--paper); box-shadow: var(--shadow-small); scroll-margin-top: 130px; }
.fx-section[hidden] { display: none; }
.fx-step { margin: 0 0 6px; color: var(--forest); font-size: .66rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.fx-section h2 { margin: 0 0 8px; font-size: 1.3rem; line-height: 1.3; }
.fx-intro { margin: 0 0 22px; color: var(--muted); font-size: .86rem; line-height: 1.55; }
.fx-fields .field { margin-bottom: 22px; }
.fx-fields .field input, .fx-fields .field textarea { min-height: 54px; font-size: 1rem; }
.fx-fields .field textarea { min-height: 110px; }
.fx-note { margin: -8px 0 0; color: var(--muted); font-size: .78rem; }
.fx-pkg[hidden] { display: none; }
.fx-section .stacked-options { grid-template-columns: 1fr; }
.fx-section .stacked-options label > span { min-height: 0; padding: 15px 16px; }
.fx-section .stacked-options-tight { grid-template-columns: 1fr; }

.fx-upload { padding: 18px; margin-top: 6px; border: 1px dashed #b5c4bb; border-radius: 12px; background: var(--sage); }
.fx-upload .question-label { margin-bottom: 4px; }
.fx-file { width: 100%; margin-top: 12px; padding: 13px; border: 1px solid #c9d3cd; border-radius: 10px; background: white; font-size: .84rem; }
.fx-file-list { padding: 0; margin: 12px 0 0; list-style: none; }
.fx-file-list li { padding: 7px 0; border-top: 1px solid #d7e0da; color: #36433c; font-size: .8rem; word-break: break-word; }
.fx-nofiles { margin: 14px 0 0; }

.fx-submit { padding-top: 8px; }
.fx-submit .button { width: 100%; min-height: 56px; }
.fx-done { max-width: 620px; padding: 60px 24px; margin: 40px auto; text-align: center; }
.fx-done[hidden] { display: none; }
.fx-done .eyebrow { justify-content: center; }
.fx-done h2 { font-size: 1.7rem; }
.fx-done p { color: var(--muted); }

@media (min-width: 700px) {
  .fx-section { padding: 34px 34px; }
  .fx-section .stacked-options { grid-template-columns: 1fr 1fr; }
  .fx-section .stacked-options-tight { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 580px) {
  .fx-hero { padding: 34px 0 22px; }
  .fx-section { padding: 24px 17px; margin: 16px 0; border-radius: 14px; }
  .fx-progress-bar { padding: 10px 0; }
}
/* ================================================================
   REFERENCIABLOKK (#munkaink)
   Ket csoport: kiemelt ugyfelmunka-kartya, alatta a sajat
   fejlesztesek harmas racsa. Kep nincs, csak szoveg es link.
   ================================================================ */
.refs-section { background: white; }
.refs-group { margin-bottom: 46px; }
.refs-group:last-of-type { margin-bottom: 34px; }
.refs-label { display: flex; align-items: center; gap: 14px; margin: 0 0 18px; color: var(--forest); font-size: .68rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.refs-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.refs-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.ref-card { display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--cream); }
.ref-card h3 { margin: 0 0 4px; font-size: 1.15rem; }
.ref-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.6; }
.ref-card .ref-domain { margin-bottom: 12px; color: var(--forest); font-size: .74rem; font-weight: 800; letter-spacing: .02em; }
.ref-card .ref-link { margin-top: auto; padding-top: 18px; font-size: .82rem; }
.ref-card-lead { padding: 38px; border: 2px solid var(--forest); border-radius: var(--radius); background: linear-gradient(180deg, #ffffff 0%, var(--sage) 100%); box-shadow: var(--shadow-small); }
.ref-card-lead h3 { margin-bottom: 6px; font-size: clamp(1.5rem, 3vw, 2rem); }
.ref-card-lead > p:not(.ref-domain):not(.ref-link) { max-width: 720px; color: var(--ink); font-size: 1rem; margin-bottom: 16px; }
.ref-card-lead .ref-link { font-size: .9rem; margin-top: 24px; }
.refs-extra { max-width: 760px; margin: 0 0 10px; color: var(--ink); font-size: .95rem; font-weight: 600; }
.refs-smallprint { max-width: 760px; margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.6; }

/* ================================================================
   MOBIL HIVOGOMB (.call-bar)
   Csak 780 px alatt latszik, es csak akkor, ha a latogato mar
   gorgetett egy kepernyonyit. A megjelenest a callbar.js kapcsolja
   az is-visible osztallyal (a html-en pedig has-callbar).
   ================================================================ */
.call-bar { position: fixed; z-index: 999; right: 0; bottom: 0; left: 0; display: none; gap: 10px; padding: 10px 14px; padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)); background: var(--forest-deep); box-shadow: 0 -12px 30px rgba(13, 48, 38, .26); }
.call-bar .button { width: 100%; min-height: 50px; padding: 11px 12px; font-size: .95rem; }
.call-bar .button-ghost { border-color: rgba(255, 255, 255, .55); background: transparent; color: white; }
.call-bar .button-ghost:hover { border-color: white; background: rgba(255, 255, 255, .12); }

@media (max-width: 780px) {
  .call-bar { display: grid; grid-template-columns: 1fr 1fr; visibility: hidden; transform: translateY(105%); transition: transform .24s ease, visibility .24s; }
  .call-bar.is-visible { visibility: visible; transform: translateY(0); }
  /* A hely mindig le van foglalva, ha a sav ott van a lapon - igy a lablec
     utolso sora sosem kerul a sav ala. A has-callbar a :has() nelkuli
     bongeszok tartaleka. */
  body:has(> .call-bar) { padding-bottom: 88px; }
  .has-callbar body { padding-bottom: 88px; }
  .has-callbar .cookie-banner { bottom: 100px; }
  .refs-grid { grid-template-columns: 1fr; }
  .ref-card-lead { padding: 26px; }
  .refs-group { margin-bottom: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .call-bar { transition: none; }
}

/* ==== 2026-08-05: sikeres beküldés után minden űrlaprészlet tűnjön el ==== */
.consent-field[hidden],
.form-actions[hidden],
.form-progress[hidden],
.mobile-progress[hidden] { display: none !important; }

.form-result-lead { margin: 14px auto 0; max-width: 30em; font-size: 1.02rem; }
.form-result-note { margin: 8px auto 0; max-width: 30em; color: var(--muted); font-size: .88rem; }
/* ==== 2026-08-05: rovidebb, mobilbarat fooldal ==== */
.disclosure { max-width: 900px; margin-inline: auto; }
.disclosure + .disclosure { margin-top: 16px; }
.disclosure-body { padding: 22px 28px 30px; }
.disclosure-body > *:first-child { margin-top: 0; }
.disclosure-body h3 { margin: 26px 0 8px; font-size: 1.08rem; color: var(--forest-deep); }
.disclosure-body h3:first-of-type { margin-top: 4px; }
.disclosure-close { display: block; margin: 26px auto 0; padding: 11px 22px; border: 1px solid var(--line); border-radius: 999px; background: #f6f9f6; color: var(--forest-deep); font: inherit; font-size: .92rem; font-weight: 800; cursor: pointer; }
.disclosure-close:hover { background: #eef4ef; }
.market-lead { max-width: 900px; text-align: center; }
.market-lead h2 { margin-bottom: 26px; }
.market-lead .market-highlight { text-align: left; }
.chart-wrap { margin: 22px 0 18px; }
.extra-price { display: grid; gap: 4px; margin: 0; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-small); background: #f6f9f6; }
.extra-price strong { color: var(--forest-deep); font-size: 1.25rem; }
.cl-note { display: block; color: var(--muted); font-size: .82rem; }
.ai-note { max-width: 900px; margin: 24px auto 0; padding: 16px 18px; border-left: 4px solid var(--forest); border-radius: var(--radius-small); background: #f6f9f6; color: var(--ink); font-size: .95rem; }
.assistant-naming { color: var(--muted); font-size: .92rem; }

.flow-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0; padding: 0; list-style: none; }
.flow-card { position: relative; display: grid; gap: 10px; align-content: start; padding: 26px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-small); }
.flow-card h3 { margin: 0; font-size: 1.16rem; line-height: 1.25; }
.flow-card p { margin: 0; color: var(--muted); font-size: 1rem; }
.flow-num { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; background: var(--forest); color: #fff; font-size: 1.1rem; font-weight: 900; }
.flow-card::after { content: "\2192"; position: absolute; top: 50%; right: -16px; transform: translateY(-50%); color: #9fb3a7; font-size: 1.5rem; line-height: 1; }
.flow-card:last-child::after { content: none; }
.flow-partnership { max-width: 720px; margin: 30px auto 0; color: var(--muted); text-align: center; }

@media (max-width: 900px) {
  .flow-cards { grid-template-columns: 1fr; gap: 34px; }
  .flow-card { padding: 22px 20px; }
  .flow-card h3 { font-size: 1.3rem; }
  .flow-card p { font-size: 1.05rem; }
  .flow-card::after { content: "\2193"; top: auto; right: auto; bottom: -26px; left: 50%; transform: translateX(-50%); }
  .disclosure-body { padding: 18px 17px 26px; }
  .market-lead h2 { font-size: 1.5rem; }
  .chart-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ai-note, .disclosure { margin-inline: 0; }
}

/* ---- #piac "Kinek jo a Weblepes" kartyak: ugyanaz a kartyastilus, de nem folyamat (2026-08-06) ---- */
.flow-cards-plain { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.flow-cards-plain .flow-card::after { content: none; }

.disclosure-body { text-align: left; }
.disclosure-body .market-context { margin-top: 18px; font-size: 1rem; }

/* ---- Gorgetosav: kicsit szelesebb sav, sotetzold huzhato elem (2026-08-05) ---- */

html::-webkit-scrollbar {
  width: 18px;
}

html::-webkit-scrollbar-track {
  background: var(--sage);
}

html::-webkit-scrollbar-thumb {
  background: var(--forest);
  border-radius: 9px;
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--forest-deep);
}

/* Firefox: ott nincs ::-webkit-scrollbar, ezert a standard tulajdonsaggal szinezunk.
   Chrome-ban a scrollbar-color kikapcsolna a ::-webkit-scrollbar szabalyokat, ezert van elkeritve. */
@supports not selector(::-webkit-scrollbar) {
  html {
    scrollbar-color: var(--forest) var(--sage);
  }
}
/* 2026-08-06: alapito portre a megrendelo urlap felett, es az AutomataHely kepernyokep a referenciakartyaban. */
.founder-note { display: flex; align-items: center; gap: 16px; max-width: 930px; margin: 0 auto 26px; }
.founder-note img { flex: 0 0 96px; width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.founder-note p { margin: 0; color: var(--ink); font-size: .9rem; line-height: 1.55; }
.ref-shot { display: block; width: 100%; height: auto; margin-top: 22px; border: 1px solid var(--line); border-radius: 12px; }

@media (max-width: 580px) {
  .founder-note { gap: 13px; }
  .founder-note img { flex: 0 0 72px; width: 72px; height: 72px; }
}


/* Csomagok - osszehasonlito tablazat es szolgaltatas doboz */
.pkg-table-wrap { margin-top: 26px; }
.pkg-table { width: 100%; border-collapse: collapse; }
.pkg-table th, .pkg-table td { padding: 15px 16px; text-align: left; vertical-align: middle; }
.pkg-table thead th { position: relative; padding-bottom: 34px; border-bottom: 2px solid var(--forest); vertical-align: bottom; }
.pkg-table thead th:first-child { border-bottom-color: var(--line); }
.pkg-table thead th.is-selected { background: var(--yellow-soft); border-radius: 12px 12px 0 0; }
.pkg-table .price { margin-bottom: 0; }
.pkg-table .price strong { font-size: clamp(1.45rem, 2.6vw, 2.1rem); }
.pkg-flag { position: absolute; left: 16px; bottom: 11px; display: block; color: var(--forest); font-size: .68rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.pkg-table tbody th { width: 25%; color: var(--muted); font-size: .88rem; font-weight: 650; }
.pkg-table tbody td { color: #3f4c44; font-size: .95rem; }
.pkg-table tbody tr + tr th, .pkg-table tbody tr + tr td { border-top: 1px solid var(--line); }
.pkg-yes { color: var(--forest); font-size: 1.2rem; font-weight: 750; }
.pkg-no { color: var(--muted); }
.pkg-nodeposit { margin: 22px 0 0; padding: 16px 20px; border-radius: var(--radius-small); background: var(--sage); color: var(--ink); font-size: .95rem; }
.pkg-nodeposit strong { color: var(--forest); }
.wl-svc { margin-top: 24px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-small); }
.wl-svc h3 { margin: 0 0 6px; color: var(--forest); font-size: 1.15rem; }
.wl-svc .wl-svc-meta { margin: 0 0 16px; color: var(--muted); font-size: .85rem; font-weight: 650; }
.wl-svc p { margin: 0 0 12px; color: #3f4c44; font-size: .95rem; }
.wl-svc p:last-child { margin-bottom: 0; }
.pkg-cta { margin: 24px 0 0; }
@media (max-width: 719px) {
  .pkg-table, .pkg-table thead, .pkg-table tbody, .pkg-table tr, .pkg-table th, .pkg-table td { display: block; }
  .pkg-table thead tr { display: flex; gap: 10px; }
  .pkg-table thead th:first-child { display: none; }
  .pkg-table thead th { flex: 1 1 0; padding: 0 0 14px; position: static; }
  .pkg-table thead th.is-selected { padding: 8px; }
  .pkg-table .price { flex-wrap: wrap; gap: 4px; }
  .pkg-table .price strong { font-size: 1.1rem; }
  .pkg-table .price span { font-size: .7rem; }
  .pkg-flag { position: static; font-size: .62rem; letter-spacing: .06em; }
  .pkg-table tbody tr { margin-top: 14px; padding: 2px 16px 10px; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--paper); }
  .pkg-table tbody tr + tr th, .pkg-table tbody tr + tr td { border-top: 0; }
  .pkg-table tbody th { width: auto; padding: 12px 0 9px; border-bottom: 1px solid var(--line); color: var(--forest); font-size: .95rem; font-weight: 750; }
  .pkg-table tbody td { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 9px 0; }
  .pkg-table tbody td::before { content: attr(data-col); flex: 0 0 auto; color: var(--muted); font-size: .8rem; font-weight: 700; }
  .pkg-table tbody td > span { text-align: right; }
  .wl-svc { padding: 22px 18px; }
}

/* Csomagtablazat - oszloponkenti valaszto gombok */
.pkg-table tfoot th, .pkg-table tfoot td { padding-top: 22px; border-top: 1px solid var(--line); }
.pkg-valaszt .button { width: 100%; }
@media (max-width: 719px) {
  .pkg-table tfoot, .pkg-table tfoot tr, .pkg-table tfoot th, .pkg-table tfoot td { display: block; }
  .pkg-table tfoot th { display: none; }
  .pkg-table tfoot tr { margin-top: 14px; }
  .pkg-table tfoot td { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 7px 0; border-top: 0; }
  .pkg-table tfoot td::before { content: attr(data-col); color: var(--muted); font-size: .85rem; font-weight: 700; }
  .pkg-valaszt .button { width: auto; min-width: 150px; }
}

/* 2026-08: hero-ből áthelyezett két mondat blokkja */
#weboldal-tulajdonsagok { padding: 56px 0; }
#weboldal-tulajdonsagok .section-heading { margin-bottom: 0; }
#weboldal-tulajdonsagok .section-heading p { margin-bottom: 10px; }
#weboldal-tulajdonsagok .section-heading p:last-child { margin-bottom: 0; }
@media (max-width: 580px) {
  #weboldal-tulajdonsagok { padding: 34px 0; }
}

/* 2026-08: folyamatábra a csomagok alatt */
.flow-figure { margin: 24px 0 0; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-small); }
.flow-figure img { display: block; width: 100%; max-width: 900px; height: auto; margin-inline: auto; }
@media (max-width: 580px) {
  .flow-figure { padding: 12px; border-radius: var(--radius-small); }
}

/* 2026-08-09: cél-blokk („Miért csináljuk?") a folyamatábra alatt */
.wl-purpose {
  max-width: 640px;
  margin: 76px auto 44px;
  padding: 34px 38px;
  border-left: 4px solid var(--forest);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  background: var(--forest-soft);
}
.wl-purpose .eyebrow { margin-bottom: 20px; color: var(--forest-deep); font-size: .72rem; letter-spacing: .17em; }
.wl-purpose p { margin-bottom: 18px; color: #2d4139; font-size: 1.02rem; line-height: 1.68; }
.wl-purpose strong { color: var(--forest-deep); font-weight: 800; }
.wl-purpose .wl-purpose-lead { margin-top: 26px; margin-bottom: 0; color: var(--forest-deep); font-size: 1.16rem; font-weight: 750; line-height: 1.5; }
.wl-purpose .wl-purpose-sign { margin-top: 28px; margin-bottom: 0; color: var(--forest-deep); font-weight: 800; }
@media (max-width: 719px) {
  .wl-purpose { max-width: none; margin: 48px 0 32px; padding: 26px 22px; border-radius: 0 12px 12px 0; }
  .wl-purpose p { font-size: .98rem; line-height: 1.65; }
  .wl-purpose .wl-purpose-lead { font-size: 1.08rem; }
}

/* 2026-08-09: szerkezeti kor - csomag-CTA, csomag-lenyilok, urlapgomb kiserosor */
.pkg-cta { margin: 36px 0 0; text-align: center; }
.pkg-details { max-width: 900px; margin: 26px auto 0; }
.pkg-details .disclosure { margin-inline: 0; }
.pkg-details .checklist-details + .checklist-details { margin-top: 16px; }
.pkg-details .checklist-block { padding-top: 22px; }
.pkg-details .checklist-closing { max-width: none; margin: 22px 0 0; }
.form-actions.form-actions-single { flex-direction: column; align-items: flex-end; }
.form-actions-note { margin: 10px 0 0; max-width: 560px; color: var(--muted); font-size: .74rem; line-height: 1.5; text-align: right; }
@media (max-width: 580px) {
  .pkg-cta { margin-top: 28px; }
  .pkg-cta .button { width: 100%; }
  .pkg-details { margin-top: 20px; }
  .form-actions-note { margin-top: 9px; text-align: center; }
}

/* ------------------------------------------------------------------
   Lebego "Kezdjuk el" gomb asztali gepen (lebego-cta, 2026-08-29)
   ------------------------------------------------------------------
   Mobilon eddig is volt allando also hivosav. Asztali gepen viszont a
   hero gombja (az oldal 4%-a) utan a kovetkezo gomb csak a 45%-nal jott,
   vagyis kozel 6000 pixel telt el gomb nelkul. A meres szerint a 14
   bekuldes MINDEGYIKE olyan latogatotol jott, aki nyomott valamilyen
   gombot - aki nem nyomott, abbol egy sem kuldott be. Ezert asztalon is
   kell egy allandoan elerheto gomb.
   A savot ugyanaz a callbar.js kapcsolja; asztalon csak a "Kezdjuk el"
   latszik belole (a telefonszam ott van a fejlecben), jobb also sarokban.
   ------------------------------------------------------------------ */
@media (min-width: 781px) {
  .call-bar {
    position: fixed;
    right: 28px;
    bottom: 28px;
    left: auto;
    top: auto;
    z-index: 998;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    border: 0;
    background: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .call-bar.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .call-bar [data-callbar-call] { display: none; }
  .call-bar .button { box-shadow: 0 14px 34px rgba(13, 55, 43, .28); }
  .call-bar .button-light { min-width: 172px; min-height: 58px; padding: 15px 24px; font-size: 1rem; font-weight: 800; background: var(--forest-deep); border-color: var(--forest-deep); color: #fff; box-shadow: 0 18px 42px rgba(13, 55, 43, .38); }
  .call-bar .button-light:hover { background: var(--forest); border-color: var(--forest); color: #fff; }
  .has-callbar body { padding-bottom: 0; }
}

@media (min-width: 781px) and (prefers-reduced-motion: reduce) {
  .call-bar { transition: none; }
}

/* ================================================================
   Domainkincsek ajanlo csik (.wl-dk-*) - 2026-09-03
   Markup: index.html, a csomagok szekcio utan.
   Desktop: egy sor (~44 px). Mobil: a nev elrejtve, szoveg tordel.
   ================================================================ */
.wl-dk-band { margin: 26px 0 0; }
.wl-dk {
  display: flex; align-items: center; gap: 12px;
  min-height: 44px; padding: 8px 16px; box-sizing: border-box;
  border: 1px solid var(--line); border-radius: var(--radius-small);
  background: var(--cream); color: var(--muted);
  font-size: .92rem; line-height: 1.35; text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
}
.wl-dk:hover, .wl-dk:focus-visible { background: var(--sage); border-color: #c6d4cb; }
.wl-dk-mark { position: relative; display: block; width: 18px; height: 18px; border-radius: 5px; background: #101010; flex: 0 0 auto; }
.wl-dk-mark i { position: absolute; left: 6px; top: 4px; display: block; width: 4px; height: 10px; background: #1747c9; transform: rotate(-18deg); }
.wl-dk-name { flex: 0 0 auto; font-family: Georgia, "Times New Roman", serif; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }
.wl-dk-txt { flex: 1 1 auto; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wl-dk-go { flex: 0 0 auto; font-weight: 600; color: var(--forest); border-bottom: 1px solid rgba(23, 76, 60, .25); }
.wl-dk:hover .wl-dk-go { border-bottom-color: rgba(23, 76, 60, .55); }
@media (max-width: 640px) {
  .wl-dk-band { margin-top: 20px; }
  .wl-dk { gap: 10px; padding: 9px 12px; }
  .wl-dk-name { display: none; }
  .wl-dk-txt { white-space: normal; overflow: visible; text-overflow: clip; font-size: .85rem; line-height: 1.3; }
  .wl-dk-go { align-self: center; font-size: 0; border-bottom: 0; line-height: 1; }
  .wl-dk-go span { font-size: 1.05rem; }
}
@media (prefers-reduced-motion: reduce) { .wl-dk { transition: none; } }
/* 2026-09-12: e-mail mező teljes szélességű a kontakt-rácsban (3 mező / 2 oszlop) */
@media (min-width: 781px) {
  .order-form .two-cols .field:nth-child(3) { grid-column: 1 / -1; }
}
