/* A teljes webhelyen megosztott alapok, komponensek, fejléc és lábléc. */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --background: #fbfaff;
  --surface: #fff;
  --surface-muted: #eee7e1;
  --ink: #17131f;
  --ink-soft: #625b68;
  --purple: #5638d4;
  --purple-dark: #36116f;
  --purple-light: #eee7ff;
  --accent: var(--purple);
  --accent-dark: #3a1478;
  --gold: #f1c43b;
  --gold-dark: #9b7100;
  --paper: var(--background);
  --paper-2: var(--surface-muted);
  --white: #fff;
  --line: rgba(30, 22, 37, .13);
  --green: #4f8d28;
  --green-soft: #edf6e7;
  --amber: #8a631f;
  --amber-soft: #f7eed7;
  --danger: #9b3333;
  --danger-soft: #f8e6e4;
  --surface-dark: #26105f;
  --surface-dark-deep: #160936;
  --surface-dark-muted: rgba(255,255,255,.08);
  --text-on-dark: #fff;
  --text-on-dark-muted: rgba(255,255,255,.76);
  --control-height: 50px;
  --button-height: 50px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 80px;
  --space-9: 96px;
  --section-space: clamp(64px, 7vw, 96px);
  --shadow: 0 24px 70px rgba(44, 27, 58, .14);
  --shadow-sm: 0 10px 28px rgba(44, 27, 58, .10);
  --shadow-card: 0 12px 32px rgba(44, 27, 58, .08);
  --radius-control: 10px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --transition-ui: 180ms ease;
  --container: 1240px;
  --content-narrow: 760px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; text-rendering: optimizeLegibility; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; }
h1 { font-family: "Montserrat", Inter, ui-sans-serif, system-ui, sans-serif; }
h2 { font-size: 36px; font-weight: 700; line-height: 1.12; letter-spacing: -.04em; }
h3 { line-height: 1.25; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 12px 16px; border-radius: 10px; background: var(--ink); color: #fff; text-decoration: none; }
.skip-link:focus { top: 16px; }

.button { display: inline-flex; min-height: var(--button-height); align-items: center; justify-content: center; gap: 10px; padding: 12px 21px; border: 1px solid transparent; border-radius: var(--radius-control); cursor: pointer; font-weight: 750; line-height: 1.25; text-align: center; text-decoration: none; box-shadow: none; transition: transform var(--transition-ui), box-shadow var(--transition-ui), background var(--transition-ui), border-color var(--transition-ui), color var(--transition-ui); }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--purple), #6d31de); color: #fff; box-shadow: 0 8px 18px rgba(91, 40, 201, .27); }
.button-primary:hover { background: linear-gradient(135deg, #4d20b2, #6429d5); box-shadow: 0 12px 25px rgba(91, 40, 201, .34); }
.button-secondary { border-color: rgba(30, 22, 37, .12); background: rgba(255, 255, 255, .75); color: var(--ink); box-shadow: 0 7px 16px rgba(30, 22, 37, .07); }
.button-secondary:hover { background: #fff; border-color: rgba(91, 40, 201, .25); }
.button-light { background: #fff; color: var(--purple-dark); }
.button-primary-on-dark,
.button-gold { background: linear-gradient(135deg, #f4ce4f, var(--gold)); color: #2e2200; box-shadow: 0 9px 20px rgba(184, 132, 0, .28); }
.button-primary-on-dark:hover,
.button-gold:hover { background: linear-gradient(135deg, #f7d760, #e9b91f); color: #2e2200; box-shadow: 0 12px 25px rgba(184, 132, 0, .34); }
.button-secondary-on-dark { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; box-shadow: none; }
.button-secondary-on-dark:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.14); color: #fff; }
.button-ghost { min-height: 44px; padding-inline: 8px; background: transparent; color: var(--purple); }
.button-ghost:hover { background: var(--purple-light); }
.button:disabled,
.button[aria-disabled="true"],
.button-disabled { cursor: not-allowed; opacity: .58; box-shadow: none; transform: none; }
.button-full { width: 100%; }
.button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid rgba(91, 40, 201, .25); outline-offset: 3px; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px, 1px, 1px, 1px) !important; white-space: nowrap !important; }

/* Megosztott layout-, kártya- és formrendszer. */
.section { padding-block: var(--section-space); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: var(--space-6); margin-bottom: var(--space-6); }
.section-heading > p,
.domain-head p,
.service-card p,
.domain-card > p,
.domain-mini-card span,
.info-cards p,
.strategy-cards p { color: var(--ink-soft); }

.service-card,
.domain-card,
.domain-mini-card,
.info-cards article,
.strategy-cards article,
.proof-card,
.optimization-cards article,
.managed-features article {
  border-color: var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.hero-panel,
.benefit-card { border-radius: var(--radius-lg); }
.form-card { border-radius: var(--radius); }
.notice { border-radius: var(--radius-sm); }
.service-card,
.domain-card,
.domain-mini-card,
.info-cards article,
.strategy-cards article { background-color: var(--surface); }
.domain-card,
.domain-mini-card,
.proof-card { transition: transform var(--transition-ui), box-shadow var(--transition-ui), border-color var(--transition-ui); }
.domain-card:hover,
.domain-mini-card:hover,
.proof-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }

.input {
  width: 100%;
  min-height: var(--control-height);
  padding: 12px 14px;
  border-radius: var(--radius-control);
  transition: border-color var(--transition-ui), box-shadow var(--transition-ui), background var(--transition-ui);
}
.input { border: 1px solid var(--line); background: var(--surface); color: var(--ink); }
.input:hover { border-color: rgba(86,56,212,.36); }
textarea.input { min-height: 130px; resize: vertical; }
.field { gap: var(--space-1); }
.field label { font-size: 14px; font-weight: 700; }
.input::placeholder { color: #817986; opacity: 1; }
.input:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(86,56,212,.11); outline: 0; }
.input[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(155,51,51,.10); }
.field-error,
.form-error { color: var(--danger); font-size: 13px; }
.form-note,
.form-status { font-size: 13px; line-height: 1.5; }
.checkbox { min-height: 28px; }
.checkbox input { width: 20px; height: 20px; min-height: 20px; accent-color: var(--purple); }

.accordion { border: 0; }
.accordion details {
  margin-bottom: var(--space-1);
  overflow: hidden;
  border: 1px solid rgba(86,56,212,.10);
  border-radius: var(--radius-sm);
  background: #f7f4ff;
}
.accordion summary { position: relative; min-height: 56px; padding: 17px 52px 17px 18px; cursor: pointer; font-size: 18px; font-weight: 750; line-height: 1.45; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { position: absolute; right: 18px; top: 50%; color: var(--purple); content: "+"; font-size: 28px; font-weight: 500; line-height: 1; transform: translateY(-50%); }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { max-width: 760px; margin: 0; padding: 0 52px 20px 18px; color: var(--ink-soft); font-size: 16px; }
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .13em; }

.site-subpage { background: var(--background); color: var(--ink); }
.site-subpage::before { display: none; }
.site-subpage .breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 0 0 34px; color: #766c82; font-size: 14px; }
.site-subpage .breadcrumbs a { color: var(--purple); font-weight: 750; text-decoration: none; }
.site-subpage .breadcrumbs a:hover { color: var(--purple-dark); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  border-bottom: 1px solid transparent;
  background: rgba(253, 251, 248, .94);
  box-shadow: none;
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-color: rgba(30, 22, 37, .1); box-shadow: 0 8px 30px rgba(42, 25, 49, .07); }
.rename-banner { background: #3a1478; color: #fff; font-size: 13px; }
.rename-banner[hidden] { display: none; }
.rename-banner__inner { position: relative; display: flex; min-height: 34px; align-items: center; justify-content: center; gap: 18px; padding-block: 5px; }
.rename-banner p { margin: 0; font-size: inherit; line-height: 1.45; text-align: center; }
.rename-banner button { display: grid; width: 30px; height: 30px; flex: 0 0 30px; padding: 0; border: 0; place-items: center; background: transparent; color: #fff; cursor: pointer; font: inherit; font-size: 22px; line-height: 1; opacity: .72; transition: opacity var(--transition-ui), background var(--transition-ui); }
.rename-banner button:hover { opacity: 1; }
.rename-banner button:focus-visible { border-radius: 5px; outline: 2px solid #fff; outline-offset: -3px; opacity: 1; }
.site-header .header-inner { position: relative; display: flex; min-height: 72px; align-items: center; gap: 24px; }
.site-header .brand, .site-footer .brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.site-header .brand-mark, .site-footer .brand-mark {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #5b28c9;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.09em;
}
.site-header .brand-mark::before, .site-footer .brand-mark::before { position: absolute; inset: 3px; border: 1px solid rgba(86, 56, 212, .22); border-radius: 12px 5px 12px 5px; content: ""; transform: rotate(-8deg); }
.site-header .brand-mark > span, .site-footer .brand-mark > span { position: absolute; right: 0; top: -1px; color: #f5b91f; font-family: inherit; font-size: 24px; }
.site-header .brand-copy, .site-footer .brand-copy { display: grid; line-height: 1; }
.site-header .brand-copy strong, .site-footer .brand-copy strong { display: block; font-size: 17px; font-weight: 800; line-height: 1.1; letter-spacing: -.035em; text-transform: none; }
.site-header .brand-copy small, .site-footer .brand-copy small { display: block; margin-top: 4px; font-size: 11px; font-weight: 400; line-height: 1.35; letter-spacing: 0; text-transform: none; }
.site-header .brand-copy small { color: #625b68; }
.site-header .main-nav { position: static; display: flex; align-items: center; justify-content: center; gap: clamp(12px, 1.5vw, 24px); margin-left: auto; padding: 0; border: 0; background: transparent; box-shadow: none; flex-direction: row; }
.site-header .main-nav a { position: relative; display: inline; padding: 0; color: #25212f; font-size: 16px; font-weight: 650; line-height: 1.4; text-decoration: none; white-space: nowrap; }
.site-header .main-nav a::after { position: absolute; left: 0; right: 100%; bottom: -7px; display: block; height: 2px; background: #5b28c9; content: ""; transition: right .18s ease; }
.site-header .main-nav a:hover::after, .site-header .main-nav a:focus-visible::after { right: 0; }
.site-header .menu-toggle { display: none; width: 46px; height: 42px; margin-left: auto; padding: 10px; border: 1px solid rgba(30, 22, 37, .1); border-radius: 12px; background: #fff; cursor: pointer; }
.site-header .menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: #1e1625; }
.site-header .header-cta { flex: 0 0 auto; min-height: 42px; padding: 11px 17px; border: 0; border-radius: 6px; background: linear-gradient(135deg, #4b2abb, #6548df); color: #fff; box-shadow: 0 8px 18px rgba(91, 40, 201, .22); font-size: 16px; font-weight: 700; text-decoration: none; }

.site-footer { padding: 42px 0 20px; background: #0c0b1c; color: #fff; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.6; }
.site-footer .footer-grid { display: grid; gap: 38px; grid-template-columns: 1.35fr repeat(4, 1fr); }
.site-footer .footer-grid > div { display: flex; align-items: flex-start; flex-direction: column; gap: 0; }
.site-footer .brand-copy small { color: rgba(255,255,255,.64); }
.site-footer .footer-grid p { max-width: 470px; margin: 20px 0 0; color: rgba(255,255,255,.68); font: 400 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.site-footer .footer-grid > div > strong { display: block; margin: 0 0 17px; color: #fff; font: 700 16px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: 0; text-transform: none; }
.site-footer .footer-grid > div > a:not(.brand) { display: block; margin: 6px 0; padding: 0; color: rgba(255,255,255,.74); font: 400 16px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: 0; text-decoration: none; text-transform: none; }
.site-footer .footer-grid > div > a:hover { color: #fff; }
.site-footer .footer-bottom { display: flex; align-items: initial; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.5; }
.footer-cookie-settings { margin: 0; padding: 0; border: 0; background: transparent; color: rgba(255,255,255,.68); cursor: pointer; font: inherit; font-size: 16px; line-height: 1.6; text-align: left; }
.footer-cookie-settings:hover { color: #fff; }
.footer-cookie-settings:focus-visible { border-radius: 3px; outline: 2px solid var(--gold); outline-offset: 3px; }

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 2000;
  display: grid;
  width: min(calc(100% - 32px), 1120px);
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(86,56,212,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.98);
  box-shadow: 0 24px 70px rgba(24,10,54,.24);
  grid-template-columns: minmax(0,1fr) auto;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__content { display: grid; align-items: start; gap: 15px; grid-template-columns: 34px minmax(0,1fr); }
.cookie-banner__icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; background: var(--purple-light); color: var(--purple); font-size: 13px; }
.cookie-banner h2 { margin: 0 0 5px; font-size: 21px; letter-spacing: -.025em; }
.cookie-banner p { max-width: 720px; margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.cookie-banner a { display: inline-block; margin-top: 5px; color: var(--purple); font-size: 13px; font-weight: 750; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.cookie-banner .button { min-height: 44px; padding: 10px 15px; font-size: 14px; }

.cookie-dialog { width: min(calc(100% - 32px), 700px); max-height: calc(100vh - 40px); padding: 0; overflow: auto; border: 0; border-radius: var(--radius-lg); background: transparent; color: var(--ink); box-shadow: var(--shadow); }
.cookie-dialog::backdrop { background: rgba(17,8,36,.62); backdrop-filter: blur(4px); }
.cookie-dialog__panel { padding: clamp(24px,5vw,40px); background: #fff; }
.cookie-dialog__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.cookie-dialog__header .eyebrow { margin-bottom: 8px; color: var(--purple); text-transform: uppercase; }
.cookie-dialog__header h2 { margin: 0; font-size: clamp(30px,5vw,42px); }
.cookie-dialog__close { display: grid; width: 42px; height: 42px; flex: 0 0 42px; padding: 0; border: 1px solid var(--line); place-items: center; border-radius: 50%; background: #fff; color: var(--ink); cursor: pointer; font-size: 26px; line-height: 1; }
.cookie-dialog__panel > p { margin: 18px 0 24px; color: var(--ink-soft); }
.cookie-option { position: relative; display: grid; gap: 8px; margin-top: 12px; padding: 20px 68px 20px 20px; border: 1px solid #ded2f6; border-radius: var(--radius-sm); background: #faf8ff; }
.cookie-option > div { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px; }
.cookie-option strong { font-size: 17px; }
.cookie-option span { padding: 3px 7px; border-radius: 5px; background: var(--purple-light); color: var(--purple); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.cookie-option p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.cookie-option input { position: absolute; right: 20px; top: 22px; width: 24px; height: 24px; accent-color: var(--purple); }
.cookie-dialog__actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 26px; }

@media (max-width: 1100px) {
  .site-header .header-inner { min-height: 72px; }
  .site-header .menu-toggle { display: block; }
  .site-header .main-nav { position: absolute; left: 18px; right: 18px; top: calc(100% + 8px); z-index: 10; display: none; align-items: stretch; padding: 16px; border: 1px solid rgba(30, 22, 37, .1); border-radius: 16px; background: #fff; box-shadow: 0 10px 35px rgba(43, 29, 49, .1); flex-direction: column; }
  .site-header .main-nav.is-open { display: flex; }
  .site-header .main-nav a, .site-header .main-nav a:not(.nav-cta) { display: block; padding: 8px; }
  .site-header .main-nav a::after { display: none; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --section-space: 56px; }
  .site-subpage .breadcrumbs { margin-bottom: 26px; }
  .site-header .brand-copy small { display: none; }
  .site-header .brand-mark, .site-footer .brand-mark { width: 40px; height: 40px; font-size: 33px; }
  .site-header .header-cta { display: none; }
  .rename-banner { font-size: 12px; }
  .rename-banner__inner { align-items: flex-start; gap: 8px; padding-block: 8px; }
  .rename-banner p { text-align: left; }
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .site-footer .footer-grid > div:first-child { grid-column: auto; }
  .site-footer .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cookie-banner { bottom: 8px; width: calc(100% - 16px); max-height: calc(100vh - 16px); gap: 16px; padding: 18px; overflow: auto; grid-template-columns: 1fr; }
  .cookie-banner__actions { display: grid; justify-content: stretch; grid-template-columns: 1fr; }
  .cookie-banner .button { width: 100%; }
  .cookie-dialog { width: calc(100% - 16px); max-height: calc(100vh - 16px); }
  .cookie-dialog__panel { padding: 22px 18px; }
  .cookie-option { padding: 18px 58px 18px 16px; }
  .cookie-option input { right: 16px; top: 19px; }
  .cookie-dialog__actions { align-items: stretch; flex-direction: column-reverse; }
  .cookie-dialog__actions .button { width: 100%; }
  .button { max-width: 100%; }
  .accordion summary { padding-right: 46px; }
  .accordion details p { padding-right: 18px; }
  .oversight-benefits li { white-space: normal; }
}

@media (min-width: 841px) {
  h2 { font-size: 52px; }
}
