@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&display=swap');

:root {
  --bg:#f4ecdf;
  --paper:#fff8ed;
  --paper-strong:#fffdf8;
  --brown:#2b1e18;
  --brown2:#4c3024;
  --muted:#786b62;
  --teal:#2fb5ad;
  --teal2:#188a84;
  --navy:#101426;
  --cream:#fff3d7;
  --action:#ff2b1f;
  --action2:#b71f16;
  --yellow:#e0a600;
  --green:#22b66b;
  --progress-danger:#E35D4F;
  --progress-warning:#F59E0B;
  --progress-gold:#FACC15;
  --progress-lime:#84CC16;
  --progress-success:#22C55E;
  --progress-current:#E35D4F;
  --line:#e5d8c7;
  --shadow:10px 12px 0 rgba(79,57,24,.24),0 22px 50px rgba(43,30,24,.1);
  --radius:28px;
}

/* Audit phase 4: leaner Próba-Spot intro and clearer workshop flow. */
.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.value-showcase.compact-offer {
  align-items:center;
  grid-template-columns:minmax(0,1fr) minmax(280px,420px);
}

.value-showcase.compact-offer .offer-label {
  display:inline-flex;
  margin:0 0 14px;
  padding:7px 12px;
  border:1px solid rgba(201,154,62,.28);
  border-radius:999px;
  color:#9b5e1b;
  background:rgba(255,249,231,.72);
  font-size:12px;
  font-weight:950;
  letter-spacing:.2em;
}

.value-showcase.compact-offer .green-price {
  display:block;
  margin-top:6px;
  font-size:clamp(48px,8vw,86px);
  line-height:.9;
}

.almost-ready {
  margin:16px 0 8px;
  color:var(--brown);
  font-weight:950;
}

.down-arrow.friendly {
  width:58px;
  height:58px;
  margin-top:8px;
  border-radius:999px;
  background:linear-gradient(135deg,#f7d16b,#d99b22);
  color:#271706;
  box-shadow:0 18px 34px rgba(155,94,27,.18);
  animation:softArrowPulse 2.4s ease-in-out infinite;
}

.value-summary-card,
.precheckout-details {
  border:1px solid rgba(91,67,42,.14);
  border-radius:24px;
  background:rgba(255,252,242,.76);
  box-shadow:0 18px 40px rgba(78,55,31,.07);
}

.value-summary-card summary,
.precheckout-details summary {
  padding:18px 22px;
  color:var(--navy);
  font-weight:950;
  cursor:pointer;
}

.value-summary-card .value-lines,
.precheckout-detail-grid {
  padding:0 22px 22px;
}

.precheckout-details {
  width:100%;
}

.precheckout-detail-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.precheckout-detail-grid article {
  padding:18px;
  border-radius:18px;
  background:#fffaf0;
}

.hangbrief-step-count,
.hangbrief-microcopy {
  text-align:center;
}

.brief-step[data-step="1"].is-active textarea {
  border-color:rgba(177,65,55,.36);
  box-shadow:0 0 0 4px rgba(177,65,55,.06), 0 0 0 0 rgba(177,65,55,.12);
  animation:softInputFocus 2.8s ease-in-out infinite;
}

.brief-step::after {
  content:"↓";
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  margin:18px auto 0;
  border-radius:999px;
  color:#9b5e1b;
  background:rgba(242,198,109,.22);
  animation:softArrowPulse 2.4s ease-in-out infinite;
}

.brief-step[data-step="5"]::after {
  display:none;
}

.message-confirm,
.brief-actions .pill:not(.outline) {
  animation:softCtaBreath 2.8s ease-in-out infinite;
}

.choice-card {
  position:relative;
  overflow:hidden;
}

.choice-card::before {
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(120deg,transparent,rgba(242,198,109,.16),transparent);
  transform:translateX(-120%);
  transition:transform .55s ease;
  pointer-events:none;
}

.choice-card:hover::before,
.choice-card:focus-visible::before {
  transform:translateX(120%);
}

@keyframes softInputFocus {
  0%, 100% { box-shadow:0 0 0 4px rgba(177,65,55,.06), 0 0 0 0 rgba(177,65,55,.12); }
  50% { box-shadow:0 0 0 4px rgba(177,65,55,.08), 0 0 0 7px rgba(177,65,55,.055); }
}

@keyframes softCtaBreath {
  0%, 100% { transform:translateY(0); box-shadow:0 12px 24px rgba(155,94,27,.16); }
  50% { transform:translateY(-1px); box-shadow:0 18px 34px rgba(155,94,27,.22); }
}

@keyframes softArrowPulse {
  0%, 100% { transform:translateY(0); opacity:.92; }
  50% { transform:translateY(5px); opacity:1; }
}

@media (max-width:900px) {
  .value-showcase.compact-offer {
    grid-template-columns:1fr;
  }

  .precheckout-detail-grid {
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:640px) {
  .value-showcase.compact-offer {
    text-align:center;
  }

  .page-hero h1 {
    font-size:clamp(52px,16vw,74px);
    line-height:.92;
    overflow-wrap:normal;
    word-break:normal;
  }

  .simple-nav {
    overflow:hidden;
  }

  .simple-nav .mobile-voice-title {
    max-width:110px;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .down-arrow.friendly {
    margin-left:auto;
    margin-right:auto;
  }

  .precheckout-detail-grid {
    grid-template-columns:1fr;
  }

  .hangbrief-step-count {
    width:100%;
    padding:12px 16px;
    border-radius:18px;
    background:rgba(255,250,239,.86);
  }

  .hangbrief-microcopy {
    max-width:100%;
  }

  .message-confirm {
    width:100%;
  }
}

/* Hangemberműhely UX hotfix: one-click decisions, micro-sound controls and clearer admin readiness. */
.hangbrief-top-actions .sound-control {
  appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:8px 13px;
  border:1px solid rgba(224,166,0,.28);
  border-radius:999px;
  background:linear-gradient(145deg,rgba(255,253,248,.92),rgba(255,240,195,.82));
  color:var(--brown);
  font:inherit;
  font-size:12px;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(58,36,18,.08);
  transition:.18s transform,.18s box-shadow,.18s background,.18s border-color;
}

.hangbrief-top-actions .sound-control:hover,
.hangbrief-top-actions .sound-control:focus-visible {
  transform:translateY(-1px);
  border-color:rgba(47,181,173,.42);
  background:linear-gradient(145deg,#fffdf8,#e9fbf8);
  box-shadow:0 14px 26px rgba(47,181,173,.12);
  outline:0;
}

.hangbrief-top-actions .sound-control.is-off {
  color:#8d7668;
  background:rgba(255,253,248,.55);
  border-color:rgba(91,67,42,.16);
  box-shadow:none;
}

.choice-card.is-selected {
  border-color:rgba(224,166,0,.9) !important;
  background:
    radial-gradient(circle at 92% 14%,rgba(224,166,0,.22),transparent 6rem),
    linear-gradient(145deg,#fffdf8,#fff0c8) !important;
  box-shadow:0 20px 44px rgba(155,94,27,.18), inset 0 0 0 2px rgba(224,166,0,.24) !important;
}

.choice-card.is-selected::after {
  background:linear-gradient(135deg,#d69a25,#f0b23d) !important;
  color:#2b1e18 !important;
  box-shadow:0 8px 18px rgba(155,94,27,.18);
}

.admin-readiness {
  display:inline-flex;
  width:fit-content;
  max-width:100%;
  margin:16px 0 0;
  padding:11px 15px;
  border:1px solid rgba(178,65,55,.24);
  border-radius:999px;
  background:rgba(255,244,239,.82);
  color:#9b382f;
  font-size:14px;
  font-weight:950;
  line-height:1.25;
}

.admin-readiness.is-complete {
  border-color:rgba(31,143,92,.26);
  background:rgba(235,250,241,.86);
  color:#1f8f5c;
}

.checkout-admin-stage .admin-checkitem {
  position:relative;
  box-sizing:border-box;
  border:1px solid rgba(91,67,42,.18);
  border-radius:18px;
  background:rgba(255,250,240,.72);
  transition:.18s border-color,.18s background,.18s box-shadow,.18s transform;
}

.checkout-admin-stage .field.admin-checkitem {
  padding:14px 16px;
}

.checkout-admin-stage .field.admin-checkitem input {
  margin-top:8px;
}

.checkout-admin-stage .admin-checkitem.is-complete {
  border-color:rgba(31,143,92,.28);
  background:rgba(235,250,241,.78);
}

.checkout-admin-stage .admin-checkitem.is-incomplete {
  border-color:rgba(178,65,55,.34);
  border-left:4px solid #b24137;
  background:rgba(255,244,239,.86);
  box-shadow:0 14px 30px rgba(178,65,55,.08);
}

.checkout-admin-stage .admin-checkitem.is-incomplete input {
  border-color:rgba(178,65,55,.38);
  background:#fffaf7;
}

.admin-checkitem__status {
  display:block;
  margin-top:9px;
  color:#7f6a5f;
  font-size:12px;
  font-weight:900;
  line-height:1.25;
}

.admin-checkitem.is-complete .admin-checkitem__status {
  color:#1f8f5c;
}

.admin-checkitem.is-incomplete .admin-checkitem__status {
  color:#b24137;
  font-weight:950;
}

.payment-legal .admin-checkitem {
  display:grid;
  grid-template-columns:auto 1fr;
  gap:8px 12px;
  align-items:start;
  padding:14px 16px;
}

.payment-legal .admin-checkitem input {
  margin-top:2px;
}

.payment-legal .admin-checkitem__status {
  grid-column:2;
  margin-top:0;
}

[data-brief-submit] span {
  transition:.18s opacity;
}

form.is-payment-loading [data-brief-submit] {
  filter:saturate(1.03);
  cursor:wait;
  animation:paymentButtonBreathe 1s ease-in-out infinite alternate;
}

@keyframes paymentButtonBreathe {
  from { box-shadow:0 18px 30px rgba(155,94,27,.22),0 8px 0 #8d5118; }
  to { box-shadow:0 24px 42px rgba(155,94,27,.3),0 9px 0 #7c4513; }
}

@media (max-width:767px) {
  .admin-readiness {
    display:flex;
    width:100%;
    justify-content:center;
    text-align:center;
    border-radius:18px;
  }

  .checkout-admin-stage .field.admin-checkitem {
    padding:13px 14px;
  }
}

* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  background:radial-gradient(circle at top left,#fff9ed 0,var(--cream) 48%,#f2e4c8 100%);
  color:var(--brown);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  line-height:1.55;
}
a { color:inherit; text-decoration:none; }
img { max-width:100%; display:block; }
.wrap { width:min(1120px,92vw); margin:0 auto; }

.simple-header {
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,250,241,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(43,30,24,.08);
}
.simple-nav {
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand { font-size:22px; font-weight:950; letter-spacing:-.04em; }
.brand span { color:var(--teal); }
.nav-links { display:flex; gap:16px; align-items:center; flex-wrap:wrap; color:var(--muted); font-weight:850; font-size:14px; }
.nav-links a:hover { color:var(--brown); }

.pill {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:999px;
  padding:14px 22px;
  background:var(--teal);
  color:#fff;
  font:inherit;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 14px 32px rgba(47,181,173,.25);
  transition:.2s transform,.2s box-shadow,.2s background;
}
.pill:hover { transform:translateY(-3px); background:var(--teal2); box-shadow:0 22px 42px rgba(47,181,173,.32); }
.pill.hot { background:linear-gradient(135deg,var(--action),#ff3d2f); box-shadow:0 20px 34px rgba(255,43,31,.3),0 9px 0 var(--action2); }
.pill.hot:hover { background:linear-gradient(135deg,#ff4b3f,var(--action)); box-shadow:0 28px 48px rgba(255,43,31,.38),0 10px 0 var(--action2); transform:translateY(-4px) scale(1.035); }
.pill.gold { background:var(--yellow); color:var(--brown); box-shadow:0 16px 34px rgba(255,209,102,.28); }
.pill.outline { background:transparent; color:var(--brown); border:1px solid rgba(43,30,24,.16); box-shadow:none; }
.pill[disabled] { opacity:.62; cursor:not-allowed; transform:none; }
.cta-stack { display:inline-flex; flex-direction:column; gap:2px; line-height:1.05; white-space:normal; text-align:center; }
.cta-stack small { font-size:.84em; opacity:.92; letter-spacing:.03em; }
.price-highlight { color:var(--yellow); font-size:1.12em; white-space:nowrap; text-shadow:0 3px 0 rgba(43,30,24,.18); }

.page-hero { padding:74px 0 42px; }
.hero-panel {
  background:linear-gradient(135deg,#101426,#171d35);
  color:#fff7eb;
  border-radius:42px;
  padding:54px;
  box-shadow:12px 14px 0 rgba(32,27,15,.26),0 26px 60px rgba(16,20,38,.18);
}
.kicker {
  margin:0 0 10px;
  color:rgba(255,247,235,.72);
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:13px;
  font-weight:950;
}
.hero-panel h1, .content-block h1, .content-block h2 {
  margin:0;
  line-height:1;
  letter-spacing:-.065em;
  font-weight:950;
}
.hero-panel h1 { font-size:clamp(42px,6vw,76px); max-width:900px; }
.hero-panel p { max-width:780px; color:rgba(255,247,235,.84); font-size:21px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:26px; }

main section { padding:42px 0; }
.content-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:22px; align-items:start; }
.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.cards.two { grid-template-columns:repeat(2,1fr); }
.card, .content-block, .checkout-box, .form-card {
  background:rgba(255,250,241,.86);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:26px;
}
.card h3, .checkout-box h2, .form-card h2 { margin:0 0 10px; font-size:26px; line-height:1.05; letter-spacing:-.04em; }
.card p, .content-block p, .checkout-box p, .form-card p, .legal-page p, .legal-page li { color:var(--muted); font-size:18px; }
.card ul, .checkout-box ul, .content-block ul, .content-block ol, .legal-page ul { padding-left:20px; color:var(--muted); }
.card li, .checkout-box li, .content-block li { margin:8px 0; }
.price-big { font-size:52px; font-weight:950; letter-spacing:-.06em; margin:6px 0; }
.note { color:var(--muted); font-size:14px; font-weight:800; }
.hand-note { font-family:'Caveat','Comic Sans MS',cursive; color:var(--yellow); font-size:34px; line-height:1; }

.summary-table { display:grid; gap:10px; margin:20px 0; }
.summary-row { display:flex; justify-content:space-between; gap:16px; padding:12px 0; border-bottom:1px solid var(--line); }
.summary-row strong { font-weight:950; }
.workshop-handwrite { padding:20px 0 18px; text-align:left; }
.workshop-handwrite p {
  margin:0 auto;
  max-width:780px;
  font-family:'Caveat','Comic Sans MS',cursive;
  font-size:clamp(34px,5vw,62px);
  line-height:.94;
  color:#a7661e;
  text-shadow:0 10px 28px rgba(43,30,24,.12);
}
.value-showcase {
  display:grid;
  grid-template-columns:1fr minmax(260px,.42fr);
  gap:28px;
  align-items:center;
  background:rgba(255,253,248,.94);
  border:2px solid rgba(224,166,0,.24);
}
.value-showcase h2 { font-size:clamp(34px,4.4vw,58px); line-height:1.02; letter-spacing:-.045em; }
.value-lines { display:grid; gap:12px; margin-top:22px; }
.value-lines div {
  position:relative;
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:12px 0 12px 42px;
  border-bottom:1px solid var(--line);
  color:var(--muted);
  font-weight:850;
}
.value-lines div:before {
  content:"✓";
  position:absolute;
  left:0;
  top:12px;
  display:grid;
  place-items:center;
  width:25px;
  height:25px;
  border-radius:50%;
  background:var(--yellow);
  color:#fffdf8;
  font-size:15px;
  font-weight:950;
  box-shadow:0 8px 16px rgba(224,166,0,.22);
}
.value-lines strong { color:#a73d2b; text-decoration:line-through; text-decoration-thickness:2px; }
.value-badge {
  display:grid;
  justify-items:center;
  gap:10px;
  padding:26px;
  border-radius:28px;
  background:linear-gradient(160deg,#fff4bf,#ffeaa4);
  color:var(--navy);
  text-align:center;
  border:2px solid rgba(224,166,0,.35);
  box-shadow:0 18px 42px rgba(224,166,0,.16);
}
.big-check {
  display:grid;
  place-items:center;
  width:74px;
  height:74px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  font-size:42px;
  font-weight:950;
  box-shadow:0 18px 32px rgba(47,181,173,.28);
}
.value-badge p { margin:0; color:var(--navy); font-size:24px; font-weight:950; line-height:1.05; }
.old-total { color:#ff9b86; font-weight:950; text-decoration:line-through; }
.green-price { color:var(--green); font-size:clamp(46px,5vw,68px); line-height:1; letter-spacing:-.06em; }
.value-badge em {
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  font-style:normal;
  font-weight:950;
}
.checkout-provider {
  display:grid;
  gap:12px;
  margin-top:18px;
  padding:18px;
  border-radius:22px;
  background:#fffdf8;
  border:1px dashed rgba(43,30,24,.22);
}
.provider-slots { display:flex; gap:10px; flex-wrap:wrap; }
.provider-slot {
  padding:9px 12px;
  border-radius:999px;
  background:rgba(47,181,173,.1);
  color:var(--teal2);
  font-weight:950;
}

.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.field.full { grid-column:1/-1; }
label { display:block; color:var(--muted); font-size:13px; text-transform:uppercase; letter-spacing:.08em; font-weight:950; margin:0 0 8px; }
input, select, textarea {
  width:100%;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 15px;
  background:#fffdf8;
  color:var(--brown);
  font:inherit;
  outline:none;
}
textarea { min-height:150px; resize:vertical; }
input:focus, select:focus, textarea:focus { border-color:rgba(47,181,173,.55); box-shadow:0 0 0 4px rgba(47,181,173,.12); }
.checkbox-row { display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-weight:800; }
.checkbox-row input { width:auto; margin-top:5px; }

.audio-list { display:grid; gap:14px; }
.audio-item {
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;
  align-items:center;
  padding:16px;
  border-radius:22px;
  background:#fffdf8;
  border:1px solid var(--line);
}
.audio-item audio { width:min(360px,100%); }

.site-footer {
  margin-top:48px;
  padding:36px 0 54px;
  color:var(--muted);
  text-align:left;
  background:rgba(255,250,241,.54);
  border-top:1px solid rgba(43,30,24,.08);
}
.footer-grid { display:grid; grid-template-columns:1fr auto; gap:24px; align-items:start; }
.footer-links { display:flex; flex-wrap:wrap; gap:12px 18px; font-weight:850; }
.footer-links a, .footer-links button { color:var(--brown); background:none; border:0; padding:0; font:inherit; font-weight:850; cursor:pointer; }
.copyright { margin-top:14px; font-size:14px; }

.embed-placeholder {
  display:flex;
  min-height:220px;
  align-items:center;
  justify-content:center;
  padding:18px;
  text-align:center;
  background:#fffdf8;
  border:1px dashed rgba(43,30,24,.22);
  border-radius:20px;
  color:var(--muted);
  font-weight:850;
}
.embed-cover {
  display:grid;
  place-items:center;
  gap:10px;
  width:100%;
  min-height:220px;
  padding:22px;
  border-radius:20px;
  background:
    radial-gradient(circle at 50% 35%,rgba(255,209,102,.24),transparent 36%),
    linear-gradient(145deg,#3a241c,#1f1713);
  color:#fff7eb;
  text-align:center;
}
.embed-cover strong { font-size:22px; line-height:1.1; }
.embed-cover small { color:rgba(255,247,235,.72); font-weight:800; }
.embed-cover a { color:#ffd166; text-decoration:underline; text-underline-offset:3px; font-size:13px; }
.embed-play {
  display:grid;
  place-items:center;
  width:74px;
  height:74px;
  border-radius:50%;
  background:var(--action);
  color:#fff;
  font-size:30px;
  box-shadow:0 20px 42px rgba(228,61,34,.34);
}

.payment-confirmation {
  margin-top:22px;
  padding:22px;
  border-radius:24px;
  background:#fffdf8;
  border:1px solid rgba(43,30,24,.1);
  box-shadow:var(--shadow);
}
.payment-confirmation h3 { margin:0 0 8px; font-size:28px; line-height:1.05; letter-spacing:-.04em; }
.payment-confirmation .price-big { margin:10px 0; }
.payment-legal { display:grid; gap:12px; margin:18px 0; }
.payment-legal .checkbox-row {
  padding:12px 14px;
  border-radius:18px;
  background:#fff8ed;
  border:1px solid rgba(43,30,24,.08);
  text-transform:none;
  letter-spacing:0;
  font-size:15px;
}
.payment-legal a { color:var(--teal2); text-decoration:underline; text-underline-offset:3px; }
.payment-button.is-disabled { opacity:.52; cursor:not-allowed; filter:saturate(.7); }
.payment-confirmation-attention { animation:paymentNudge .32s ease-in-out 2; border-color:rgba(217,74,50,.38); }
@keyframes paymentNudge { 0%,100%{transform:translateX(0)} 50%{transform:translateX(6px)} }

.hangbrief-section { scroll-margin-top:92px; }
.workshop-section { padding-top:28px; }
.workshop-heading {
  text-align:center;
  max-width:820px;
  margin:0 auto 24px;
}
.workshop-heading h2 {
  margin:0;
  font-size:clamp(36px,5vw,68px);
  line-height:1.02;
  letter-spacing:-.052em;
}
.workshop-heading p { color:var(--muted); font-size:20px; font-weight:900; }
.workshop-reassurance {
  max-width:820px;
  margin:14px auto 0;
  padding:16px 18px;
  border:1px solid rgba(40,184,176,.22);
  border-radius:22px;
  background:linear-gradient(135deg,rgba(255,253,244,.9),rgba(232,251,248,.78));
  color:var(--ink);
  box-shadow:0 14px 34px rgba(40,184,176,.08);
}
.workshop-return-greeting {
  display:inline-flex;
  margin-top:12px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(34,182,107,.12);
  color:var(--teal2) !important;
  border:1px solid rgba(34,182,107,.2);
  font-size:15px !important;
  font-weight:950 !important;
}
.workshop-return-greeting[hidden] { display:none; }
.hangbrief-shell {
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  gap:22px;
  align-items:start;
}
.hangbrief-intro, .hangbrief-card {
  background:rgba(255,253,248,.95);
  border:2px solid rgba(224,166,0,.2);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px;
}
.hangbrief-intro h2, .hangbrief-card h3 {
  margin:0 0 12px;
  line-height:1;
  letter-spacing:-.055em;
  font-weight:950;
}
.hangbrief-intro h2 { font-size:clamp(34px,4.5vw,58px); }
.hangbrief-intro p { color:var(--muted); font-size:18px; }
.hangbrief-card {
  position:relative;
  overflow:visible;
  background:linear-gradient(145deg,#fffdf8,#fff9ef);
}
.checkout-admin-stage[hidden],
.checkout-trust-row[hidden] {
  display:none !important;
}
.checkout-admin-stage {
  position:relative;
  display:grid;
  gap:18px;
  margin-top:28px;
  padding:clamp(22px,3vw,34px);
  border:1px solid rgba(155,94,27,.16);
  border-radius:32px;
  background:
    radial-gradient(circle at 92% 4%,rgba(40,184,176,.12),transparent 16rem),
    linear-gradient(145deg,#fffdf8,#fff8ed);
  box-shadow:0 24px 58px rgba(43,30,24,.11);
  animation:checkoutAdminReveal .24s ease-out both;
}
@keyframes checkoutAdminReveal {
  from { opacity:0; transform:translateY(14px); }
  to { opacity:1; transform:translateY(0); }
}
.checkout-admin-heading h3 {
  margin:0;
  color:var(--navy);
  font-size:clamp(34px,4vw,58px);
  line-height:.95;
  letter-spacing:-.055em;
}
.checkout-admin-heading p {
  max-width:680px;
  margin:10px 0 0;
  color:var(--brown2);
  font-size:clamp(18px,1.7vw,23px);
  font-weight:900;
  line-height:1.35;
}
.checkout-admin-stage .billing-block {
  margin:8px 0 0;
  padding:clamp(18px,2.4vw,28px);
  border-radius:28px;
  background:rgba(255,253,248,.9);
}
.checkout-admin-stage .payment-legal {
  margin:0;
}
.checkout-admin-stage .brief-final-note {
  margin-top:0;
}
.checkout-trust-row {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(155,94,27,.16);
}
.checkout-trust-row article {
  display:grid;
  grid-template-columns:auto 1fr;
  column-gap:10px;
  align-items:center;
  padding:12px;
  border-radius:18px;
  background:rgba(255,253,248,.7);
  border:1px solid rgba(40,184,176,.14);
}
.checkout-trust-row span {
  grid-row:1 / span 2;
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:999px;
  color:var(--teal2);
  background:rgba(40,184,176,.11);
  font-size:18px;
}
.checkout-trust-row strong {
  color:var(--brown);
  font-size:14px;
  line-height:1.1;
}
.checkout-trust-row small {
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  line-height:1.2;
}
.workshop-sticky {
  position:sticky;
  top:96px;
}
.checkout-mic-visual {
  margin:0 0 18px;
  overflow:hidden;
  border:1px solid rgba(155,94,27,.16);
  border-radius:24px;
  background:#fff8ed;
  box-shadow:0 16px 34px rgba(43,30,24,.1);
}
.checkout-mic-visual img {
  width:100%;
  max-height:260px;
  object-fit:cover;
  object-position:center;
}
.workshop-sticky h3 {
  margin:0 0 12px;
  font-size:32px;
  line-height:1.05;
  letter-spacing:-.045em;
}
.workshop-sticky ul {
  margin:0;
  padding-left:20px;
  color:var(--muted);
  font-weight:850;
}
.workshop-sticky li { margin:7px 0; }
.sticky-price {
  display:grid;
  gap:4px;
  margin:18px 0;
  padding:16px;
  border-radius:20px;
  background:#fffdf8;
  border:1px solid var(--line);
}
.sticky-price span { color:#a73d2b; font-weight:950; text-decoration:line-through; }
.sticky-price strong { color:var(--green); font-size:28px; letter-spacing:-.04em; }
.workshop-live-summary {
  display:grid;
  gap:10px;
  margin-top:18px;
  padding:12px;
  border-radius:24px;
  background:linear-gradient(145deg,rgba(227,93,79,.1),rgba(255,253,248,.62));
  transition:.25s background,.25s border-color;
}
.workshop-live-summary p {
  position:relative;
  display:grid;
  gap:3px;
  margin:0;
  min-height:44px;
  padding:12px 50px 12px 14px;
  border-radius:18px;
  background:rgba(224,166,0,.09);
  color:var(--muted);
  border:1px solid transparent;
  transition:.2s background,.2s border-color,.2s transform,.2s box-shadow;
}
.workshop-live-summary span {
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:11px;
  font-weight:950;
}
.workshop-live-summary strong { color:var(--brown); line-height:1.25; }
.workshop-live-summary p:before {
  content:"";
  position:absolute;
  right:14px;
  top:16px;
  display:grid;
  place-items:center;
  width:23px;
  height:23px;
  border-radius:50%;
  background:rgba(43,30,24,.12);
  color:#fff;
  font-size:14px;
  font-weight:950;
}
.workshop-live-summary p.is-current {
  background:rgba(224,166,0,.13);
  border-color:rgba(224,166,0,.28);
}
.workshop-live-summary p.is-current:before {
  content:"";
  background:var(--progress-current);
  box-shadow:0 0 0 5px rgba(224,166,0,.12);
}
.workshop-live-summary p.is-done {
  background:rgba(34,182,107,.12);
  border-color:rgba(34,182,107,.24);
}
.workshop-live-summary p.is-done:before {
  content:"✓";
  background:var(--green);
  box-shadow:0 10px 20px rgba(34,182,107,.18);
}
.workshop-live-summary p.is-done:after {
  content:attr(data-note);
  color:var(--teal2);
  font-size:12px;
  font-weight:950;
}
.workshop-live-summary p.is-editable {
  cursor:pointer;
}
.workshop-live-summary p.is-editable:hover,
.workshop-live-summary p.is-editable:focus-visible {
  transform:translateY(-2px);
  border-color:rgba(40,184,176,.34);
  background:linear-gradient(135deg,rgba(232,251,248,.9),rgba(255,253,244,.88));
  box-shadow:0 14px 30px rgba(40,184,176,.12);
  outline:0;
}
.workshop-live-summary p.is-done.is-editable:after {
  content:attr(data-note) " · Módosítható";
}
.workshop-live-summary p.is-done.is-editable:hover:after,
.workshop-live-summary p.is-done.is-editable:focus-visible:after {
  content:"Kattints a módosításhoz";
  color:var(--brown);
}
.workshop-live-summary p.is-done.is-editable:before {
  content:"✓";
}
.workshop-live-summary p.is-done.is-editable:hover:before,
.workshop-live-summary p.is-done.is-editable:focus-visible:before {
  content:"✎";
  background:var(--teal);
}
.workshop-live-summary p.is-disabled {
  opacity:.58;
  cursor:not-allowed;
}
[data-hangbrief][data-progress-step="2"] .workshop-live-summary,
[data-hangbrief][data-progress-step="3"] .workshop-live-summary {
  background:linear-gradient(145deg,rgba(245,158,11,.12),rgba(255,253,248,.68));
}
[data-hangbrief][data-progress-step="4"] .workshop-live-summary {
  background:linear-gradient(145deg,rgba(132,204,22,.12),rgba(255,253,248,.72));
}
[data-hangbrief][data-progress-step="5"] .workshop-live-summary {
  background:linear-gradient(145deg,rgba(34,182,107,.16),rgba(255,253,248,.76));
}
.hangbrief-top {
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  margin-bottom:14px;
}
.hangbrief-top-actions {
  display:grid;
  justify-items:end;
  gap:10px;
}
.sound-control {
  display:flex;
  align-items:center;
  gap:9px;
  padding:8px 10px;
  border-radius:18px;
  background:rgba(255,253,248,.76);
  border:1px solid rgba(43,30,24,.08);
  color:var(--muted);
  font-size:12px;
  font-weight:900;
}
.sound-control button {
  border:0;
  border-radius:999px;
  padding:7px 10px;
  background:rgba(47,181,173,.14);
  color:var(--teal2);
  font:inherit;
  font-size:12px;
  font-weight:950;
  cursor:pointer;
}
.hangbrief-step-count {
  display:inline-flex;
  padding:10px 16px;
  border-radius:999px;
  background:var(--progress-current,var(--action));
  color:#fff;
  font-weight:950;
  box-shadow:0 10px 0 rgba(43,30,24,.12);
  transition:.25s background,.25s box-shadow;
}
.hangbrief-step-count.is-complete {
  background:var(--green);
  box-shadow:0 10px 0 rgba(24,120,70,.14);
}
.hangbrief-microcopy {
  margin-top:10px;
  color:var(--muted);
  font-weight:900;
}
.hangbrief-check {
  opacity:0;
  transform:translateY(-4px);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(34,182,107,.13);
  color:var(--green);
  font-weight:950;
  transition:.2s opacity,.2s transform;
}
.hangbrief-check.is-visible { opacity:1; transform:translateY(0); }
.hangbrief-progress {
  height:16px;
  border-radius:999px;
  overflow:hidden;
  background:#eadfc9;
  margin-bottom:24px;
}
.hangbrief-progress span {
  display:block;
  width:20%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--progress-current,var(--action)),var(--progress-current,var(--action)));
  transition:.25s width ease,.25s background;
}
.hangbrief-progress.is-complete span { background:linear-gradient(90deg,var(--green),#3ed988); }
.brief-step { display:none; animation:briefSlide .22s ease; }
.brief-step.is-active { display:block; }
@keyframes briefSlide { from{opacity:0; transform:translateY(10px)} to{opacity:1; transform:translateY(0)} }
.brief-reward {
  display:flex;
  align-items:center;
  gap:12px;
  margin:-4px 0 22px;
  padding:14px 16px;
  border-radius:20px;
  background:linear-gradient(135deg,rgba(34,182,107,.14),rgba(224,166,0,.14));
  border:1px solid rgba(34,182,107,.2);
  color:var(--brown);
  font-weight:950;
  box-shadow:0 16px 34px rgba(47,181,173,.12);
}
.brief-reward[hidden] { display:none; }
.brief-reward.is-pulsing { animation:rewardPulse .45s ease; }
.brief-reward-mark {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  box-shadow:0 12px 24px rgba(47,181,173,.24);
}
@keyframes rewardPulse {
  0% { transform:scale(.98); opacity:.72; }
  55% { transform:scale(1.025); opacity:1; }
  100% { transform:scale(1); opacity:1; }
}
.brief-step h3 { font-size:clamp(30px,4vw,48px); }
.brief-step label { color:var(--navy); font-size:16px; text-transform:none; letter-spacing:0; }
.brief-step select {
  min-height:62px;
  appearance:none;
  background:
    linear-gradient(45deg,transparent 50%,var(--navy) 50%) calc(100% - 24px) 52%/8px 8px no-repeat,
    linear-gradient(135deg,#fff7df,#fff1cc);
  border:2px solid rgba(224,166,0,.4);
  box-shadow:0 14px 28px rgba(43,30,24,.08);
  font-weight:950;
  cursor:pointer;
}
.brief-step select:focus {
  border-color:rgba(255,43,31,.6);
  box-shadow:0 0 0 5px rgba(255,43,31,.1),0 18px 32px rgba(43,30,24,.1);
}
.brief-question {
  color:var(--muted);
  font-size:18px;
  font-weight:900;
}
.chip-grid {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0 22px;
}
.choice-chip {
  border:1px solid rgba(43,30,24,.14);
  border-radius:999px;
  padding:11px 14px;
  background:#fffdf8;
  color:var(--brown);
  font:inherit;
  font-weight:900;
  cursor:pointer;
  transition:.18s transform,.18s background,.18s border-color,.18s box-shadow;
}
.choice-chip:hover { transform:translateY(-2px); border-color:rgba(47,181,173,.42); }
.choice-chip.is-selected {
  background:rgba(47,181,173,.14);
  border-color:rgba(47,181,173,.72);
  box-shadow:0 12px 24px rgba(47,181,173,.12);
}
.message-confirm {
  margin-top:12px;
  border:0;
  border-radius:20px;
  padding:18px 28px;
  min-width:260px;
  background:linear-gradient(135deg,var(--action),#ff3d2f);
  color:#fff;
  font:inherit;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 18px 34px rgba(255,43,31,.26),0 8px 0 var(--action2);
  transition:.18s transform,.18s box-shadow,.18s background;
}
.admin-step .note { font-size:16px; }
.admin-box {
  margin-top:18px;
  padding:18px;
  border-radius:24px;
  background:rgba(255,253,248,.7);
  border:1px solid rgba(43,30,24,.08);
}
.early-lead-card {
  display:grid;
  gap:14px;
  margin:16px 0 24px;
  padding:18px;
  border-radius:24px;
  background:linear-gradient(135deg,rgba(255,243,215,.9),rgba(255,253,248,.82));
  border:1px solid rgba(224,166,0,.26);
  box-shadow:0 16px 34px rgba(43,30,24,.08);
}
.early-lead-card .marketing-check {
  margin-top:2px;
  padding:12px 14px;
  border-radius:18px;
  background:#fffdf8;
  border:1px solid rgba(43,30,24,.08);
  font-size:14px;
  text-transform:none;
  letter-spacing:0;
}
.field-note {
  margin:7px 0 0;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}
.success-field { position:relative; }
.success-field input { padding-right:48px; }
.field-check {
  position:absolute;
  right:14px;
  top:42px;
  display:grid;
  place-items:center;
  width:26px;
  height:26px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  font-weight:950;
  opacity:0;
  transform:scale(.72);
  transition:.18s opacity,.18s transform;
}
.success-field.is-valid .field-check { opacity:1; transform:scale(1); }
.message-confirm:hover {
  transform:translateY(-3px) scale(1.025);
  background:linear-gradient(135deg,#ff4638,var(--action));
  box-shadow:0 24px 42px rgba(255,43,31,.32),0 9px 0 var(--action2);
}
.brief-error {
  min-height:24px;
  color:var(--action);
  font-weight:950;
}
.brief-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-top:16px;
}
[data-brief-submit] { display:none; }
.brief-step[data-step="5"].is-active ~ .brief-actions [data-brief-submit] { display:inline-flex; }
.brief-step[data-step="5"].is-active ~ .brief-actions [data-brief-next] { display:none; }
[data-brief-submit]:disabled {
  opacity:.52;
  cursor:not-allowed;
  filter:saturate(.75);
  transform:none;
}
.brief-final-note {
  display:grid;
  gap:4px;
  margin:18px 0 0;
  padding:16px 18px;
  border-radius:20px;
  background:rgba(47,181,173,.12);
  color:var(--teal2);
  font-weight:900;
}
.brief-final-note span { color:var(--muted); }
.hangbrief-card.is-submitting { pointer-events:none; opacity:.78; }
.billing-block {
  margin-top:22px;
  padding:18px;
  border-radius:22px;
  background:rgba(255,248,237,.72);
  border:1px solid rgba(43,30,24,.08);
}
.billing-block h4 {
  margin:0 0 14px;
  font-size:22px;
  line-height:1.05;
  letter-spacing:-.04em;
}
.billing-type {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-bottom:16px;
}
.radio-card {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:18px;
  border-radius:22px;
  background:#fffdf8;
  border:2px solid rgba(224,166,0,.32);
  color:var(--brown);
  font-size:16px;
  letter-spacing:0;
  text-transform:none;
  cursor:pointer;
  box-shadow:0 12px 24px rgba(43,30,24,.06);
  transition:.18s border-color,.18s transform,.18s box-shadow,.18s background;
}
.radio-card:hover { transform:translateY(-2px); border-color:rgba(47,181,173,.45); }
.radio-card input { width:22px; height:22px; accent-color:var(--green); order:2; }
.radio-card:has(input:checked) {
  background:rgba(34,182,107,.12);
  border-color:var(--green);
  box-shadow:0 18px 34px rgba(34,182,107,.14);
}
.billing-block [hidden] { display:none !important; }
.legal-details {
  padding:12px 14px;
  border-radius:18px;
  background:#fffdf8;
  border:1px dashed rgba(43,30,24,.14);
  color:var(--muted);
  font-weight:800;
}
.legal-details summary {
  cursor:pointer;
  color:var(--brown);
  font-weight:950;
}
.legal-details p { margin:10px 0 0; font-size:14px; }
.checkout-microcopy,
.legal-microcopy {
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
  font-weight:850;
}
.checkout-microcopy[hidden],
.legal-microcopy[hidden] { display:none; }

.legal-page h1 { font-size:clamp(38px,5vw,68px); }
.legal-page h2 { margin-top:32px; font-size:32px; }
.legal-page table {
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  margin:18px 0 28px;
  overflow:hidden;
  border:1px solid rgba(155,94,27,.18);
  border-radius:18px;
  background:rgba(255,248,230,.72);
}
.legal-page th,
.legal-page td {
  padding:14px 16px;
  text-align:left;
  vertical-align:top;
  border-bottom:1px solid rgba(155,94,27,.14);
  color:var(--muted);
  font-size:16px;
  line-height:1.5;
}
.legal-page th {
  color:var(--ink);
  background:rgba(255,214,107,.22);
  font-weight:950;
}
.legal-page tr:last-child td { border-bottom:0; }
.legal-warning {
  padding:16px 18px;
  border-radius:18px;
  background:#fff4d3;
  color:#6b4b12;
  border:1px solid rgba(213,154,68,.3);
  font-weight:900;
}
.placeholder { color:#9a5a43; font-weight:950; }

@media (max-width:900px) {
  .content-grid, .cards, .cards.two, .footer-grid, .form-grid, .hangbrief-shell { grid-template-columns:1fr; }
  .value-showcase { grid-template-columns:1fr; }
  .hero-panel { padding:34px; border-radius:30px; }
  .nav-links a:not(.nav-cta) { display:none; }
  .simple-nav { gap:12px; }
  .simple-nav .nav-cta { max-width:48vw; padding:10px 14px; font-size:13px; line-height:1.1; white-space:normal; text-align:center; }
  .audio-item { grid-template-columns:1fr; }
  .hangbrief-intro, .hangbrief-card { padding:22px; border-radius:24px; }
  .workshop-sticky { position:static; }
  .workshop-live-summary p {
    min-height:52px;
    padding-top:14px;
    padding-bottom:14px;
  }
  .hangbrief-top { display:grid; }
  .hangbrief-top-actions { justify-items:start; width:100%; }
  .sound-control { width:100%; justify-content:space-between; }
  .billing-type { grid-template-columns:1fr; }
  .brief-actions .pill { width:100%; }
  .checkout-admin-stage {
    padding:22px;
    border-radius:26px;
  }
  .checkout-trust-row {
    grid-template-columns:1fr;
  }
}

/* Unified File Csaba / Hangember design system layer. Visual-only. */
:root {
  --bg:#F7EDCF;
  --paper:#FFF8E6;
  --paper-strong:#FFFDF4;
  --brown:#3A2412;
  --brown2:#6D3E12;
  --muted:#6D5947;
  --teal:#28B8B0;
  --teal2:#16847F;
  --navy:#080D22;
  --cream:#FFF3D1;
  --action:#F4B82E;
  --action2:#9B5E1B;
  --yellow:#F4B82E;
  --green:#25A866;
  --line:rgba(155,94,27,.18);
  --shadow:0 22px 58px rgba(58,36,18,.11);
  --shadow-lift:0 30px 74px rgba(58,36,18,.16);
  --button-shadow:0 16px 32px rgba(155,94,27,.2),0 7px 0 #9B5E1B;
  --radius:30px;
  --radius-sm:18px;
  --radius-lg:42px;
}

html {
  background:var(--bg);
}

body {
  min-width:0;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 12% -6%,rgba(255,214,107,.42),transparent 30rem),
    radial-gradient(circle at 86% 8%,rgba(40,184,176,.14),transparent 28rem),
    linear-gradient(180deg,#FFF3D1 0,#F7EDCF 48rem,#FFF8E6 100%);
  color:var(--navy);
  font-feature-settings:"kern" 1;
  text-rendering:optimizeLegibility;
}

:where(a, button, input, textarea, select, summary):focus-visible {
  outline:3px solid rgba(40,184,176,.4);
  outline-offset:4px;
}

.wrap {
  width:min(1120px,92vw);
}

.simple-header {
  background:rgba(255,249,233,.92);
  border-bottom:1px solid var(--line);
  box-shadow:0 10px 34px rgba(58,36,18,.07);
}

.simple-nav {
  min-height:78px;
}

.brand {
  color:var(--navy);
}

.brand span {
  color:var(--teal2);
}

.nav-links {
  color:var(--muted);
}

.nav-links a:not(.pill) {
  padding:8px 2px;
}

.nav-links a:not(.pill):hover {
  color:var(--teal2);
}

.pill,
.message-confirm,
.cookie-button,
.payment-button {
  min-height:52px;
  border-radius:999px;
  color:var(--brown);
  background:
    radial-gradient(circle at 50% 18%,rgba(255,255,255,.5),transparent 36%),
    linear-gradient(135deg,#FFD66B,var(--action));
  border:1px solid rgba(155,94,27,.2);
  box-shadow:var(--button-shadow);
  text-shadow:none;
}

.pill:hover,
.message-confirm:hover,
.payment-button:hover {
  color:var(--brown);
  transform:translateY(-4px) scale(1.018);
  background:
    radial-gradient(circle at 50% 18%,rgba(255,255,255,.58),transparent 36%),
    linear-gradient(135deg,#FFE08A,var(--action));
  box-shadow:0 26px 54px rgba(155,94,27,.24),0 9px 0 #9B5E1B;
}

.pill.hot {
  color:var(--brown);
  background:
    radial-gradient(circle at 50% 18%,rgba(255,255,255,.5),transparent 36%),
    linear-gradient(135deg,#FFD66B,var(--action));
  box-shadow:var(--button-shadow);
}

.pill.hot:hover {
  background:
    radial-gradient(circle at 50% 18%,rgba(255,255,255,.58),transparent 36%),
    linear-gradient(135deg,#FFE08A,var(--action));
  box-shadow:0 26px 54px rgba(155,94,27,.24),0 9px 0 #9B5E1B;
}

.pill.outline {
  color:var(--teal2);
  background:rgba(255,253,244,.62);
  border:1px solid rgba(40,184,176,.28);
  box-shadow:none;
}

.pill.outline:hover {
  color:var(--teal2);
  background:rgba(40,184,176,.1);
  box-shadow:0 14px 30px rgba(40,184,176,.1);
}

.page-hero {
  padding:76px 0 38px;
}

.hero-panel,
.content-block,
.checkout-box,
.form-card,
.card,
.hangbrief-intro,
.hangbrief-card,
.payment-confirmation {
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:linear-gradient(145deg,var(--paper-strong),var(--paper));
  color:var(--navy);
  box-shadow:var(--shadow);
}

.hero-panel {
  padding:clamp(32px,5vw,58px);
  background:
    radial-gradient(circle at 85% 18%,rgba(40,184,176,.16),transparent 24rem),
    linear-gradient(145deg,var(--paper-strong),var(--cream));
}

.hero-panel h1,
.content-block h1,
.content-block h2,
.checkout-box h2,
.form-card h2,
.workshop-heading h2,
.workshop-sticky h3,
.brief-step h3,
.payment-confirmation h3 {
  color:var(--navy);
  letter-spacing:-.045em;
  text-wrap:balance;
}

.hero-panel p,
.card p,
.content-block p,
.checkout-box p,
.form-card p {
  color:var(--muted);
}

.kicker {
  color:var(--teal2);
}

.price-highlight,
.price-big,
.green-price,
.sticky-price strong {
  color:var(--green);
  text-shadow:none;
}

.workshop-handwrite p,
.hand-note {
  color:var(--brown2);
}

.value-showcase {
  border:1px solid var(--line);
  background:linear-gradient(145deg,var(--paper-strong),var(--paper));
  box-shadow:var(--shadow);
}

.value-lines div {
  border-bottom-color:rgba(155,94,27,.15);
}

.value-lines div:before {
  background:linear-gradient(135deg,var(--teal),var(--teal2));
  box-shadow:0 8px 18px rgba(40,184,176,.18);
}

.value-lines strong {
  color:var(--brown2);
}

.value-badge {
  background:linear-gradient(145deg,#E9FAF7,#FFF3D1);
  border:1px solid rgba(40,184,176,.22);
  box-shadow:0 18px 42px rgba(40,184,176,.11);
}

.value-badge em {
  background:rgba(40,184,176,.13);
  color:var(--teal2);
}

label {
  color:var(--brown2);
  letter-spacing:.06em;
}

input,
select,
textarea {
  appearance:none;
  border:1px solid rgba(155,94,27,.2);
  border-radius:20px;
  background:#FFFDF4;
  color:var(--navy);
  box-shadow:inset 0 2px 0 rgba(255,255,255,.6),0 10px 22px rgba(58,36,18,.04);
  transition:.18s border-color,.18s box-shadow,.18s background,.18s transform;
}

select {
  min-height:58px;
  padding-right:48px;
  background:
    linear-gradient(45deg,transparent 50%,var(--teal2) 50%) calc(100% - 25px) 52%/8px 8px no-repeat,
    linear-gradient(135deg,#FFFDF4,#FFF3D1);
}

input:hover,
select:hover,
textarea:hover {
  border-color:rgba(40,184,176,.32);
}

input:focus,
select:focus,
textarea:focus {
  border-color:rgba(40,184,176,.58);
  box-shadow:0 0 0 5px rgba(40,184,176,.12),0 14px 28px rgba(58,36,18,.06);
  background:#fffefa;
}

input[type="checkbox"],
input[type="radio"] {
  appearance:auto;
  accent-color:var(--teal2);
  box-shadow:none;
}

.checkbox-row {
  line-height:1.45;
}

.payment-legal .checkbox-row,
.early-lead-card .marketing-check,
.legal-details,
.admin-box,
.billing-block,
.sticky-price {
  background:rgba(255,253,244,.78);
  border:1px solid rgba(155,94,27,.14);
  border-radius:22px;
}

.hangbrief-shell {
  gap:clamp(18px,2.6vw,30px);
}

.hangbrief-intro,
.hangbrief-card {
  border-radius:var(--radius-lg);
  border:1px solid var(--line);
  background:linear-gradient(145deg,var(--paper-strong),var(--paper));
}

.workshop-live-summary {
  background:linear-gradient(145deg,rgba(40,184,176,.07),rgba(255,253,244,.72));
  border:1px solid rgba(40,184,176,.14);
}

.workshop-live-summary p {
  background:rgba(255,253,244,.74);
  border:1px solid rgba(155,94,27,.08);
}

.workshop-live-summary p.is-current {
  background:rgba(255,214,107,.24);
  border-color:rgba(244,184,46,.32);
}

.workshop-live-summary p.is-done {
  background:rgba(37,168,102,.12);
  border-color:rgba(37,168,102,.28);
}

.hangbrief-step-count {
  background:var(--progress-current);
  box-shadow:0 8px 0 rgba(58,36,18,.12);
}

.hangbrief-progress {
  background:rgba(155,94,27,.12);
}

.brief-reward {
  background:linear-gradient(135deg,rgba(37,168,102,.13),rgba(255,214,107,.22));
  border-color:rgba(37,168,102,.22);
}

.brief-step label {
  color:var(--navy);
}

.brief-step select {
  border:1px solid rgba(155,94,27,.2);
  background:
    linear-gradient(45deg,transparent 50%,var(--teal2) 50%) calc(100% - 25px) 52%/8px 8px no-repeat,
    linear-gradient(135deg,#FFFDF4,#FFF3D1);
  box-shadow:0 14px 30px rgba(58,36,18,.06);
}

.brief-step select:focus {
  border-color:rgba(40,184,176,.58);
  box-shadow:0 0 0 5px rgba(40,184,176,.12),0 18px 34px rgba(58,36,18,.08);
}

.message-confirm {
  color:var(--brown);
}

.field-check,
.big-check,
.brief-reward-mark {
  background:var(--green);
}

.radio-card {
  background:#FFFDF4;
  border:1px solid rgba(155,94,27,.18);
  border-radius:24px;
}

.radio-card:hover {
  border-color:rgba(40,184,176,.38);
}

.radio-card:has(input:checked) {
  background:rgba(40,184,176,.12);
  border-color:var(--teal2);
  box-shadow:0 18px 38px rgba(40,184,176,.13);
}

.embed-placeholder,
.audio-item,
.checkout-provider {
  background:var(--paper-strong);
  border:1px solid var(--line);
  border-radius:24px;
}

.embed-cover {
  background:
    radial-gradient(circle at 50% 36%,rgba(40,184,176,.18),transparent 36%),
    linear-gradient(145deg,#FFF8E6,#FFF3D1);
  color:var(--navy);
}

.embed-cover small {
  color:var(--muted);
}

.embed-cover a {
  color:var(--teal2);
}

.embed-play {
  background:linear-gradient(135deg,var(--teal),var(--teal2));
  box-shadow:0 18px 38px rgba(40,184,176,.22);
}

.site-footer {
  background:linear-gradient(135deg,#FFF8E6,#F7EDCF);
  border-top:1px solid var(--line);
}

.mobile-voice-title,
.summary-toggle,
.mobile-ready-panel {
  display:none;
}

@media (max-width:900px) {
  .wrap {
    width:min(100% - 28px, 620px);
  }
  .hero-panel,
  .checkout-box,
  .hangbrief-intro,
  .hangbrief-card,
  .content-block,
  .card {
    border-radius:28px;
    padding:22px;
  }
  .simple-nav .nav-cta {
    max-width:56vw;
  }
  .pill,
  .message-confirm {
    min-height:50px;
  }
  .form-grid {
    gap:14px;
  }
}

@media (max-width:767px) {
  .simple-header {
    position:sticky;
    top:0;
    z-index:40;
  }

  .simple-nav {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
  }

  .simple-nav .brand {
    min-width:0;
    color:var(--navy);
    font-size:15px;
    line-height:1.1;
    white-space:nowrap;
  }

  .simple-nav .brand span {
    color:var(--teal2);
    margin:0 4px;
  }

  .simple-nav .nav-links {
    display:none;
  }

  .simple-nav .mobile-voice-title {
    display:inline-flex;
    justify-content:flex-end;
    max-width:42vw;
    color:var(--teal2);
    font-size:10px;
    font-weight:950;
    line-height:1.05;
    letter-spacing:.08em;
    text-align:right;
    text-transform:uppercase;
  }

  .hangbrief-section {
    scroll-margin-top:78px;
  }

  .hangbrief-shell {
    display:flex;
    flex-direction:column;
    gap:16px;
  }

  .hangbrief-intro {
    order:2;
    padding:16px;
    border-radius:22px;
  }

  .hangbrief-card {
    order:1;
    min-height:min(680px, calc(100svh - 110px));
    padding:20px;
    border-radius:26px;
  }

  .workshop-sticky h3,
  .workshop-sticky ul,
  .workshop-sticky .sticky-price,
  .workshop-sticky > .note {
    display:none;
  }

  .summary-toggle {
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    min-height:48px;
    padding:12px 14px;
    border:1px solid rgba(40,184,176,.24);
    border-radius:16px;
    color:var(--navy);
    background:linear-gradient(135deg,#fffdf4,#e8fbf8);
    box-shadow:0 10px 22px rgba(40,184,176,.1);
    font-weight:950;
    cursor:pointer;
  }

  .summary-toggle::after {
    content:"⌄";
    color:var(--teal2);
    font-size:18px;
    line-height:1;
  }

  [data-hangbrief].is-summary-open .summary-toggle::after {
    content:"⌃";
  }

  .workshop-live-summary {
    display:grid;
    gap:8px;
    padding:10px;
    border-radius:20px;
  }

  .workshop-live-summary p {
    display:none;
    min-height:52px;
    padding:13px 48px 13px 42px;
  }

  [data-hangbrief].is-summary-open .workshop-live-summary p {
    display:grid;
  }

  .hangbrief-top {
    gap:10px;
  }

  .hangbrief-step-count {
    width:max-content;
    padding:8px 12px;
    border-radius:999px;
    font-size:13px;
  }

  .hangbrief-microcopy {
    margin-top:6px;
    font-size:13px;
  }

  .brief-step {
    animation:briefMobileSlide .22s ease;
  }

  .brief-step.is-active {
    display:block;
  }

  .brief-step h3 {
    font-size:clamp(30px,9vw,42px);
    line-height:1.02;
  }

  .early-lead-title,
  .early-lead-card {
    display:none;
  }

  .brief-step select,
  .brief-step textarea,
  .brief-step input {
    min-height:52px;
    font-size:16px;
  }

  .brief-step textarea {
    min-height:170px;
  }

  .brief-actions {
    gap:10px;
  }

  .brief-actions [data-brief-prev] {
    order:2;
    min-height:44px;
    border:0;
    background:transparent;
    box-shadow:none;
    color:var(--teal2);
    text-decoration:underline;
    text-underline-offset:4px;
  }

  .brief-actions [data-brief-next],
  .message-confirm {
    order:1;
    width:100%;
  }

  [data-hangbrief].is-mobile-ready .brief-step.is-active,
  [data-hangbrief].is-mobile-ready .brief-actions,
  [data-hangbrief].is-mobile-ready .brief-final-note,
  [data-hangbrief].is-mobile-ready .checkout-microcopy,
  [data-hangbrief].is-mobile-ready .legal-microcopy {
    display:none;
  }

  .mobile-ready-panel:not([hidden]) {
    display:grid;
    gap:12px;
    padding:20px;
    border:1px solid rgba(40,184,176,.24);
    border-radius:24px;
    background:linear-gradient(145deg,#fffdf4,#e8fbf8);
    box-shadow:0 18px 38px rgba(40,184,176,.12);
  }

  .mobile-ready-panel strong {
    color:var(--navy);
    font-size:clamp(26px,8vw,38px);
    line-height:1.02;
  }

  .mobile-ready-panel p {
    margin:0;
    color:var(--muted);
    font-weight:850;
    line-height:1.45;
  }

  .mobile-ready-panel .pill {
    width:100%;
  }

  .review-answers-link {
    min-height:44px;
    border:0;
    color:var(--teal2);
    background:transparent;
    font-weight:950;
    text-decoration:underline;
    text-underline-offset:5px;
    cursor:pointer;
  }
}

@keyframes briefMobileSlide {
  from { opacity:0; transform:translateY(10px); }
  to { opacity:1; transform:translateY(0); }
}

/* 2026-05 checkout arrival polish */
.brand-script {
  font-family:'Caveat','Comic Sans MS',cursive;
  color:var(--brown);
  font-size:1.18em;
  line-height:.85;
}

.page-hero .hero-panel {
  position:relative;
  display:grid;
  justify-items:center;
  gap:22px;
  overflow:hidden;
  padding:clamp(48px,7vw,84px) clamp(22px,5vw,70px);
  color:var(--brown);
  text-align:center;
  background:
    radial-gradient(circle at 50% 0%,rgba(47,181,173,.2),transparent 34rem),
    linear-gradient(145deg,#fffdf8,#fff3d7);
  border:1px solid rgba(76,48,36,.13);
  box-shadow:var(--shadow);
}

.page-hero .hero-panel::before {
  content:"";
  position:absolute;
  inset:auto 14% 18px;
  height:16px;
  border-radius:999px;
  background:linear-gradient(90deg,transparent,#2fb5ad,transparent);
  opacity:.28;
}

.page-hero .hero-panel h1 {
  max-width:900px;
  color:var(--brown);
  font-size:clamp(50px,7.5vw,92px);
  letter-spacing:-.065em;
}

.page-hero-subtitle {
  max-width:780px;
  margin:0;
  color:var(--brown2);
  font-size:clamp(26px,3.5vw,44px);
  font-weight:900;
  line-height:1.08;
  letter-spacing:-.035em;
}

.down-arrow {
  display:grid;
  place-items:center;
  width:74px;
  height:74px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(145deg,var(--green),#66d98f);
  box-shadow:0 18px 34px rgba(34,182,107,.22),0 7px 0 #14864b;
  font-size:42px;
  font-weight:950;
  text-decoration:none;
  animation:downArrowPulse 1.7s ease-in-out infinite;
}

.message-confirm,
[data-brief-next],
[data-brief-prev],
[data-brief-submit] {
  touch-action:manipulation;
}

/* 2026-05-14 pre-checkout trust polish: clear value, softer purchase confidence. */
.value-showcase {
  align-items:stretch;
}

.value-showcase > div:first-child {
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.value-showcase h2 {
  max-width:760px;
}

.value-showcase p {
  max-width:760px;
}

.value-lines div strong {
  color:var(--teal2);
  white-space:nowrap;
}

.value-badge {
  display:grid;
  align-content:center;
  justify-items:center;
  gap:8px;
  min-height:100%;
  padding:30px 24px;
  border:1px solid rgba(34,182,107,.18);
  border-radius:30px;
  background:
    radial-gradient(circle at 50% 0%,rgba(47,181,173,.16),transparent 16rem),
    linear-gradient(145deg,#fffdf8,#e9fbf7);
}

.value-badge p {
  max-width:260px;
  margin:4px auto 0;
  color:var(--brown2);
  font-weight:900;
  text-align:center;
}

.value-badge .old-total {
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
  font-weight:900;
  letter-spacing:.02em;
  text-transform:uppercase;
}

.value-badge em {
  color:var(--teal2);
  font-style:normal;
  font-weight:950;
}

.precheckout-confidence {
  padding:20px 0 10px;
}

.confidence-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.confidence-grid article {
  min-width:0;
  padding:22px;
  border:1px solid rgba(76,48,36,.12);
  border-radius:26px;
  background:linear-gradient(145deg,rgba(255,253,248,.92),rgba(255,243,215,.7));
  box-shadow:0 14px 34px rgba(43,30,24,.07);
}

.confidence-grid span {
  display:inline-grid;
  place-items:center;
  width:36px;
  height:36px;
  margin-bottom:12px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(145deg,var(--teal),var(--teal2));
  font-weight:950;
  font-size:13px;
}

.confidence-grid h2 {
  margin:0 0 8px;
  color:var(--navy);
  font-size:clamp(22px,2vw,28px);
  line-height:1.02;
  letter-spacing:-.035em;
}

.confidence-grid p {
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.5;
  font-weight:720;
}

.hangbrief-section .pill.hot,
.mobile-ready-panel .pill.hot {
  color:var(--brown);
  background:
    radial-gradient(circle at 50% 18%,rgba(255,255,255,.62),transparent 36%),
    linear-gradient(135deg,#ffd66b,#f3b33b);
  box-shadow:0 20px 34px rgba(155,94,27,.24),0 8px 0 #9b5e1b;
}

.hangbrief-section .pill.hot:hover,
.mobile-ready-panel .pill.hot:hover {
  color:var(--brown);
  background:
    radial-gradient(circle at 50% 18%,rgba(255,255,255,.72),transparent 36%),
    linear-gradient(135deg,#ffe08a,#f4b331);
  box-shadow:0 26px 48px rgba(155,94,27,.28),0 9px 0 #8a4f19;
}

.checkout-admin-heading p {
  max-width:760px;
}

.checkout-trust-row article:last-child {
  border-color:rgba(47,181,173,.2);
  background:linear-gradient(145deg,#fffdf8,#e8fbf8);
}

@media (max-width:1040px) {
  .confidence-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:720px) {
  .value-showcase {
    grid-template-columns:1fr;
  }

  .value-lines div {
    align-items:flex-start;
    flex-direction:column;
    gap:4px;
  }

  .value-lines div strong {
    white-space:normal;
  }

  .confidence-grid {
    grid-template-columns:1fr;
    gap:12px;
  }

  .confidence-grid article {
    padding:18px;
    border-radius:22px;
  }

  .confidence-grid h2 {
    font-size:24px;
  }

  .confidence-grid p {
    font-size:15px;
  }
}

@keyframes downArrowPulse {
  0%, 100% { transform:translateY(0); }
  50% { transform:translateY(8px); }
}

.workshop-sign {
  display:inline-grid;
  place-items:center;
  position:relative;
  margin:0 auto 12px;
  min-height:96px;
  padding:22px 44px 18px;
  color:var(--brown);
  font-family:'Caveat','Comic Sans MS',cursive;
  font-size:clamp(52px,7vw,88px);
  line-height:.8;
  background:linear-gradient(145deg,#fffdf8,#fff0c2);
  border:2px solid rgba(224,166,0,.34);
  border-radius:50% 50% 26px 26px / 60% 60% 26px 26px;
  box-shadow:0 18px 38px rgba(79,57,24,.13), inset 0 1px 0 rgba(255,255,255,.8);
}

.workshop-reassurance {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  max-width:720px;
  margin:14px auto 0;
  padding:13px 16px;
  border:1px solid rgba(47,181,173,.22);
  border-radius:999px;
  color:var(--brown2);
  background:linear-gradient(135deg,#fffdf8,#e8fbf8);
  font-weight:850;
}

.blush-smile {
  display:inline-block;
  position:relative;
  width:1.05em;
  height:1.05em;
  vertical-align:-.13em;
  border-radius:999px;
  background:
    radial-gradient(circle at 25% 64%,#ff8f8b 0 .14em,transparent .15em),
    radial-gradient(circle at 75% 64%,#ff8f8b 0 .14em,transparent .15em),
    #ffd66b;
  box-shadow:inset 0 -2px 0 rgba(155,94,27,.16);
}

.blush-smile::before,
.blush-smile::after {
  content:"";
  position:absolute;
  top:38%;
  width:.16em;
  height:.16em;
  border-radius:999px;
  background:#3a2412;
}

.blush-smile::before { left:30%; }
.blush-smile::after { right:30%; }

@media (max-width:767px) {
  .page-hero {
    padding:92px 0 22px;
  }

  .page-hero .hero-panel {
    gap:16px;
    padding:34px 18px 30px;
    border-radius:30px;
  }

  .page-hero .hero-panel h1 {
    font-size:clamp(44px,13vw,64px);
    line-height:.92;
    letter-spacing:-.055em;
  }

  .page-hero-subtitle {
    font-size:clamp(28px,9vw,42px);
    line-height:.98;
  }

  .down-arrow {
    width:62px;
    height:62px;
    font-size:34px;
  }

  .workshop-sign {
    min-height:76px;
    padding:18px 26px 14px;
    font-size:clamp(44px,15vw,68px);
  }

  .workshop-reassurance {
    align-items:flex-start;
    border-radius:22px;
    text-align:left;
  }
}

/* 2026-05-14 Hangemberműhely studio-console polish.
   A reference mockup belsős instrukcióit nem jelenítjük meg publikusan. */
:root {
  --workshop-scroll-offset:88px;
  --studio-ink:#120f0a;
  --studio-panel:#1f1a13;
  --studio-line:rgba(255,226,166,.2);
  --studio-cream:#fff1d6;
}

.hangbrief-section {
  scroll-margin-top:var(--workshop-scroll-offset);
  margin-top:clamp(28px,5vw,64px);
  padding:clamp(44px,6vw,82px) 0;
  color:var(--studio-cream);
  background:
    radial-gradient(circle at 78% -12%,rgba(224,166,0,.18),transparent 28rem),
    radial-gradient(circle at 8% 18%,rgba(47,181,173,.16),transparent 24rem),
    linear-gradient(145deg,#0f0d09,#1d1710 64%,#120f0a);
  overflow-anchor:none;
}

.hangbrief-section .wrap {
  width:min(1260px,94vw);
}

.hangbrief-section .workshop-heading {
  margin-bottom:clamp(22px,3vw,34px);
}

.hangbrief-section .workshop-heading p {
  color:rgba(255,247,232,.76);
}

.workshop-core-line {
  margin:10px auto 0;
  color:var(--studio-cream) !important;
  font-size:clamp(24px,3vw,38px) !important;
  line-height:1.08;
  letter-spacing:-.035em;
}

.hangbrief-section .brand-script {
  color:#f2b23b;
  text-shadow:0 10px 26px rgba(224,166,0,.2);
}

.hangbrief-section .workshop-sign {
  color:#fff8ec;
  background:
    linear-gradient(145deg,rgba(255,253,248,.1),rgba(224,166,0,.14));
  border-color:rgba(255,214,107,.42);
  box-shadow:0 18px 48px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.16);
}

.hangbrief-section .workshop-reassurance {
  color:#fff3d8;
  background:rgba(255,253,248,.08);
  border-color:rgba(47,181,173,.34);
}

.hangbrief-shell {
  position:relative;
  display:grid;
  grid-template-columns:minmax(220px,.72fr) minmax(420px,1.15fr) minmax(238px,.68fr);
  gap:clamp(16px,2vw,24px);
  align-items:start;
  overflow-anchor:none;
  padding:clamp(16px,2vw,28px);
  border:1px solid var(--studio-line);
  border-radius:42px;
  background:
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px) 0 0/42px 42px,
    radial-gradient(circle at 50% 0%,rgba(47,181,173,.12),transparent 22rem),
    rgba(11,10,8,.62);
  box-shadow:0 30px 90px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.06);
}

.hangbrief-intro,
.studio-value-rail {
  color:#fff5df;
  border:1px solid rgba(255,226,166,.18);
  background:linear-gradient(145deg,rgba(38,31,22,.96),rgba(26,21,16,.96));
  box-shadow:0 20px 48px rgba(0,0,0,.2);
}

.hangbrief-card {
  border:2px solid rgba(255,214,107,.48);
  background:
    radial-gradient(circle at 88% 0%,rgba(47,181,173,.14),transparent 16rem),
    linear-gradient(145deg,#fff3d7,#fff8eb);
  box-shadow:0 20px 0 rgba(120,78,22,.16),0 30px 70px rgba(0,0,0,.22);
}

.hangbrief-card::before {
  content:"Most hanggá formáljuk.";
  display:inline-flex;
  margin:0 0 14px;
  padding:8px 12px;
  border-radius:999px;
  color:var(--teal2);
  background:rgba(47,181,173,.11);
  border:1px solid rgba(47,181,173,.2);
  font-family:'Caveat','Comic Sans MS',cursive;
  font-size:26px;
  font-weight:700;
  line-height:1;
}

.brief-step {
  scroll-margin-top:var(--workshop-scroll-offset);
}

.brief-step h3 {
  color:var(--brown);
}

.brief-step .note,
.brief-step label,
.checkout-admin-heading p {
  color:#5f5044;
}

.hangbrief-top {
  padding:14px;
  border:1px solid rgba(155,94,27,.12);
  border-radius:24px;
  background:rgba(255,253,248,.68);
}

.hangbrief-microcopy {
  color:#7a685b;
}

.workshop-live-summary {
  background:rgba(255,253,248,.06);
  border:1px solid rgba(255,226,166,.16);
}

.workshop-live-summary p {
  color:rgba(255,247,232,.7);
  background:rgba(255,253,248,.045);
  border-color:rgba(255,226,166,.1);
}

.workshop-live-summary span {
  color:#ffd66b;
}

.workshop-live-summary strong {
  color:#fff5df;
}

.workshop-live-summary p.is-current {
  background:rgba(255,214,107,.16);
  border-color:rgba(255,214,107,.32);
}

.workshop-live-summary p.is-done {
  background:rgba(34,182,107,.14);
  border-color:rgba(34,182,107,.34);
}

.checkout-mic-visual {
  border-color:rgba(255,226,166,.18);
  background:rgba(255,253,248,.08);
}

.sticky-price {
  border-color:rgba(255,226,166,.16);
  background:rgba(255,253,248,.08);
}

.sticky-price span {
  color:#ffb6a4;
}

.sticky-price strong {
  color:#7ee1aa;
}

.workshop-sticky > .note {
  color:rgba(255,247,232,.68);
}

.studio-value-rail {
  position:sticky;
  top:108px;
  display:grid;
  gap:18px;
  padding:24px;
  border-radius:28px;
}

.studio-value-rail h3 {
  margin:0;
  color:#fff7e8;
  font-size:clamp(26px,2.4vw,34px);
  line-height:1;
  letter-spacing:-.04em;
}

.studio-value-rail ul {
  display:grid;
  gap:13px;
  margin:0;
  padding:0;
  list-style:none;
}

.studio-value-rail li {
  position:relative;
  padding-left:30px;
  color:rgba(255,247,232,.72);
  font-weight:850;
  line-height:1.35;
}

.studio-value-rail li::before {
  content:"✓";
  position:absolute;
  left:0;
  top:-1px;
  display:grid;
  place-items:center;
  width:21px;
  height:21px;
  border-radius:999px;
  color:#0f0d09;
  background:#7ee1aa;
  font-size:13px;
  font-weight:950;
}

.studio-price-pill {
  display:grid;
  gap:3px;
  padding:18px;
  border-radius:22px;
  color:var(--brown);
  background:linear-gradient(145deg,#ffe08a,#f0b23d);
  box-shadow:0 14px 0 rgba(155,94,27,.42),0 24px 42px rgba(224,166,0,.18);
  text-align:center;
}

.studio-price-pill span {
  font-size:13px;
  font-weight:950;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.studio-price-pill strong {
  font-size:clamp(32px,3vw,44px);
  line-height:.95;
  letter-spacing:-.055em;
}

.studio-value-rail p {
  margin:0;
  color:rgba(255,247,232,.68);
  font-size:14px;
  font-weight:850;
}

.brief-step select[data-choice-select] {
  position:absolute;
  width:1px;
  height:1px;
  margin:-1px;
  padding:0;
  border:0;
  opacity:0;
  pointer-events:none;
}

.choice-card-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:14px 0 22px;
}

.choice-card {
  display:grid;
  gap:6px;
  min-height:86px;
  padding:16px;
  border:1px solid rgba(155,94,27,.18);
  border-radius:22px;
  color:var(--brown);
  background:linear-gradient(145deg,#fffdf8,#fff3d7);
  font:inherit;
  text-align:left;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(43,30,24,.07);
  transition:.18s transform,.18s border-color,.18s box-shadow,.18s background;
}

.choice-card span {
  color:var(--navy);
  font-size:17px;
  font-weight:950;
  line-height:1.1;
}

.choice-card small {
  color:#79675a;
  font-size:13px;
  font-weight:820;
  line-height:1.25;
}

.choice-card:hover,
.choice-card:focus-visible {
  transform:translateY(-3px);
  border-color:rgba(47,181,173,.48);
  background:linear-gradient(145deg,#fffdf8,#e8fbf8);
  box-shadow:0 18px 36px rgba(47,181,173,.13);
  outline:0;
}

.choice-card.is-selected {
  border-color:rgba(47,181,173,.78);
  background:
    radial-gradient(circle at 92% 16%,rgba(47,181,173,.2),transparent 6rem),
    linear-gradient(145deg,#f6fffb,#ddf8f4);
  box-shadow:0 18px 38px rgba(47,181,173,.16), inset 0 0 0 2px rgba(47,181,173,.24);
}

.choice-card.is-selected::after {
  content:"Kiválasztva";
  justify-self:start;
  padding:5px 9px;
  border-radius:999px;
  color:#fff;
  background:var(--teal2);
  font-size:11px;
  font-weight:950;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.choice-card.is-trust-choice {
  border-color:rgba(224,166,0,.36);
  background:linear-gradient(145deg,#fff7df,#fff0be);
}

.message-confirm,
[data-brief-next] {
  color:var(--brown);
  background:
    radial-gradient(circle at 50% 20%,rgba(255,255,255,.58),transparent 38%),
    linear-gradient(135deg,#ffd66b,#f0b23d);
  box-shadow:0 18px 30px rgba(155,94,27,.22),0 8px 0 #8d5118;
}

.message-confirm:hover,
[data-brief-next]:hover {
  color:var(--brown);
  background:
    radial-gradient(circle at 50% 20%,rgba(255,255,255,.7),transparent 38%),
    linear-gradient(135deg,#ffe08a,#f5b73c);
  box-shadow:0 24px 42px rgba(155,94,27,.28),0 9px 0 #7c4513;
}

@media (max-width:1120px) {
  .hangbrief-shell {
    grid-template-columns:minmax(220px,.8fr) minmax(0,1.2fr);
  }

  .studio-value-rail {
    grid-column:1 / -1;
    position:static;
    grid-template-columns:1fr auto;
    align-items:center;
  }

  .studio-value-rail ul {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:767px) {
  :root {
    --workshop-scroll-offset:88px;
  }

  .hangbrief-section {
    margin-top:32px;
    padding:38px 0 48px;
    background:
      radial-gradient(circle at 50% -6%,rgba(224,166,0,.18),transparent 18rem),
      linear-gradient(145deg,#0f0d09,#1b150f);
  }

  .hangbrief-section .wrap {
    width:min(100% - 24px, 620px);
  }

  .hangbrief-shell {
    display:flex;
    flex-direction:column;
    padding:12px;
    border-radius:32px;
    background:rgba(11,10,8,.62);
  }

  .hangbrief-card {
    min-height:auto;
    padding:18px;
    border-radius:26px;
    box-shadow:0 14px 0 rgba(120,78,22,.12),0 22px 48px rgba(0,0,0,.2);
  }

  .hangbrief-card::before {
    font-size:23px;
  }

  .hangbrief-intro {
    background:rgba(255,253,248,.06);
    border-color:rgba(255,226,166,.14);
  }

  .checkout-mic-visual {
    display:none;
  }

  .studio-value-rail {
    display:none;
  }

  .choice-card-grid {
    grid-template-columns:1fr;
    gap:10px;
  }

  .choice-card {
    min-height:76px;
    padding:15px;
    border-radius:20px;
  }

  .choice-card span {
    font-size:16px;
  }

  .choice-card small {
    font-size:12px;
  }

  .hangbrief-top {
    padding:12px;
    border-radius:20px;
  }
}

/* Audit phase 4 final overrides after legacy checkout rules. */
.value-showcase.compact-offer {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,420px);
  align-items:center;
}

.value-showcase.compact-offer .green-price {
  display:block;
  font-size:clamp(48px,8vw,86px);
}

.precheckout-details {
  width:100%;
}

.precheckout-detail-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.brief-step[data-step="1"].is-active textarea {
  border-color:rgba(177,65,55,.36);
  animation:softInputFocus 2.8s ease-in-out infinite;
}

.message-confirm,
.brief-actions .pill:not(.outline) {
  animation:softCtaBreath 2.8s ease-in-out infinite;
}

@media (max-width:900px) {
  .value-showcase.compact-offer {
    grid-template-columns:1fr;
  }

  .precheckout-detail-grid {
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:640px) {
  .precheckout-detail-grid {
    grid-template-columns:1fr;
  }

  .value-showcase.compact-offer {
    text-align:center;
  }
}

@media (max-width:640px) {
  html,
  body {
    overflow-x:hidden;
  }

  .page-hero .hero-panel h1 {
    font-size:clamp(34px,10.5vw,46px) !important;
    line-height:.95 !important;
    max-width:100%;
    overflow-wrap:normal;
    word-break:normal;
  }

  .page-hero-subtitle {
    max-width:calc(100vw - 44px);
    margin-left:auto;
    margin-right:auto;
    overflow-wrap:break-word;
  }
}

/* V2 audit: leaner Próba-Spot offer and 4-step Hangemberműhely flow. */
.value-showcase.compact-offer {
  grid-template-columns:minmax(0,1fr) minmax(280px,440px);
  gap:28px;
  overflow:hidden;
}

.value-showcase.compact-offer h2 {
  margin-bottom:14px;
  font-size:clamp(42px,6vw,76px);
  line-height:.92;
}

.value-showcase.compact-offer .green-price {
  color:#0b1022;
  font-size:clamp(48px,7vw,82px);
  letter-spacing:-.055em;
  text-shadow:none;
}

.value-showcase.compact-offer .almost-ready {
  margin:14px 0 0;
  color:#7a5a32;
  font-weight:950;
}

.workshop-next-note {
  margin:8px 0 12px;
  color:#9a6a20;
  font-weight:900;
}

.compact-offer-visual {
  margin:0;
  padding:10px;
  border:1px solid rgba(232,181,78,.24);
  border-radius:30px;
  background:rgba(255,252,242,.64);
  box-shadow:0 24px 64px rgba(39,28,18,.16);
}

.compact-offer-visual img {
  display:block;
  width:100%;
  border-radius:24px;
}

.confidence-grid {
  display:grid;
  gap:12px;
}

.precheckout-details {
  border:1px solid rgba(91,67,42,.14);
  border-radius:22px;
  background:rgba(255,252,242,.78);
}

.precheckout-details summary {
  padding:17px 20px;
  cursor:pointer;
  font-weight:950;
}

.simple-detail-list {
  display:grid;
  gap:8px;
  padding:0 20px 18px;
}

.simple-detail-list p {
  margin:0;
  color:#6c5848;
  font-weight:800;
}

.brief-step::after {
  display:none !important;
  content:none !important;
}

.brief-step h3 {
  text-align:center;
}

.message-confirm,
.brief-actions [data-brief-next] {
  display:flex;
  margin-left:auto;
  margin-right:auto;
}

.brief-actions {
  justify-content:center;
}

.brief-step .note {
  text-align:center;
}

.hangbrief-step-count {
  width:100%;
  justify-content:center;
  text-align:center;
}

.choice-card-grid {
  grid-template-columns:repeat(2,minmax(0,1fr));
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}

.choice-card {
  position:relative;
  min-height:86px;
}

.choice-card small {
  color:#7c6754;
}

.choice-card.is-selected {
  border-color:rgba(232,181,78,.92);
  background:
    radial-gradient(circle at 92% 14%,rgba(232,181,78,.22),transparent 5.5rem),
    linear-gradient(145deg,#fffaf0,#fff0bf);
  box-shadow:0 20px 42px rgba(180,126,42,.18), inset 0 0 0 2px rgba(232,181,78,.28);
}

.choice-card.is-selected::after {
  background:#b8751a;
}

.studio-value-rail.studio-visual-rail {
  padding:12px;
  border-radius:34px;
  background:linear-gradient(180deg,rgba(255,247,232,.1),rgba(255,247,232,.04));
}

.studio-visual-rail figure {
  margin:0;
}

.studio-visual-rail img {
  display:block;
  width:100%;
  border-radius:26px;
  box-shadow:0 26px 58px rgba(0,0,0,.28);
}

.studio-visual-rail figcaption {
  margin:12px 6px 2px;
  color:rgba(255,247,232,.78);
  font-weight:900;
  text-align:center;
}

.workshop-live-summary [data-summary-item] {
  border-color:rgba(255,231,176,.14);
  background:rgba(255,247,232,.055);
}

.workshop-live-summary [data-summary-item].is-done {
  border-color:rgba(232,181,78,.34);
  background:rgba(255,247,232,.12);
}

.workshop-live-summary [data-summary-item].is-done strong {
  color:#f2c66d;
}

.checkout-admin-stage {
  gap:18px;
}

.checkout-admin-heading {
  text-align:center;
}

.checkout-admin-heading p {
  max-width:620px;
  margin-left:auto;
  margin-right:auto;
}

.brief-actions [data-brief-submit] {
  min-width:min(100%,520px);
}

.checkout-trust-row {
  justify-content:center;
}

@media (max-width:1120px) {
  .studio-value-rail.studio-visual-rail {
    display:none;
  }
}

@media (max-width:900px) {
  .value-showcase.compact-offer {
    grid-template-columns:1fr;
  }

  .compact-offer-visual {
    max-width:560px;
    justify-self:center;
  }
}

@media (max-width:767px) {
  .hangbrief-step-count {
    min-height:44px;
    font-size:16px;
  }

  .choice-card-grid {
    grid-template-columns:1fr;
  }

  .choice-card {
    min-height:70px;
  }

  .brief-actions {
    gap:12px;
  }

  .brief-actions .pill,
  .message-confirm {
    width:100%;
    min-height:58px;
  }

  .value-showcase.compact-offer {
    gap:20px;
  }

  .compact-offer-visual {
    display:none;
  }

  .value-showcase.compact-offer h2 {
    font-size:clamp(30px,9vw,36px) !important;
    line-height:.96 !important;
    letter-spacing:-.045em;
    white-space:normal;
    overflow-wrap:normal;
    word-break:normal;
  }
}

/* 2026-05-16 final checkout tuning: calmer intro, stronger payment focus. */
.hangbrief-section .workshop-heading {
  display:grid;
  gap:clamp(8px,1.2vw,14px);
  max-width:820px;
  margin:0 auto clamp(32px,4vw,52px);
  text-align:center;
}

.hangbrief-section .workshop-heading h2 {
  margin:0;
}

.hangbrief-section .workshop-heading p {
  max-width:680px;
  margin:0 auto;
  line-height:1.35;
}

.hangbrief-section .workshop-core-line {
  font-size:clamp(24px,3vw,38px) !important;
  line-height:1.05 !important;
  color:#fff4df !important;
}

.hangbrief-section .workshop-reassurance {
  padding:10px 16px;
  border:1px solid rgba(242,198,109,.18);
  border-radius:999px;
  background:rgba(255,247,232,.07);
  color:rgba(255,247,232,.78) !important;
  font-size:clamp(15px,1.5vw,18px) !important;
  font-weight:800 !important;
}

.workshop-return-greeting:not([hidden]) {
  display:inline-flex;
  justify-self:center;
  width:auto;
  max-width:100%;
  margin-top:2px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(47,181,173,.1);
  color:rgba(255,247,232,.72);
  font-size:14px;
  font-weight:800;
}

.brief-actions {
  display:grid;
  justify-items:center;
  gap:14px;
  width:100%;
}

.brief-actions [data-brief-submit] {
  order:1;
  width:min(100%,660px);
  min-height:76px;
  padding:18px 28px;
  border-radius:30px;
  background:linear-gradient(135deg,#ffb234 0%,#ff6b2b 52%,#f04425 100%) !important;
  box-shadow:0 30px 62px rgba(240,68,37,.26),0 9px 0 #8f2e14,inset 0 1px 0 rgba(255,255,255,.34) !important;
  color:#1d1208 !important;
  font-size:clamp(19px,2.1vw,27px);
  letter-spacing:-.015em;
  animation:finalPaymentBreath 2.4s ease-in-out infinite;
}

.brief-actions [data-brief-submit] small {
  font-size:clamp(16px,1.8vw,21px);
  color:#2b1708;
}

.brief-actions [data-brief-next] {
  order:2;
  width:min(100%,560px);
}

.brief-actions [data-brief-prev] {
  order:3;
  min-height:44px;
  padding:8px 16px;
  border:0;
  background:transparent;
  box-shadow:none;
  color:#188a84;
  text-decoration:underline;
  text-underline-offset:4px;
  opacity:.78;
}

.brief-actions [data-brief-prev]:hover,
.brief-actions [data-brief-prev]:focus-visible {
  opacity:1;
  color:#f2c66d;
  transform:none;
}

.checkout-microcopy:not([hidden]) {
  margin-top:8px;
  color:rgba(255,247,232,.72);
}

@keyframes finalPaymentBreath {
  0%, 100% {
    transform:translateY(0) scale(1);
    filter:saturate(1);
  }
  50% {
    transform:translateY(-2px) scale(1.012);
    filter:saturate(1.06);
  }
}

@media (max-width:767px) {
  .hangbrief-section .workshop-heading {
    margin-bottom:28px;
  }

  .hangbrief-section .workshop-reassurance {
    border-radius:22px;
  }

  .brief-actions [data-brief-submit] {
    width:100%;
    min-height:72px;
    padding:17px 18px;
  }

  .brief-actions [data-brief-prev] {
    color:#188a84;
  }
}

/* 2026-05-17 launch hierarchy: cleaner workshop entry, safe green payment, missing-field focus. */
.value-showcase.compact-offer {
  margin-bottom:clamp(42px,6vw,82px);
}

.value-showcase.compact-offer .almost-ready,
.precheckout-confidence {
  display:none !important;
}

.hangbrief-section .workshop-heading {
  gap:clamp(14px,2vw,24px) !important;
  margin-bottom:clamp(42px,5vw,72px) !important;
}

.hangbrief-section .workshop-core-line {
  font-size:clamp(28px,3.5vw,46px) !important;
  letter-spacing:-.04em;
}

.hangbrief-section .workshop-reassurance {
  width:max-content;
  max-width:min(100%, 520px);
  padding:12px 20px !important;
  border-color:rgba(242,198,109,.22) !important;
  background:rgba(255,247,232,.06) !important;
  box-shadow:0 18px 42px rgba(0,0,0,.14);
}

.hangbrief-card,
.workshop-live-summary,
.checkout-admin-stage .billing-block,
.checkout-admin-stage .payment-legal,
.success-field,
.choice-card {
  box-shadow:0 22px 64px rgba(0,0,0,.16),inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.success-field.is-valid {
  box-shadow:0 14px 34px rgba(30,130,91,.12),inset 0 1px 0 rgba(255,255,255,.1) !important;
}

.choice-card.is-selected,
.checkout-admin-stage .admin-checkitem.is-complete {
  box-shadow:0 16px 42px rgba(35,142,98,.13),inset 0 1px 0 rgba(255,255,255,.12) !important;
}

.brief-actions [data-brief-submit],
.mobile-ready-panel [data-mobile-ready-submit] {
  background:linear-gradient(135deg,#d7f9bd 0%,#77df89 46%,#169b65 100%) !important;
  box-shadow:0 24px 58px rgba(22,155,101,.24),0 9px 0 #0a5d3b,inset 0 1px 0 rgba(255,255,255,.44) !important;
  color:#071710 !important;
}

.brief-actions [data-brief-submit] small,
.mobile-ready-panel [data-mobile-ready-submit] small {
  color:#06351f !important;
}

.brief-actions [data-brief-submit]:hover,
.brief-actions [data-brief-submit]:focus-visible,
.mobile-ready-panel [data-mobile-ready-submit]:hover,
.mobile-ready-panel [data-mobile-ready-submit]:focus-visible {
  filter:saturate(1.08);
  transform:translateY(-2px) scale(1.01);
}

.field-needs-attention {
  position:relative;
  z-index:2;
  animation:hangbriefFieldGlow 1.15s ease-in-out 2;
}

.field-needs-attention input,
.field-needs-attention textarea,
.field-needs-attention select {
  border-color:#f2c66d !important;
  box-shadow:0 0 0 4px rgba(242,198,109,.18),0 18px 44px rgba(242,198,109,.12) !important;
}

.field-needs-attention.checkbox-row,
.field-needs-attention.admin-checkitem,
.field-needs-attention.brief-step {
  border-color:rgba(242,198,109,.58) !important;
  box-shadow:0 0 0 4px rgba(242,198,109,.14),0 22px 58px rgba(0,0,0,.2) !important;
}

@keyframes hangbriefFieldGlow {
  0%, 100% {
    transform:translateY(0);
    filter:saturate(1);
  }
  50% {
    transform:translateY(-2px);
    filter:saturate(1.12);
  }
}

@media (max-width:767px) {
  .hangbrief-section .workshop-heading {
    margin-bottom:34px !important;
  }

  .hangbrief-section .workshop-reassurance {
    width:100%;
    border-radius:24px !important;
  }

  .brief-actions [data-brief-submit],
  .mobile-ready-panel [data-mobile-ready-submit] {
    min-height:76px !important;
  }
}

/* 2026-05-17 launch hotfix: clearer choices, red payment action, calmer depth. */
.page-hero-subtitle .brand-script {
  color:#e0a600 !important;
}

.workshop-handwrite p {
  color:#9b5e1b;
  font-size:clamp(42px,7vw,82px);
  line-height:.92;
}

.brief-step h3 {
  margin-bottom:clamp(22px,3vw,34px);
}

.brief-step[data-step="2"] h3,
.brief-step[data-step="3"] h3 {
  margin-bottom:clamp(28px,4vw,48px);
}

.choice-card-grid {
  gap:clamp(14px,2vw,20px);
  margin-top:0;
}

.choice-card {
  isolation:isolate;
  min-height:104px;
  border-color:rgba(242,198,109,.22) !important;
  background:linear-gradient(145deg,rgba(255,253,248,.88),rgba(255,241,202,.74)) !important;
  box-shadow:0 14px 38px rgba(43,30,24,.1),inset 0 1px 0 rgba(255,255,255,.18) !important;
  transform:translateY(0) scale(1);
  animation:choiceLivingGlow 3.8s ease-in-out infinite;
  transition:transform .22s cubic-bezier(.22,1,.36,1), border-color .22s ease, box-shadow .22s ease, background .22s ease, opacity .22s ease !important;
}

.choice-card:not(.is-selected) {
  opacity:.84;
}

.choice-card:hover,
.choice-card:focus-visible {
  opacity:1;
  transform:translateY(-4px) scale(1.018) !important;
  border-color:rgba(242,198,109,.62) !important;
  background:linear-gradient(145deg,#fffdf8,#fff2c8) !important;
  box-shadow:0 22px 54px rgba(180,126,42,.16),0 0 0 4px rgba(242,198,109,.08),inset 0 1px 0 rgba(255,255,255,.26) !important;
}

.choice-card.is-tapped {
  animation:choiceTapBounce .34s cubic-bezier(.22,1,.36,1) !important;
}

.choice-card.is-selected {
  opacity:1;
  border-color:rgba(242,198,109,.92) !important;
  background:
    radial-gradient(circle at 92% 12%,rgba(242,198,109,.32),transparent 5.8rem),
    linear-gradient(145deg,#fff9e8,#ffe69b) !important;
  box-shadow:0 24px 62px rgba(180,126,42,.24),0 0 0 4px rgba(242,198,109,.12),inset 0 0 0 2px rgba(242,198,109,.34) !important;
}

.choice-card.is-selected::after {
  background:linear-gradient(135deg,#f2c66d,#b8751a) !important;
  color:#271706 !important;
  box-shadow:0 8px 20px rgba(184,117,26,.22);
  animation:selectedBadgeBreath 1.8s ease-in-out infinite;
}

@keyframes choiceLivingGlow {
  0%,100% { filter:saturate(1); }
  50% { filter:saturate(1.04); }
}

@keyframes choiceTapBounce {
  0% { transform:scale(.985); }
  62% { transform:scale(1.025); }
  100% { transform:scale(1); }
}

@keyframes selectedBadgeBreath {
  0%,100% { transform:translateY(0); filter:saturate(1); }
  50% { transform:translateY(-1px); filter:saturate(1.12); }
}

.hangbrief-card,
.workshop-live-summary,
.checkout-admin-stage .billing-block,
.checkout-admin-stage .payment-legal,
.success-field,
.choice-card {
  box-shadow:0 18px 54px rgba(0,0,0,.13),inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.success-field.is-valid {
  box-shadow:0 10px 26px rgba(30,130,91,.08),inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.studio-visual-rail figcaption {
  display:none !important;
}

.studio-value-rail.studio-visual-rail {
  align-self:start;
}

.brief-actions {
  grid-template-columns:1fr;
  justify-items:center;
}

.brief-actions [data-brief-submit],
.mobile-ready-panel [data-mobile-ready-submit] {
  order:1;
  width:min(100%,660px);
  min-height:84px !important;
  padding:20px 30px !important;
  border:1px solid rgba(255,255,255,.22) !important;
  border-radius:32px !important;
  background:
    radial-gradient(circle at 50% 14%,rgba(255,255,255,.38),transparent 34%),
    linear-gradient(135deg,#ff8a4f 0%,#ff392c 48%,#b91412 100%) !important;
  box-shadow:0 30px 72px rgba(217,45,32,.32),0 10px 0 #74110f,inset 0 1px 0 rgba(255,255,255,.4) !important;
  color:#fff8ea !important;
  text-shadow:0 1px 0 rgba(0,0,0,.18);
  animation:finalPaymentRedPulse 2.05s ease-in-out infinite !important;
}

.brief-actions [data-brief-submit] span,
.mobile-ready-panel [data-mobile-ready-submit] span {
  font-size:clamp(22px,2.5vw,32px);
  line-height:1.05;
}

.brief-actions [data-brief-submit] small,
.mobile-ready-panel [data-mobile-ready-submit] small {
  color:#fff0c9 !important;
  font-size:clamp(18px,2vw,24px);
}

.brief-actions [data-brief-submit]:hover,
.brief-actions [data-brief-submit]:focus-visible,
.mobile-ready-panel [data-mobile-ready-submit]:hover,
.mobile-ready-panel [data-mobile-ready-submit]:focus-visible {
  transform:translateY(-3px) scale(1.012) !important;
  filter:saturate(1.08);
}

.brief-actions [data-brief-prev] {
  order:3;
  margin-top:6px;
  min-height:42px;
  padding:8px 16px;
  border:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  color:rgba(255,247,232,.68) !important;
  text-decoration:underline;
  text-underline-offset:4px;
}

@keyframes finalPaymentRedPulse {
  0%,100% {
    transform:translateY(0) scale(1);
    box-shadow:0 30px 72px rgba(217,45,32,.32),0 10px 0 #74110f,inset 0 1px 0 rgba(255,255,255,.4);
  }
  50% {
    transform:translateY(-2px) scale(1.01);
    box-shadow:0 38px 86px rgba(217,45,32,.42),0 10px 0 #74110f,0 0 0 12px rgba(255,57,44,0),inset 0 1px 0 rgba(255,255,255,.45);
  }
}

@media (max-width:767px) {
  .choice-card-grid {
    grid-template-columns:1fr;
  }

  .choice-card {
    min-height:86px;
    padding:17px 18px;
  }

  .brief-actions [data-brief-submit],
  .mobile-ready-panel [data-mobile-ready-submit] {
    width:100%;
    min-height:80px !important;
    padding:18px 18px !important;
  }
}

@media (prefers-reduced-motion:reduce) {
  .choice-card,
  .choice-card.is-selected::after,
  .brief-actions [data-brief-submit],
  .mobile-ready-panel [data-mobile-ready-submit] {
    animation:none !important;
  }
}

/* 2026-05-18 requested workshop polish: clearer decisions, cleaner layers, guided legal focus. */
.hangbrief-section {
  background:linear-gradient(145deg,#0f0d09,#1d1710 64%,#120f0a) !important;
}

.hangbrief-shell {
  background:rgba(11,10,8,.74) !important;
  box-shadow:0 28px 78px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.05) !important;
}

.hangbrief-card::before {
  display:none !important;
  content:none !important;
}

.studio-value-rail.studio-visual-rail {
  padding:0 !important;
  border-color:rgba(255,226,166,.12) !important;
  background:transparent !important;
  box-shadow:none !important;
}

.studio-visual-rail img {
  box-shadow:0 18px 42px rgba(0,0,0,.18) !important;
}

.checkout-admin-stage .admin-checkitem.is-complete {
  border-color:rgba(91,67,42,.14) !important;
  background:rgba(255,250,240,.7) !important;
  box-shadow:0 12px 28px rgba(43,30,24,.06), inset 0 1px 0 rgba(255,255,255,.12) !important;
}

.checkout-admin-stage .admin-checkitem.is-complete .admin-checkitem__status {
  color:#3f7f5d !important;
}

.success-field.is-valid {
  box-shadow:0 10px 26px rgba(43,30,24,.06), inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.field-check {
  box-shadow:none !important;
  outline:0 !important;
}

.brief-actions [data-brief-prev] {
  min-height:38px !important;
  padding:6px 12px !important;
  color:#7a5a32 !important;
  text-decoration:none !important;
  opacity:.82;
}

.brief-actions [data-brief-prev]:hover,
.brief-actions [data-brief-prev]:focus-visible {
  color:#16847f !important;
  opacity:1;
}

.brief-step[data-step="2"] > h3,
.brief-step[data-step="3"] > h3 {
  color:#ff392c !important;
}

.choice-card {
  position:relative;
  place-items:center;
  align-content:center;
  justify-content:center;
  min-height:108px;
  padding:18px 14px !important;
  border-color:var(--choice-line, rgba(91,67,42,.16)) !important;
  background:linear-gradient(145deg,var(--choice-soft, #fffdf8),var(--choice-warm, #fff1ca)) !important;
  box-shadow:0 14px 34px rgba(43,30,24,.1), inset 0 1px 0 rgba(255,255,255,.26) !important;
  text-align:center !important;
  animation:choiceDecisionBreathe 4.8s ease-in-out infinite !important;
}

.choice-card:nth-child(4n+1) {
  --choice-line:rgba(22,138,132,.56);
  --choice-soft:#dff9f2;
  --choice-warm:#70ded0;
  --choice-accent:#168a84;
  animation-delay:0s !important;
}

.choice-card:nth-child(4n+2) {
  --choice-line:rgba(188,128,24,.56);
  --choice-soft:#fff0b8;
  --choice-warm:#f2c66d;
  --choice-accent:#bc8018;
  animation-delay:.36s !important;
}

.choice-card:nth-child(4n+3) {
  --choice-line:rgba(42,126,190,.56);
  --choice-soft:#e6f5ff;
  --choice-warm:#88c7f2;
  --choice-accent:#2a7ebe;
  animation-delay:.72s !important;
}

.choice-card:nth-child(4n+4) {
  --choice-line:rgba(104,82,196,.52);
  --choice-soft:#f0ebff;
  --choice-warm:#c7b4ff;
  --choice-accent:#6852c4;
  animation-delay:1.08s !important;
}

.choice-card span {
  display:block;
  color:#171523 !important;
  max-width:13ch;
  margin:auto;
  font-size:clamp(17px, 2.3vw, 22px) !important;
  font-weight:1000 !important;
  line-height:1.1 !important;
  text-align:center !important;
}

.choice-card small {
  display:none !important;
}

.choice-card:hover,
.choice-card:focus-visible {
  border-color:var(--choice-accent, #f2c66d) !important;
  background:linear-gradient(145deg,var(--choice-soft, #fffdf8),#fffaf0) !important;
  box-shadow:0 22px 52px rgba(43,30,24,.14),0 0 0 4px rgba(255,255,255,.42),inset 0 1px 0 rgba(255,255,255,.34) !important;
}

.choice-card.is-selected {
  animation:none !important;
  border-color:rgba(242,198,109,.9) !important;
  background:
    radial-gradient(circle at 92% 14%,rgba(255,255,255,.44),transparent 5.8rem),
    linear-gradient(145deg,var(--choice-soft, #fff9e8),var(--choice-warm, #ffe69b)) !important;
  box-shadow:0 24px 58px rgba(43,30,24,.16),0 0 0 4px rgba(242,198,109,.14),inset 0 0 0 2px rgba(242,198,109,.34) !important;
}

.choice-card.is-selected::after {
  content:none !important;
}

.payment-legal .checkbox-row.needs-legal-pulse {
  border-color:rgba(242,198,109,.72) !important;
  background:rgba(255,248,232,.9) !important;
  box-shadow:0 0 0 4px rgba(242,198,109,.13),0 18px 46px rgba(120,78,22,.12) !important;
}

.payment-legal .checkbox-row.needs-legal-pulse input[name="aszf_accepted"] {
  accent-color:#f2c66d;
  animation:legalCheckboxPulse 1.05s ease-in-out infinite;
}

@keyframes choiceDecisionBreathe {
  0%, 100% {
    transform:translateY(0) scale(1);
    filter:saturate(1);
  }
  50% {
    transform:translateY(-3px) scale(1.012);
    filter:saturate(1.08);
  }
}

@keyframes legalCheckboxPulse {
  0%, 100% {
    transform:scale(1);
    box-shadow:0 0 0 0 rgba(242,198,109,.42);
  }
  50% {
    transform:scale(1.18);
    box-shadow:0 0 0 9px rgba(242,198,109,0);
  }
}

/* 2026-05-18 summary progress: warm luxury progression palette. */
.workshop-live-summary {
  border:1px solid rgba(244,214,150,.24) !important;
  background:
    radial-gradient(circle at 50% 0%,rgba(255,231,176,.24),transparent 46%),
    linear-gradient(145deg,rgba(255,253,248,.14),rgba(255,253,248,.05)) !important;
}

.workshop-live-summary [data-summary-item] {
  --summary-accent:#d79c37;
  --summary-accent-deep:#a76e22;
  --summary-soft:#fff0bf;
  --summary-soft-strong:#ffe3a1;
  --summary-line:rgba(215,156,55,.44);
  --summary-label:#8b5c19;
  --summary-strong:#4d3212;
  --summary-note:#7a4e16;
  --summary-glow:rgba(215,156,55,.16);
  border-color:var(--summary-line) !important;
  background:
    radial-gradient(circle at 88% 10%,rgba(255,255,255,.72),transparent 42%),
    linear-gradient(145deg,var(--summary-soft),rgba(255,253,248,.86)) !important;
  color:var(--summary-label) !important;
  box-shadow:0 14px 34px var(--summary-glow), inset 0 1px 0 rgba(255,255,255,.62) !important;
}

.workshop-live-summary [data-summary-item] span {
  color:var(--summary-label) !important;
}

.workshop-live-summary [data-summary-item] strong {
  color:var(--summary-strong) !important;
}

.workshop-live-summary [data-summary-item]:before {
  background:rgba(116,103,92,.24) !important;
  box-shadow:none !important;
}

.workshop-live-summary [data-summary-item].is-current {
  border-color:var(--summary-line) !important;
  background:
    radial-gradient(circle at 88% 10%,rgba(255,255,255,.78),transparent 42%),
    linear-gradient(145deg,var(--summary-soft-strong),rgba(255,253,248,.9)) !important;
  box-shadow:0 16px 38px var(--summary-glow), inset 0 1px 0 rgba(255,255,255,.66) !important;
}

.workshop-live-summary [data-summary-item].is-current:before {
  background:linear-gradient(145deg,var(--summary-accent),var(--summary-accent-deep)) !important;
  box-shadow:0 0 0 5px rgba(255,253,248,.46),0 12px 24px var(--summary-glow) !important;
}

.workshop-live-summary [data-summary-item="message"] {
  --summary-accent:#d79c37;
  --summary-accent-deep:#a76e22;
  --summary-soft:#fff0bf;
  --summary-soft-strong:#ffe3a1;
  --summary-line:rgba(215,156,55,.46);
  --summary-label:#8b5c19;
  --summary-strong:#4d3212;
  --summary-note:#7a4e16;
  --summary-glow:rgba(215,156,55,.16);
}

.workshop-live-summary [data-summary-item="audience"] {
  --summary-accent:#33afa7;
  --summary-accent-deep:#16847e;
  --summary-soft:#d8f7f2;
  --summary-soft-strong:#bff1eb;
  --summary-line:rgba(51,175,167,.42);
  --summary-label:#11756f;
  --summary-strong:#0d504c;
  --summary-note:#176d67;
  --summary-glow:rgba(51,175,167,.14);
}

.workshop-live-summary [data-summary-item="tone"] {
  --summary-accent:#d97752;
  --summary-accent-deep:#a64f35;
  --summary-soft:#ffd8c7;
  --summary-soft-strong:#ffc2aa;
  --summary-line:rgba(217,119,82,.44);
  --summary-label:#9a4d34;
  --summary-strong:#63301f;
  --summary-note:#88442d;
  --summary-glow:rgba(217,119,82,.15);
}

.workshop-live-summary [data-summary-item="email"] {
  --summary-accent:#c8953f;
  --summary-accent-deep:#956524;
  --summary-soft:#ffe7b6;
  --summary-soft-strong:#ffd48a;
  --summary-line:rgba(200,149,63,.46);
  --summary-label:#8a5c1f;
  --summary-strong:#5b3a12;
  --summary-note:#7b511b;
  --summary-glow:rgba(200,149,63,.16);
}

.workshop-live-summary [data-summary-item="payment"] {
  --summary-accent:#5fa66b;
  --summary-accent-deep:#377a48;
  --summary-soft:#dff5d9;
  --summary-soft-strong:#c7edbd;
  --summary-line:rgba(95,166,107,.48);
  --summary-label:#3d7d47;
  --summary-strong:#285b34;
  --summary-note:#397244;
  --summary-glow:rgba(95,166,107,.15);
}

.workshop-live-summary [data-summary-item].is-done {
  border-color:var(--summary-line) !important;
  background:
    radial-gradient(circle at 88% 12%,rgba(255,255,255,.76),transparent 42%),
    linear-gradient(145deg,var(--summary-soft-strong),rgba(255,253,248,.9)) !important;
  box-shadow:0 16px 36px var(--summary-glow), inset 0 1px 0 rgba(255,255,255,.68) !important;
}

.workshop-live-summary [data-summary-item].is-done span,
.workshop-live-summary [data-summary-item].is-done:after {
  color:var(--summary-note) !important;
}

.workshop-live-summary [data-summary-item].is-done strong {
  color:var(--summary-strong) !important;
  font-family:'Caveat','Comic Sans MS',cursive;
  font-size:clamp(24px,2.2vw,30px);
  font-weight:800;
  line-height:.98;
  letter-spacing:0;
}

.workshop-live-summary [data-summary-item].is-done:after {
  font-family:'Caveat','Comic Sans MS',cursive;
  font-size:18px;
  font-weight:800;
  line-height:1;
}

.workshop-live-summary [data-summary-item].is-done:before {
  background:linear-gradient(145deg,var(--summary-accent),var(--summary-accent-deep)) !important;
  box-shadow:0 10px 22px var(--summary-glow),0 0 0 4px rgba(255,253,248,.58) !important;
}

.workshop-live-summary [data-summary-item].is-done.is-editable:hover,
.workshop-live-summary [data-summary-item].is-done.is-editable:focus-visible {
  border-color:var(--summary-line) !important;
  background:linear-gradient(145deg,rgba(255,253,248,.96),var(--summary-soft-strong)) !important;
  box-shadow:0 20px 42px var(--summary-glow), inset 0 1px 0 rgba(255,255,255,.72) !important;
}

.workshop-live-summary [data-summary-item].is-done.is-editable:hover:before,
.workshop-live-summary [data-summary-item].is-done.is-editable:focus-visible:before {
  background:linear-gradient(145deg,var(--summary-accent),var(--summary-accent-deep)) !important;
}

/* 2026-05-19 sidebar summary containment: prevent progress cards from bleeding into the main card. */
.hangbrief-intro,
.workshop-sticky,
.workshop-live-summary,
.workshop-live-summary [data-summary-item] {
  box-sizing:border-box;
  min-width:0;
  max-width:100%;
}

.hangbrief-intro {
  overflow:hidden;
}

.workshop-live-summary {
  width:100%;
}

.workshop-live-summary [data-summary-item] {
  width:100%;
  overflow:hidden;
}

.workshop-live-summary [data-summary-item] span,
.workshop-live-summary [data-summary-item] strong,
.workshop-live-summary [data-summary-item]::after {
  min-width:0;
  max-width:100%;
  overflow-wrap:anywhere;
  word-break:normal;
}

.workshop-live-summary [data-summary-item].is-done strong {
  max-width:calc(100% - 6px);
}

@media (max-width:767px) {
  .brief-actions [data-brief-prev] {
    width:auto !important;
    min-height:36px !important;
    color:#7a5a32 !important;
  }
}

@media (prefers-reduced-motion:reduce) {
  .choice-card,
  .payment-legal .checkbox-row.needs-legal-pulse input[name="aszf_accepted"] {
    animation:none !important;
  }
}

/* 2026-05-19 creator package landing: reklamhangu-rendszer tartalomgyartoknak. */
.creator-voice-page {
  --creator-black:#15120f;
  --creator-ink:#242424;
  --creator-paper:#f4ecdf;
  --creator-paper-strong:#fff8ec;
  --creator-warm:#d9c7ae;
  --creator-muted:#74685c;
  --creator-copper:#c87943;
  --creator-copper-dark:#8f4d2c;
  --creator-line:rgba(55,43,31,.16);
  --creator-dark-line:rgba(244,236,223,.16);
  background:
    radial-gradient(circle at 18% 0%,rgba(200,121,67,.18),transparent 32rem),
    linear-gradient(180deg,#17130f 0%,#221a14 38%,#f4ecdf 38%,#f4ecdf 100%);
  color:var(--creator-ink);
}

.creator-voice-page .simple-header {
  background:rgba(21,18,15,.96);
  border-bottom:1px solid rgba(244,236,223,.12);
}

.creator-voice-page .brand,
.creator-voice-page .nav-links a {
  color:#f7efe4;
}

.creator-voice-page .nav-links a:not(.nav-cta):hover {
  color:#f0b184;
}

.creator-voice-page .nav-cta {
  background:rgba(244,236,223,.08);
  border-color:rgba(244,236,223,.22);
  color:#fff8ec;
}

.creator-voice-page .site-footer {
  background:#15120f;
  color:#f4ecdf;
}

.creator-shell {
  width:min(100% - 48px,1220px);
  margin-inline:auto;
}

.creator-kicker {
  margin:0 0 18px;
  color:var(--creator-copper);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  font-weight:950;
}

.creator-hero {
  padding:clamp(50px,6vw,78px) 0 clamp(26px,4vw,42px);
  color:#f7efe4;
  background:
    radial-gradient(circle at 70% 14%,rgba(216,150,101,.12),transparent 24rem),
    linear-gradient(135deg,#15120f 0%,#221914 62%,#17130f 100%);
}

.creator-hero-grid {
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(320px,.86fr);
  gap:clamp(34px,5vw,72px);
  align-items:center;
}

.creator-hero-copy {
  max-width:720px;
  animation:creatorFadeUp .7s ease-out both;
}

.creator-hero h1 {
  max-width:14ch;
  margin:0;
  color:#fff8ec;
  font-size:clamp(50px,6.2vw,88px);
  line-height:.9;
  letter-spacing:-.065em;
  overflow-wrap:break-word;
  hyphens:auto;
}

.creator-hero-subtitle {
  display:grid;
  gap:5px;
  margin:clamp(24px,3vw,36px) 0 0;
  color:#eadfce;
  font-size:clamp(21px,2.4vw,32px);
  font-weight:850;
  line-height:1.15;
}

.creator-hero-text {
  max-width:620px;
  margin:24px 0 0;
  color:#d7c8b8;
  font-size:clamp(18px,1.55vw,22px);
  font-weight:760;
  line-height:1.55;
}

.creator-hero-relief {
  display:inline-flex;
  max-width:100%;
  margin:22px 0 0;
  padding:12px 16px;
  border:1px solid rgba(244,236,223,.18);
  border-radius:18px;
  color:#fff3df;
  background:rgba(244,236,223,.08);
  font-size:clamp(16px,1.4vw,19px);
  font-weight:950;
  line-height:1.25;
}

.creator-actions {
  display:flex;
  flex-wrap:wrap;
  gap:14px 18px;
  align-items:center;
  margin-top:32px;
}

.creator-button,
.creator-package-link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:15px 22px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  color:#fffaf2;
  background:#a85d38;
  box-shadow:0 10px 24px rgba(0,0,0,.18),0 4px 0 rgba(64,34,19,.42);
  text-decoration:none;
  font-weight:950;
  line-height:1.05;
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.creator-button:hover,
.creator-button:focus-visible,
.creator-package-link:hover,
.creator-package-link:focus-visible {
  color:#fffaf2;
  transform:translateY(-2px);
  filter:saturate(1.05);
  box-shadow:0 14px 30px rgba(0,0,0,.22),0 5px 0 rgba(64,34,19,.46);
}

.creator-action-note {
  color:#cbbbaa;
  font-family:'Caveat','Comic Sans MS',cursive;
  font-size:28px;
  font-weight:800;
}

.creator-hero-portrait {
  position:relative;
  margin:0;
  border-radius:38px;
  overflow:hidden;
  border:1px solid rgba(244,236,223,.18);
  background:#221a14;
  box-shadow:0 24px 62px rgba(0,0,0,.3);
  animation:creatorFadeUp .7s .12s ease-out both;
}

.creator-hero-portrait::after,
.creator-editorial-sticky figure::after,
.creator-dog-scene figure::after {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg,transparent 56%,rgba(0,0,0,.28)),
    radial-gradient(circle at 20% 15%,rgba(255,255,255,.12),transparent 10rem);
  mix-blend-mode:soft-light;
}

.creator-hero-portrait img {
  display:block;
  width:100%;
  height:clamp(380px,44vw,560px);
  object-fit:cover;
  object-position:54% 42%;
  filter:saturate(.92) contrast(1.05) sepia(.12);
}

.creator-hero-portrait figcaption {
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  padding:14px 16px;
  border:1px solid rgba(244,236,223,.16);
  border-radius:18px;
  color:#fff8ec;
  background:rgba(21,18,15,.66);
  font-weight:900;
}

.creator-strip {
  padding:20px 0;
  background:#f4ecdf;
}

.creator-strip-inner {
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  align-items:baseline;
  justify-content:center;
  padding:18px 22px;
  border-top:1px solid var(--creator-line);
  border-bottom:1px solid var(--creator-line);
  color:#38281d;
  text-align:center;
}

.creator-strip strong {
  font-size:clamp(22px,2.8vw,38px);
  line-height:1;
}

.creator-strip span {
  color:#6f5f51;
  font-weight:850;
}

.creator-strip em {
  color:#9f5733;
  font-family:'Caveat','Comic Sans MS',cursive;
  font-size:30px;
  font-style:normal;
  font-weight:800;
}

.creator-section {
  padding:clamp(68px,8vw,124px) 0;
  background:#f4ecdf;
}

.creator-packages {
  padding-top:clamp(38px,5vw,68px);
}

.creator-packages .creator-section-head {
  grid-template-columns:minmax(0,1fr) minmax(280px,.74fr);
  gap:clamp(18px,3vw,42px);
  max-width:none;
  align-items:end;
}

.creator-packages .creator-section-head h2 {
  max-width:none;
  font-size:clamp(34px,3.4vw,48px);
  line-height:.98;
}

.creator-packages .creator-section-head p:not(.creator-kicker) {
  max-width:760px;
  font-size:clamp(17px,1.35vw,19px);
  line-height:1.42;
}

.creator-section-head {
  display:grid;
  grid-template-columns:minmax(0,.86fr) minmax(280px,.64fr);
  gap:clamp(24px,5vw,70px);
  align-items:end;
  margin-bottom:clamp(24px,3vw,40px);
}

.creator-section-head h2,
.creator-rule-grid h2,
.creator-limit-panel strong,
.creator-editorial-sticky h2,
.creator-dog-grid h2,
.creator-final-panel h2 {
  margin:0;
  color:#211813;
  font-size:clamp(44px,6vw,88px);
  line-height:.9;
  letter-spacing:-.06em;
}

.creator-section-head p:not(.creator-kicker),
.creator-rule-copy p,
.creator-dog-grid p,
.creator-final-panel p {
  margin:0;
  color:#6c5e52;
  font-size:clamp(18px,1.55vw,22px);
  font-weight:760;
  line-height:1.55;
}

.creator-pricing-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.creator-package {
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:clamp(24px,2.8vw,36px);
  border:1px solid rgba(55,43,31,.16);
  border-radius:30px;
  background:
    radial-gradient(circle at 100% 0%,rgba(200,121,67,.08),transparent 12rem),
    linear-gradient(145deg,#fff9ee,#eee0cf);
  box-shadow:0 14px 34px rgba(55,43,31,.07);
}

.creator-package.is-featured {
  background:
    radial-gradient(circle at 100% 0%,rgba(200,121,67,.12),transparent 12rem),
    linear-gradient(145deg,#fff4df,#e7d1b8);
  border-color:rgba(200,121,67,.26);
}

.creator-package-name {
  margin:0 0 22px;
  color:var(--creator-copper-dark);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  font-weight:950;
}

.creator-package h3 {
  margin:0;
  color:#241a13;
  font-size:clamp(34px,4vw,54px);
  line-height:.94;
  letter-spacing:-.05em;
}

.creator-price {
  display:block;
  margin:18px 0 24px;
  color:#9f5733;
  font-size:clamp(30px,3.6vw,48px);
  line-height:1;
  letter-spacing:-.04em;
}

.creator-package ul {
  display:grid;
  gap:10px;
  margin:0 0 28px;
  padding:0;
  list-style:none;
  color:#5f5146;
  font-weight:830;
  line-height:1.35;
}

.creator-package li {
  position:relative;
  padding-left:22px;
}

.creator-package li::before {
  content:"";
  position:absolute;
  left:0;
  top:.58em;
  width:8px;
  height:8px;
  border-radius:999px;
  background:#c87943;
}

.creator-package-link {
  width:100%;
  margin-top:auto;
  box-shadow:0 10px 24px rgba(94,52,31,.12),0 4px 0 rgba(86,49,30,.34);
}

.creator-rules {
  background:#ebe0d2;
}

.creator-rule-grid {
  display:grid;
  grid-template-columns:minmax(0,.78fr) minmax(320px,.82fr);
  gap:clamp(30px,6vw,92px);
  align-items:start;
}

.creator-rule-copy {
  display:grid;
  gap:18px;
  padding-top:8px;
}

.creator-rule-copy strong {
  color:#211813;
  font-size:1.2em;
}

.creator-limit {
  padding:clamp(46px,6vw,86px) 0;
  color:#f7efe4;
  background:
    linear-gradient(135deg,rgba(21,18,15,.94),rgba(45,34,25,.94)),
    radial-gradient(circle at 20% 0%,rgba(200,121,67,.22),transparent 22rem);
}

.creator-limit-panel {
  display:grid;
  grid-template-columns:auto auto 1fr;
  gap:10px 18px;
  align-items:baseline;
  padding:clamp(28px,4vw,48px);
  border:1px solid var(--creator-dark-line);
  border-radius:34px;
  background:rgba(244,236,223,.06);
}

.creator-limit-panel span {
  color:#cebca7;
  font-family:'Caveat','Comic Sans MS',cursive;
  font-size:34px;
  font-weight:800;
}

.creator-limit-panel strong {
  color:#f4ecdf;
  white-space:nowrap;
}

.creator-limit-panel p {
  margin:0;
  color:#d5c7b6;
  font-weight:820;
  line-height:1.45;
}

.creator-process {
  background:#f4ecdf;
  padding:clamp(42px,6vw,82px) 0;
}

.creator-process-image {
  margin:0;
  overflow:hidden;
  border:1px solid rgba(55,43,31,.14);
  border-radius:28px;
  background:#e8ddcf;
  box-shadow:0 16px 42px rgba(55,43,31,.12);
}

.creator-process-image img {
  display:block;
  width:100%;
  height:auto;
}

.creator-editorial {
  color:#f2eadf;
  background:
    radial-gradient(circle at 18% 6%,rgba(200,121,67,.18),transparent 24rem),
    linear-gradient(180deg,#15120f,#211813);
}

.creator-editorial-grid {
  display:grid;
  grid-template-columns:minmax(280px,.76fr) minmax(0,1fr);
  gap:clamp(34px,6vw,88px);
  align-items:start;
}

.creator-editorial-sticky {
  position:sticky;
  top:96px;
}

.creator-editorial-sticky h2 {
  color:#f7efe4;
  font-size:clamp(42px,5vw,76px);
}

.creator-editorial-sticky figure {
  position:relative;
  margin:34px 0 0;
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(244,236,223,.14);
  background:#120f0d;
  box-shadow:0 30px 80px rgba(0,0,0,.32);
}

.creator-editorial-sticky img {
  display:block;
  width:100%;
  aspect-ratio:4 / 5;
  object-fit:cover;
  object-position:center;
  filter:saturate(.86) contrast(1.08) sepia(.16);
}

.creator-editorial-copy {
  display:grid;
  gap:clamp(34px,5vw,72px);
}

.creator-editorial-copy p {
  max-width:34ch;
  margin:0;
  color:#efe4d5;
  font-size:clamp(26px,3.1vw,46px);
  font-weight:850;
  line-height:1.12;
  letter-spacing:-.035em;
}

.creator-editorial-copy p:nth-child(4n+2) {
  color:#d7b087;
}

.creator-editorial-copy p:nth-child(2),
.creator-editorial-copy p:nth-child(6),
.creator-editorial-copy p:nth-child(18),
.creator-editorial-copy p:nth-child(31),
.creator-editorial-copy p:nth-child(37) {
  max-width:100%;
  padding:clamp(24px,4vw,44px) 0;
  border-top:1px solid rgba(244,236,223,.12);
  border-bottom:1px solid rgba(244,236,223,.12);
  color:#f2c7a1;
  font-size:clamp(34px,5.4vw,82px);
  line-height:.94;
}

.creator-familiar {
  background:#f4ecdf;
}

.creator-quote-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.creator-quote-grid blockquote {
  margin:0;
  min-height:150px;
  display:flex;
  align-items:flex-end;
  padding:22px;
  border:1px solid var(--creator-line);
  border-radius:26px;
  background:#fff8ec;
  color:#211813;
  font-family:'Caveat','Comic Sans MS',cursive;
  font-size:clamp(27px,2.8vw,42px);
  font-weight:800;
  line-height:1;
  box-shadow:0 18px 44px rgba(55,43,31,.07);
}

.creator-familiar-end {
  max-width:760px;
  margin:clamp(28px,4vw,48px) 0 0;
  color:#211813;
  font-size:clamp(34px,5vw,72px);
  font-weight:950;
  line-height:.95;
  letter-spacing:-.055em;
}

.creator-dog-scene {
  background:#ebe0d2;
}

.creator-dog-grid {
  display:grid;
  grid-template-columns:minmax(280px,.78fr) minmax(0,1fr);
  gap:clamp(30px,6vw,88px);
  align-items:center;
}

.creator-dog-grid figure {
  position:relative;
  margin:0;
  overflow:hidden;
  border-radius:34px;
  border:1px solid rgba(55,43,31,.14);
  background:#211813;
  box-shadow:0 24px 70px rgba(55,43,31,.18);
}

.creator-dog-grid img {
  display:block;
  width:100%;
  aspect-ratio:1 / 1.12;
  object-fit:cover;
  object-position:center;
  filter:saturate(.86) sepia(.2) contrast(1.04);
}

.creator-final {
  color:#f7efe4;
  background:
    radial-gradient(circle at 78% 0%,rgba(200,121,67,.22),transparent 24rem),
    linear-gradient(135deg,#15120f,#241a13);
}

.creator-final-panel {
  max-width:980px;
  text-align:center;
}

.creator-final-panel h2 {
  color:#fff8ec;
}

.creator-final-panel p {
  max-width:720px;
  margin:26px auto 32px;
  color:#d4c5b4;
}

@keyframes creatorFadeUp {
  from {
    opacity:0;
    transform:translateY(18px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}

@media (prefers-reduced-motion:reduce) {
  .creator-hero-copy,
  .creator-hero-portrait {
    animation:none;
  }
}

@media (max-width:980px) {
  .creator-hero-grid,
  .creator-section-head,
  .creator-packages .creator-section-head,
  .creator-rule-grid,
  .creator-editorial-grid,
  .creator-dog-grid {
    grid-template-columns:1fr;
  }

  .creator-hero h1 {
    max-width:13ch;
  }

  .creator-hero-portrait img {
    height:min(58vh,520px);
  }

  .creator-pricing-grid,
  .creator-quote-grid {
    grid-template-columns:1fr 1fr;
  }

  .creator-editorial-sticky {
    position:static;
  }

  .creator-limit-panel {
    grid-template-columns:1fr;
  }
}

@media (max-width:640px) {
  .creator-shell {
    width:min(100% - 28px,1220px);
  }

  .creator-voice-page .simple-header {
    position:relative;
  }

  .creator-voice-page .nav-links {
    display:none;
  }

  .creator-hero {
    padding-top:42px;
  }

  .creator-hero h1 {
    max-width:100%;
    font-size:clamp(42px,11.8vw,58px);
    line-height:.92;
  }

  .creator-actions {
    align-items:flex-start;
    flex-direction:column;
  }

  .creator-button,
  .creator-package-link {
    width:100%;
  }

  .creator-hero-portrait {
    border-radius:28px;
  }

  .creator-hero-portrait img {
    height:390px;
  }

  .creator-section {
    padding:62px 0;
  }

  .creator-pricing-grid,
  .creator-quote-grid {
    grid-template-columns:1fr;
  }

  .creator-section-head h2,
  .creator-rule-grid h2,
  .creator-limit-panel strong,
  .creator-editorial-sticky h2,
  .creator-dog-grid h2,
  .creator-final-panel h2 {
    font-size:clamp(42px,12vw,62px);
  }

  .creator-editorial-copy {
    gap:30px;
  }

  .creator-editorial-copy p {
    font-size:clamp(25px,8vw,36px);
  }

  .creator-quote-grid blockquote {
    min-height:118px;
  }

  .creator-familiar-end {
    font-size:clamp(38px,12vw,62px);
  }
}

/* 2026-06-13: two-item Hangembermuhely menu with premium depth. */
.simple-header .nav-links a {
  position:relative;
  z-index:1;
  padding:9px 13px;
  border:1px solid transparent;
  border-radius:999px;
  transition:transform .2s ease,box-shadow .2s ease,background-color .2s ease,border-color .2s ease,color .2s ease;
}

@media (hover:hover) and (pointer:fine) {
  .simple-header .nav-links a:hover,
  .simple-header .nav-links a:focus-visible {
    z-index:3;
    border-color:rgba(155,94,67,.2);
    background:#fff8e9;
    color:#8d4f35;
    transform:translateY(-3px) scale(1.055);
    box-shadow:0 13px 28px rgba(76,48,31,.18),inset 0 1px 0 #fff;
  }
}

@media (max-width:767px) {
  .simple-nav {
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
  }

  .simple-nav .mobile-voice-title {
    display:none;
  }

  .simple-nav .nav-links {
    display:flex;
    gap:5px;
    flex-wrap:nowrap;
  }

  .simple-nav .nav-links a:not(.nav-cta) {
    display:inline-flex;
    min-height:38px;
    align-items:center;
    justify-content:center;
    padding:8px 10px;
    border:1px solid rgba(155,94,67,.17);
    background:#fff8e9;
    color:#70442f;
    font-size:11px;
    line-height:1;
    box-shadow:0 6px 14px rgba(76,48,31,.1),inset 0 1px 0 #fff;
  }
}
