/* P1 Partner – p1partner.hu */

:root {
  --ink: #0A1A2F;
  --navy: #12305C;
  --navy-line: #27456D;
  --accent: #2E86FF;
  --warn: #F2994A;
  --paper: #F4F6FA;
  --white: #FFFFFF;
  --line: #DCE3ED;
  --muted: #55657C;
  --body: #2B3A4F;
  --dim: #7E93AE;
  --on-dark: #D7E0EC;
  --on-dark-soft: #9FB6D4;
  --pad: 80px;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display { font-family: "Archivo", system-ui, sans-serif; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { display: block; max-width: 100%; }
a { color: #10366B; }
a:hover { color: var(--ink); }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.wrap { max-width: 1440px; margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: 96px; }
.section--tight { padding-block: 72px; }
.bg-white { background: var(--white); }
.bg-paper { background: var(--paper); }
.bg-ink { background: var(--ink); }

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 1.8px; color: var(--muted);
  text-transform: uppercase;
}
.eyebrow--dark { color: var(--dim); }
.h2 { font-size: clamp(30px, 3.2vw, 44px); line-height: 1.12; font-weight: 700; letter-spacing: -1.2px; }
.lead { font-size: 17px; line-height: 1.6; color: var(--muted); }

/* ---------- gombok ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px; border-radius: 6px;
  font-size: 16px; font-weight: 600; text-decoration: none; border: 1px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: #E8EDF5; color: var(--ink); }
.btn--ghost { border-color: #3A5A86; color: var(--white); background: rgba(10,26,47,.5); }
.btn--ghost:hover { background: rgba(10,26,47,.85); color: var(--white); }
.btn--outline { border-color: #10366B; color: #10366B; }
.btn--outline:hover { background: #10366B; color: var(--white); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #16304F; color: var(--white); }
.btn--on-accent { border-color: var(--ink); color: var(--ink); }
.btn--on-accent:hover { background: var(--ink); color: var(--white); }

/* ---------- fejléc ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
}
.site-header .wrap {
  min-height: 88px; display: flex; align-items: center; gap: 32px;
}
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand__name { font-family: "Archivo", sans-serif; font-size: 26px; font-weight: 800; letter-spacing: -0.5px; color: var(--white); }
.brand__name span { color: var(--accent); }
.brand__tag { font-size: 12px; letter-spacing: 1.2px; color: #93A4BC; }
.nav { display: flex; gap: 28px; flex: 1; justify-content: center; }
.nav a { font-size: 15px; color: var(--on-dark); text-decoration: none; }
.nav a:hover { color: var(--white); }
.header-cta { white-space: nowrap; min-height: 46px; padding: 0 22px; }
.menu-toggle { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--ink); isolation: isolate; }
.hero__media, .hero__veil, .hero__mono { position: absolute; inset: 0; z-index: -1; }
.hero__media { width: 100%; height: 100%; object-fit: cover; }
.hero__veil { background: linear-gradient(100deg, var(--ink) 24%, rgba(10,26,47,.9) 46%, rgba(10,26,47,.42) 100%); }
.hero__mono { inset: auto 74px 24px auto; z-index: -1; opacity: .3; width: 360px; height: auto; }
.hero .wrap { padding-block: 88px; display: grid; grid-template-columns: minmax(0,1.6fr) minmax(0,1fr); gap: 72px; align-items: start; }
.hero__rule { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--accent); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px;
  border: 1px solid var(--navy-line); border-radius: 4px; background: rgba(10,26,47,.6);
  font-size: 12px; font-weight: 600; letter-spacing: 1.6px; color: var(--on-dark-soft);
}
.hero__badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  margin-top: 28px;
  font-size: clamp(38px, 5vw, 68px); line-height: 1.04; font-weight: 800; letter-spacing: -2px;
  color: var(--white);
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__sub { margin-top: 26px; max-width: 580px; font-size: 19px; color: #B9C8DC; }
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; }
.hero__card {
  padding: 34px; border-radius: var(--radius);
  background: rgba(18,48,92,.92); border: 1px solid var(--navy-line);
  display: flex; flex-direction: column; gap: 18px;
}
.hero__card h2 { font-size: 25px; line-height: 1.25; font-weight: 700; color: var(--white); }
.hero__card .accent { font-size: 17px; font-weight: 500; color: var(--accent); }
.hero__card hr { border: 0; border-top: 1px solid var(--navy-line); margin: 0; }
.hero__card p { font-size: 14px; color: var(--on-dark-soft); }

/* ---------- pont-sorok ---------- */
.points { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); }
.points > div { display: flex; align-items: center; gap: 18px; padding: 34px 40px; }
.points > div:first-child { padding-left: 0; }
.points > div:last-child { padding-right: 0; }
.points > div + div { border-left: 1px solid var(--line); }
.points svg { flex: none; }
.points b { display: block; font-family: "Archivo", sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 1.2px; }
.points span { font-size: 15px; color: var(--muted); }
.bar-white { background: var(--white); border-bottom: 1px solid var(--line); }
.bar-paper { background: var(--paper); border-top: 1px solid var(--line); }

/* ---------- fotó-sáv ---------- */
.strip { position: relative; background: var(--ink); display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); }
.strip__item { position: relative; min-height: 430px; overflow: hidden; }
.strip__item + .strip__item { border-left: 1px solid var(--ink); }
.strip__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.98); }
.strip__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,26,47,0) 45%, rgba(10,26,47,.88) 100%);
}
.strip__label { position: absolute; left: 36px; bottom: 34px; z-index: 1; }
.strip__label i { display: block; width: 44px; height: 3px; background: var(--accent); margin-bottom: 12px; }
.strip__label b { display: block; font-family: "Archivo", sans-serif; font-size: 20px; font-weight: 700; letter-spacing: 1.6px; color: var(--white); }
.strip__label span { font-size: 14px; color: #C6D4E6; }
.strip__tag {
  position: absolute; left: var(--pad); top: 44px; z-index: 2;
  display: inline-flex; align-items: center; gap: 14px; padding: 16px 26px; background: var(--accent);
  font-family: "Archivo", sans-serif; font-size: 17px; font-weight: 700; letter-spacing: 1.4px; color: var(--ink);
}

/* ---------- szakterületek ---------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.sec-head .h2 { margin-top: 14px; }
.sec-head p { max-width: 360px; font-size: 16px; color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.card {
  padding: 28px 24px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); display: flex; flex-direction: column; gap: 16px;
}
.card__top { display: flex; align-items: center; gap: 12px; }
.card__num { font-family: "Archivo", sans-serif; font-size: 22px; font-weight: 800; color: var(--accent); }
.card h3 { font-size: 18px; line-height: 1.25; font-weight: 700; }
.card li { font-size: 14px; line-height: 1.4; color: var(--muted); }
.card li + li { margin-top: 9px; }
.card--accent { background: var(--accent); border-color: var(--accent); justify-content: center; gap: 18px; padding: 34px 28px; }
.card--accent h3 { font-size: 26px; line-height: 1.2; font-weight: 800; letter-spacing: -.6px; color: var(--ink); }
.card--accent i { display: block; width: 48px; height: 3px; background: var(--ink); }
.card--accent .strong { font-size: 17px; font-weight: 600; color: var(--ink); }
.card--accent .small { font-size: 14px; color: var(--ink); }

/* ---------- általános szolgáltatás ---------- */
.flow { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-block: 44px; }
.flow__title { text-align: center; font-family: "Archivo", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.8px; margin-bottom: 26px; }
.flow__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 6px; }
.flow__row span { font-size: 14px; color: var(--body); }
.flow__row .sep { color: var(--accent); }

/* ---------- SLA ---------- */
.sla { display: grid; grid-template-columns: 420px minmax(0,1fr); gap: 56px; align-items: stretch; }
.sla__photo { position: relative; border-radius: 12px; overflow: hidden; min-height: 420px; }
.sla__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sla__photo::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 45%; background: linear-gradient(180deg, rgba(10,26,47,0) 0%, rgba(10,26,47,.88) 100%); }
.sla__photo i { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--accent); z-index: 1; }
.sla__cap { position: absolute; left: 28px; bottom: 28px; z-index: 1; }
.sla__cap b { display: inline-block; padding: 7px 12px; background: var(--warn); font-family: "Archivo", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.4px; color: var(--ink); }
.sla__cap span { display: block; margin-top: 10px; font-family: "Archivo", sans-serif; font-size: 26px; font-weight: 700; letter-spacing: -.4px; color: var(--white); }
.sla__body { display: flex; flex-direction: column; gap: 16px; }
.sla__body .lead { max-width: 560px; margin-bottom: 10px; }
.sla-row {
  padding: 24px 28px; background: var(--white); border: 1px solid var(--line);
  border-left: 4px solid #8FA3BD; border-radius: 6px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.sla-row--priority { border-left-color: var(--accent); }
.sla-row--emergency { border-left-color: var(--warn); }
.sla-row b { width: 160px; flex: none; font-family: "Archivo", sans-serif; font-size: 19px; font-weight: 700; letter-spacing: 1.4px; }
.sla-row p { flex: 1; min-width: 220px; font-size: 17px; color: var(--body); }
.sla-row small { font-size: 14px; color: var(--muted); text-align: right; }

/* ---------- csomagok ---------- */
.plans-head { text-align: center; max-width: 660px; margin: 0 auto 44px; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.plans { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; align-items: stretch; }
.plan {
  position: relative; padding: 40px 34px; background: var(--white);
  border: 1px solid var(--line); border-radius: 12px;
  display: flex; flex-direction: column; gap: 22px;
}
.plan h3 { font-size: 22px; font-weight: 700; letter-spacing: 1.6px; }
.plan__price { margin-top: 20px; display: flex; align-items: baseline; gap: 8px; }
.plan__price b { font-family: "Archivo", sans-serif; font-size: clamp(32px, 3vw, 40px); font-weight: 800; letter-spacing: -1.4px; }
.plan__price span { font-size: 17px; color: var(--muted); }
.plan__frame { margin-top: 10px; font-size: 15px; color: var(--muted); }
.plan hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
.plan ul { flex: 1; display: flex; flex-direction: column; gap: 14px; }
.plan li { display: flex; gap: 12px; font-size: 15px; line-height: 1.45; color: var(--body); }
.plan li svg { flex: none; margin-top: 2px; }
.plan--featured { background: var(--ink); border-color: var(--ink); }
.plan--featured h3, .plan--featured .plan__price b { color: var(--white); }
.plan--featured .plan__price span, .plan--featured .plan__frame { color: var(--on-dark-soft); }
.plan--featured .plan__frame strong { color: var(--white); }
.plan--featured hr { border-top-color: var(--navy-line); }
.plan--featured li { color: var(--on-dark); }
.plan--featured li strong { color: var(--white); }
.plan__flag {
  position: absolute; top: -14px; left: 34px;
  display: inline-flex; align-items: center; gap: 7px; height: 28px; padding: 0 14px;
  border-radius: 4px; background: var(--accent);
  font-family: "Archivo", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.4px; color: var(--ink);
}
.plans-note { margin-top: 44px; text-align: center; font-size: 13px; line-height: 1.7; color: var(--muted); }

/* ---------- folyamat ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; margin-top: 44px; }
.step { padding-top: 22px; border-top: 2px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.step:first-child { border-top-color: var(--accent); }
.step b { font-family: "Archivo", sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1.4px; color: var(--muted); }
.step h3 { font-size: 20px; font-weight: 700; }
.step p { font-size: 15px; color: var(--muted); }

/* ---------- GYIK ---------- */
.faq { display: grid; grid-template-columns: 340px minmax(0,1fr); gap: 72px; }
.faq__item { padding: 24px 0; border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.faq__item p { font-size: 16px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta { background: var(--accent); }
.cta .wrap { padding-block: 64px; display: flex; align-items: center; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.cta h2 { font-size: clamp(30px, 3vw, 42px); line-height: 1.1; font-weight: 800; letter-spacing: -1.4px; color: var(--ink); }
.cta p { margin-top: 16px; font-size: 18px; color: var(--ink); }
.cta__actions { display: flex; flex-direction: column; gap: 14px; min-width: 260px; }
.cta__actions .btn { min-height: 58px; }

/* ---------- lábléc ---------- */
.site-footer { background: var(--ink); color: var(--on-dark); }
.site-footer .wrap { padding-block: 56px; display: flex; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.site-footer a { color: var(--on-dark); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.foot__brand { max-width: 380px; display: flex; flex-direction: column; gap: 14px; }
.foot__brand .brand__name { font-size: 24px; }
.foot__brand p { font-size: 14px; color: var(--dim); }
.foot__cols { display: flex; gap: 72px; flex-wrap: wrap; }
.foot__col { display: flex; flex-direction: column; gap: 10px; }
.foot__col b { font-family: "Archivo", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.4px; color: var(--dim); }
.foot__col span, .foot__col a { font-size: 14px; }
.foot__col .hours { color: var(--dim); }

/* ---------- jogi oldal ---------- */
.legal { background: var(--white); }
.legal .wrap { max-width: 1100px; }
.legal__head { padding-block: 64px 40px; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.legal__head h1 { font-size: clamp(32px, 4vw, 46px); line-height: 1.1; font-weight: 800; letter-spacing: -1.4px; }
.legal__meta { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 10px; font-size: 14px; color: var(--muted); }
.legal section { padding-block: 52px; }
.legal section + section { border-top: 1px solid var(--line); }
.legal h2 { font-size: 26px; font-weight: 700; letter-spacing: -.4px; margin-bottom: 20px; }
.legal p { max-width: 820px; font-size: 16px; line-height: 1.7; color: var(--body); }
.legal p + p { margin-top: 14px; }
.legal .muted { color: var(--muted); font-size: 15px; }
.datagrid {
  padding: 28px 32px; background: var(--paper); border: 1px solid var(--line);
  border-left: 4px solid var(--accent); border-radius: 8px;
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px 40px; margin-block: 20px;
}
.datagrid dt { font-size: 13px; color: var(--muted); }
.datagrid dd { margin: 3px 0 0; font-size: 16px; font-weight: 600; }
.table-wrap { overflow-x: auto; margin-block: 22px; }
table.dt { width: 100%; min-width: 760px; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
table.dt th {
  background: var(--ink); color: var(--white); text-align: left;
  font-family: "Archivo", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.2px;
  padding: 16px 20px;
}
table.dt td { padding: 18px 20px; font-size: 14px; line-height: 1.55; color: var(--muted); border-top: 1px solid var(--line); vertical-align: top; }
table.dt td:first-child { font-size: 15px; font-weight: 600; color: var(--ink); }
table.dt tbody tr:nth-child(even) { background: #FBFCFE; }
.legal ul.bullets { max-width: 900px; display: flex; flex-direction: column; gap: 12px; }
.legal ul.bullets li { display: flex; gap: 14px; font-size: 15px; line-height: 1.6; color: var(--body); }
.legal ul.bullets li::before { content: "•"; color: var(--accent); font-weight: 700; }
.rights { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-block: 22px; }
.right-card { padding: 22px 24px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; }
.right-card b { display: block; font-family: "Archivo", sans-serif; font-size: 16px; font-weight: 700; }
.right-card p { margin-top: 6px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.right-card--wide { grid-column: 1 / -1; }
.authority { padding: 26px 30px; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 8px; max-width: 820px; margin-top: 22px; }
.authority b { font-family: "Archivo", sans-serif; font-size: 16px; font-weight: 700; }
.authority p { margin-top: 10px; font-size: 15px; line-height: 1.75; color: var(--muted); }
.legal .bg-alt { background: var(--paper); }

/* ---------- reszponzív ---------- */
@media (max-width: 1180px) {
  :root { --pad: 48px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 44px; }
  .hero__card { max-width: 560px; }
  .hero__mono { display: none; }
  .cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sla { grid-template-columns: 1fr; gap: 32px; }
  .sla__photo { min-height: 300px; }
  .faq { grid-template-columns: 1fr; gap: 28px; }
  .flow__row { justify-content: flex-start; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .nav.is-open { display: flex; }
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; background: none; border: 0; cursor: pointer; color: var(--white);
  }
  .site-header .wrap { flex-wrap: wrap; row-gap: 0; }
  .brand { flex: 1; }
  .brand__tag { display: none; }
  .nav {
    order: 3; flex-basis: 100%; flex-direction: column; gap: 0;
    border-top: 1px solid var(--navy-line); padding-block: 8px;
  }
  .nav a { padding: 12px 0; }
  .points { grid-template-columns: 1fr; }
  .points > div { padding: 18px 0; }
  .points > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .strip__item { min-height: 260px; }
  .strip__item:last-child { grid-column: 1 / -1; min-height: 220px; }
  .strip__item + .strip__item { border-left: 0; }
  .strip__tag { left: 0; top: 0; font-size: 14px; padding: 12px 18px; }
  .strip__label { left: 22px; bottom: 22px; }
  .plans { grid-template-columns: 1fr; gap: 32px; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .sec-head p { max-width: none; }
  .datagrid, .rights { grid-template-columns: 1fr; }
  .sla-row small { text-align: left; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; }
  .section { padding-block: 56px; }
  .hero .wrap { padding-block: 48px 56px; }
  .hero h1 { letter-spacing: -1.2px; }
  .hero__sub { font-size: 16px; }
  .hero__actions .btn { width: 100%; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr; }
  .strip__item, .strip__item:last-child { min-height: 200px; }
  .cta__actions { width: 100%; }
  .cta .wrap { padding-block: 48px; }
  .sla-row { gap: 10px; }
  .sla-row b { width: auto; }
  .header-cta span { display: none; }
  .header-cta { padding: 0 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---------- süti-sáv ---------- */
.suti {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--ink);
  border-top: 1px solid var(--navy-line);
  box-shadow: 0 -14px 40px rgba(10, 26, 47, .28);
  transform: translateY(100%);
  transition: transform .26s ease;
}
.suti.is-open { transform: translateY(0); }
.suti__inner {
  max-width: 1440px; margin: 0 auto;
  padding: 24px var(--pad);
  display: flex; align-items: center; gap: 40px;
}
.suti__text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.suti__title {
  font-family: "Archivo", sans-serif; font-size: 16px; font-weight: 700;
  letter-spacing: -.2px; color: var(--white);
}
.suti__text p { font-size: 14px; line-height: 1.6; color: var(--on-dark-soft); max-width: 78ch; }
.suti__text em { font-style: normal; color: var(--on-dark); }
.suti__text a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.suti__text a:hover { color: var(--accent); }
.suti__state { color: var(--dim); }

.suti__actions { display: flex; gap: 12px; flex-shrink: 0; }
/* A két gomb mérete és súlya szándékosan azonos: az elutasítás nem lehet
   nehezebben elérhető, mint az elfogadás. */
.suti__btn {
  min-height: 48px; padding: 0 24px; border-radius: 6px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  border: 1px solid transparent; cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.suti__btn--yes { background: var(--white); color: var(--ink); border-color: var(--white); }
.suti__btn--yes:hover { background: #E8EDF5; }
.suti__btn--no { background: #1B3A66; color: var(--white); border-color: #3A5A86; }
.suti__btn--no:hover { background: #22497F; }
.suti__btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* a láblécben a sávot újranyitó gomb – a linkekkel azonos megjelenés */
.foot__col button.aslink {
  background: none; border: 0; padding: 0; text-align: left;
  font-family: inherit; font-size: 14px; color: var(--on-dark); cursor: pointer;
}
.foot__col button.aslink:hover { color: var(--white); text-decoration: underline; }
.foot__col button.aslink:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (max-width: 860px) {
  .suti__inner { flex-direction: column; align-items: stretch; gap: 18px; padding-block: 20px; }
  .suti__actions { flex-direction: column; }
  .suti__btn { width: 100%; }
}

@media (max-width: 640px) {
  /* mobilon a sáv ne foglaljon fél képernyőt: a kiegészítő mondat a
     tájékoztatóban amúgy is benne van */
  .suti__more { display: none; }
  .suti__inner { gap: 14px; padding-block: 18px; }
  .suti__text { gap: 6px; }
  .suti__text p { font-size: 13.5px; }
  .suti__actions { gap: 10px; }
  .suti__btn { min-height: 46px; font-size: 14px; }
}

/* ---------- ajánlatkérő űrlap ---------- */
.lf-wrap { display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr); gap: 72px; align-items: start; }
.lf-intro { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 112px; }
.lf-intro .lead { margin-top: 4px; }
.lf-intro .lead a { font-weight: 600; white-space: nowrap; }
.lf-points { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.lf-points li { position: relative; padding-left: 26px; font-size: 15px; color: var(--body); }
.lf-points li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}

.lf {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; display: flex; flex-direction: column; gap: 22px;
}
.lf-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 20px; }
.lf-field { display: flex; flex-direction: column; gap: 7px; }
.lf-field--full { grid-column: 1 / -1; }
.lf-field label { font-size: 14px; font-weight: 600; color: var(--body); }
.lf-req { color: var(--accent); }
.lf input, .lf select, .lf textarea {
  font-family: inherit; font-size: 15px; color: var(--ink);
  min-height: 48px; padding: 11px 14px;
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.lf textarea { min-height: 112px; resize: vertical; line-height: 1.55; }
.lf input::placeholder, .lf textarea::placeholder { color: var(--dim); }
.lf input:hover, .lf select:hover, .lf textarea:hover { border-color: #C3CEDE; }
.lf input:focus, .lf select:focus, .lf textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(46, 134, 255, .16);
}
.lf input:user-invalid, .lf textarea:user-invalid { border-color: var(--warn); }

/* mézesbödön: a szemnek és a felolvasónak nincs ott, a robotnak igen */
.lf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.lf-captcha { max-width: 260px; }
.lf-captcha b { font-variant-numeric: tabular-nums; color: var(--ink); }

.lf-consent { display: flex; align-items: flex-start; gap: 12px; }
.lf-consent input { width: 20px; height: 20px; min-height: 0; flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); }
.lf-consent label { font-size: 14px; line-height: 1.55; color: var(--muted); }

.lf-send { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.lf-send .btn { min-height: 54px; }
.lf-note { font-size: 13px; color: var(--dim); }

.lf-msg { font-size: 15px; line-height: 1.55; padding: 14px 16px; border-radius: 6px; }
.lf-msg--wait { background: var(--paper); color: var(--muted); }
.lf-msg--ok   { background: #EAF3FF; color: #10366B; border: 1px solid #BBD6FF; font-weight: 600; }
.lf-msg--hiba { background: #FDF1E4; color: #8A4B12; border: 1px solid #F3D3AE; }

@media (max-width: 1180px) {
  .lf-wrap { grid-template-columns: 1fr; gap: 40px; }
  .lf-intro { position: static; max-width: 620px; }
}

@media (max-width: 640px) {
  .lf { padding: 22px 18px; }
  .lf-grid { grid-template-columns: 1fr; }
  .lf-captcha { max-width: none; }
  .lf-send { flex-direction: column; align-items: stretch; gap: 12px; }
  .lf-send .btn { width: 100%; }
}
