:root {
  --blue: #1a73e8;
  --blue-hover: #1765cc;
  --blue-light: #e8f0fe;
  --gold: #c89b3c;
  --gold-hover: #b48933;
  --yellow: #fbbc04;
  --green: #34a853;
  --red: #ea4335;
  --red-light: #fce8e6;
  --text: #202124;
  --text-2: #5f6368;
  --text-3: #80868b;
  --border: #dadce0;
  --border-hover: #bdc1c6;
  --bg: #ffffff;
  --bg-2: #f8f9fa;
  --bg-3: #f1f3f4;
  --shadow-sm: 0 1px 2px rgba(60, 64, 67, 0.1);
  --shadow-md: 0 1px 3px rgba(60, 64, 67, 0.2), 0 4px 8px rgba(60, 64, 67, 0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  min-height: 100%;
}

body {
  font-family: 'Google Sans', 'Roboto', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  background: var(--bg-2);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.5;
}

.topbar {
  height: 64px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar-inner {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-logo {
  height: 36px;
}
.topbar-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  flex: 1;
}
.topbar-back {
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.topbar-back:hover {
  background: var(--bg-3);
}
.topbar-back.hidden {
  visibility: hidden;
}

/* —————— RTL desteği (FA / AR) —————— */
html[dir="rtl"] body {
  font-family: 'Noto Sans Arabic', 'Tahoma', 'Roboto', sans-serif;
}
html[dir="rtl"] .topbar-back { transform: scaleX(-1); }
html[dir="rtl"] .lang-dropdown { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .field-label { text-align: right; }
html[dir="rtl"] .choice-restriction-note,
html[dir="rtl"] .choice-inclusive-note {
  border-left: none;
  border-right: 4px solid;
  margin-left: 0;
  margin-right: 28px;
}
html[dir="rtl"] .choice-with-info { padding-right: 12px; padding-left: 48px; }
html[dir="rtl"] .choice-with-info .field-info-eye-inline { right: auto; left: 12px; }
html[dir="rtl"] .summary-edit-btn,
html[dir="rtl"] .field-warn-hint { text-align: right; }
html[dir="rtl"] .summary-list { direction: rtl; }
html[dir="rtl"] .alert-error-item { text-align: right; }
html[dir="rtl"] .step-counter .step-sep { transform: scaleX(-1); display: inline-block; }

/* —————— Dil seçici dropdown — topbar sağında (LTR) / solunda (RTL) —————— */
.lang-dropdown {
  position: relative;
  margin-left: auto;
}
.lang-toggle {
  background: var(--bg-3);
  border: none;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 7px 11px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.lang-toggle:hover { background: #e7eaee; }
.lang-toggle .lang-flag {
  font-size: 16px;
  line-height: 1;
  filter: saturate(1.05);
}
.lang-toggle .lang-code { font-size: 11px; }
.lang-toggle .lang-caret {
  font-size: 9px;
  opacity: 0.55;
  transition: transform 0.15s;
  margin-left: 1px;
}
.lang-dropdown.open .lang-toggle { background: #e7eaee; }
.lang-dropdown.open .lang-toggle .lang-caret { transform: rotate(180deg); }

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
  padding: 4px;
  min-width: 168px;
  z-index: 100;
  animation: lang-menu-in 0.12s ease-out;
}
@keyframes lang-menu-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
.lang-dropdown.open .lang-menu { display: block; }

.lang-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  font-family: inherit;
  transition: background 0.1s;
}
html[dir="rtl"] .lang-menu-item { text-align: right; }
.lang-menu-item:hover { background: var(--bg-3); }
.lang-menu-item.active { background: rgba(192, 160, 64, 0.12); }
.lang-menu-item .lang-flag { font-size: 18px; line-height: 1; }
.lang-menu-item .lang-name { flex: 1; }
.lang-menu-item .lang-check {
  color: #c0a040;
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
}
.lang-menu-item.active .lang-check { opacity: 1; }

@media (max-width: 540px) {
  .lang-toggle { padding: 6px 9px; }
  .lang-toggle .lang-code { display: none; }
  .lang-menu { min-width: 156px; }
}

/* —————— Venue logos strip (mailler ile aynı 6 logo) —————— */
.venue-logos-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 16px;
  position: sticky;
  top: 64px;
  z-index: 9;
}
.venue-logos-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.venue-logos-inner::-webkit-scrollbar { display: none; }
.venue-logos-inner img {
  height: 44px;
  max-width: 130px;
  object-fit: contain;
  flex-shrink: 0;
  filter: saturate(1) opacity(0.95);
  transition: filter 0.2s, transform 0.2s;
}
.venue-logos-inner img:hover {
  filter: saturate(1.15) opacity(1);
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .venue-logos-strip { padding: 10px 12px; }
  .venue-logos-inner { gap: 8px; }
  .venue-logos-inner img { height: 30px; max-width: 90px; }
}
@media (max-width: 540px) {
  .topbar { height: 56px; padding: 0 16px; }
  .venue-logos-strip { top: 56px; }
}
@media (max-width: 480px) {
  .venue-logos-inner img { height: 26px; max-width: 70px; }
  .topbar-title { font-size: 16px; }
}

/* Landing — mobil h1 küçült, hero padding */
@media (max-width: 540px) {
  .landing-hero h1 { font-size: 24px; line-height: 1.25; }
  .landing-hero p { font-size: 15px; line-height: 1.55; }
  .landing-hero p.landing-lead { font-size: 16px; }
  .landing-card { padding: 22px 18px; }
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px;
}

/* Progress bar + step counter */
.progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.step-counter {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--blue-light);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.step-counter .step-current {
  font-size: 16px;
  line-height: 1;
}
.step-counter .step-sep {
  opacity: 0.5;
  font-weight: 400;
}
.step-counter .step-total {
  opacity: 0.7;
  font-weight: 500;
}
.progress {
  flex: 1;
  display: flex;
  gap: 4px;
}
.progress-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  position: relative;
}
.progress-step::before {
  content: '';
  display: block;
  height: 6px;
  background: var(--bg-3);
  border-radius: 3px;
  transition: background 0.3s, box-shadow 0.3s;
}
.progress-step.done::before {
  background: var(--green);
}
.progress-step.current::before {
  background: var(--blue);
  box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

@media (max-width: 480px) {
  .progress-wrap {
    padding: 10px 12px;
    gap: 10px;
  }
  .step-counter {
    padding: 5px 10px;
    font-size: 12px;
  }
  .step-counter .step-current {
    font-size: 14px;
  }
}

/* Step container */
.card {
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.card + .card {
  margin-top: 16px;
}
/* Step başlığı .step-title — kartların üstünde, kart dışı */
.step > .step-title {
  margin: 0 4px 16px;
}

.step {
  display: none;
}
.step.active {
  display: block;
}
.step.step-anim-next {
  animation: stepSlideInRight 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.step.step-anim-prev {
  animation: stepSlideInLeft 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes stepSlideInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes stepSlideInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .step.step-anim-next, .step.step-anim-prev { animation: none; }
}

.step-title {
  font-family: 'Google Sans', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-subtitle {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
}

/* Field wrapper */
.field {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.field:focus-within {
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.10);
}
/* Nested follow-up field — parent card icinde inline, ayri border yok */
.field .field-nested {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 14px 0 0;
  margin: 14px 0 0;
  box-shadow: none;
}
.field .field-nested:focus-within {
  border-color: transparent;
  box-shadow: none;
}
.field .field-nested .field-label {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
}
.field-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-1, var(--text));
  margin-bottom: 12px;
  line-height: 1.4;
}
@media (max-width: 540px) {
  .field { padding: 16px 14px; border-radius: 12px; }
}
.field-required {
  color: var(--red);
  margin-left: 2px;
}
.field-help {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 4px;
}
.field-warn-hint {
  font-size: 13px;
  line-height: 1.4;
  color: #b06000;
  background: #fef7e0;
  border-left: 3px solid #f4b400;
  padding: 8px 10px;
  margin-top: 6px;
  border-radius: 4px;
}
.choice-restriction-note {
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  color: #b06000;
  background: #fef7e0;
  border-left: 4px solid #f4b400;
  padding: 10px 12px;
  margin: 8px 0 0 28px;
  border-radius: 6px;
  flex-basis: 100%;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.choice-restriction-note::before {
  content: "⚠";
  font-size: 16px;
  line-height: 1.2;
  flex-shrink: 0;
}
.choice-inclusive-note {
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  color: #1e8e3e;
  background: #e6f4ea;
  border-left: 4px solid #34a853;
  padding: 10px 12px;
  margin: 8px 0 0 28px;
  border-radius: 6px;
  flex-basis: 100%;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.choice-inclusive-note::before {
  content: "✓";
  font-size: 16px;
  line-height: 1.2;
  flex-shrink: 0;
}

/* —————— Sticky context bar (üstte secili venue/Gäste/Datum/Event) —————— */
.context-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(232, 240, 254, 0.6);
  border: 1px solid #d2e3fc;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 13px;
}
.context-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #d2e3fc;
  color: #1565c0;
  font-weight: 500;
  white-space: nowrap;
  max-width: 100%;
}
.context-chip-icon { font-size: 14px; line-height: 1; }
.context-chip-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 220px;
}
@media (max-width: 540px) {
  .context-bar { padding: 8px 10px; gap: 6px; font-size: 12px; }
  .context-chip { padding: 3px 8px; }
  .context-chip-text { max-width: 140px; }
}

/* —————— Progress step labels (1/5 yerine adım isimleri) —————— */
.progress-step-label {
  display: block;
  font-size: 11px;
  color: var(--text-3, #5f6368);
  text-align: center;
  margin-top: 6px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.progress-step.current .progress-step-label {
  color: var(--blue);
  font-weight: 600;
}
.progress-step.done .progress-step-label {
  color: var(--text-2, #5f6368);
}
@media (max-width: 600px) {
  .progress-step-label { font-size: 10px; }
}
@media (max-width: 380px) {
  .progress-step-label { display: none; }
}

/* —————— Venue rozetleri —————— */
.choice-badge.venue-fits {
  background: #e6f4ea;
  color: #1e8e3e;
}
.choice-badge.venue-recommended {
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  color: #fff;
  font-weight: 600;
}

/* —————— DSGVO trust note —————— */
.dsgvo-trust-note {
  font-size: 12px;
  color: var(--text-3, #5f6368);
  margin-top: 8px;
  padding: 8px 10px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 2px solid var(--border);
  line-height: 1.4;
}

/* —————— Success "Wie geht es weiter?" —————— */
.success-next-steps {
  margin: 28px auto 16px;
  max-width: 460px;
  text-align: left;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 18px 20px;
}
.success-next-steps h3 {
  margin: 0 0 12px;
  font-family: 'Google Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1, var(--text));
}
.success-next-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.success-next-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-1, var(--text));
}
.success-next-list .step-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* —————— Summary (Zusammenfassung) step —————— */
.summary-wrap { display: flex; flex-direction: column; gap: 14px; }
.summary-intro {
  margin: 0 0 6px 0;
  font-size: 14px;
  color: var(--text-2);
}
.summary-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.summary-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.summary-card-title {
  margin: 0;
  font-family: 'Google Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
}
.summary-edit-btn {
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.summary-edit-btn:hover {
  background: var(--blue);
  color: #fff;
}
.summary-list {
  display: grid;
  grid-template-columns: minmax(140px, 35%) 1fr;
  gap: 6px 14px;
  margin: 0;
}
.summary-list dt {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}
.summary-list dd {
  margin: 0;
  font-size: 14px;
  color: var(--text-1);
  word-break: break-word;
}
@media (max-width: 540px) {
  .summary-list {
    grid-template-columns: 1fr;
    gap: 2px 0;
  }
  .summary-list dd { margin-bottom: 8px; }
}
.field-error {
  font-size: 13px;
  color: var(--red);
  margin-top: 6px;
  display: none;
}
.field.has-error .field-error {
  display: block;
}
.field.has-error input,
.field.has-error textarea,
.field.has-error select {
  border-color: var(--red);
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea,
select {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  transition: border 0.15s, box-shadow 0.15s;
  outline: none;
}
input:hover, textarea:hover, select:hover {
  border-color: var(--border-hover);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

/* Select — daha belirgin: kalın border + büyük padding + custom arrow */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 44px 16px 16px;
  border-width: 2px;
  border-color: var(--border);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a73e8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 22px;
  min-height: 56px;
}
select:hover {
  border-color: var(--blue);
  background-color: var(--bg-2);
}
select:focus {
  border-color: var(--blue);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.18);
}
@media (max-width: 480px) {
  select {
    font-size: 15px;
    padding: 14px 40px 14px 14px;
    min-height: 52px;
  }
}
textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.5;
}

/* Phone input — vorwahl + nummer */
.phone-row {
  display: flex;
  gap: 8px;
}
.phone-row input[name="phone_vorwahl"] {
  width: 80px;
  flex: 0 0 80px;
}
.phone-row input[name="phone_nummer"] {
  flex: 1;
}

/* Name row — vorname + nachname */
.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  .name-row {
    grid-template-columns: 1fr;
  }
}

/* Radio / checkbox lists */
.choice-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Card grid — büyük tıklanabilir kartlar (örn. event_type) */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 600px) {
  .choice-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.choice-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 10px 14px;
  min-height: 110px;
  justify-content: center;
  border-width: 2px;
  position: relative;
}
.choice-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice-card .choice-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.choice-card .choice-icon-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  margin-bottom: 6px;
}
.choice-card .choice-icon-brand svg,
.choice-card .choice-icon-img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}
/* Event SVG ikonu — Lucide line tarz, currentColor inherit */
.choice-card .choice-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-bottom: 8px;
  color: var(--text-1, var(--text));
}
.choice-card .choice-icon-svg svg {
  display: block;
  width: 36px;
  height: 36px;
}
.choice-card.selected .choice-icon-svg {
  color: var(--blue);
}
.choice-card .choice-label {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}
.choice-card.selected {
  background: var(--blue-light);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}
@media (max-width: 380px) {
  .choice-card {
    min-height: 96px;
    padding: 14px 8px 12px;
  }
  .choice-card .choice-icon { font-size: 28px; }
}
.choice-list.row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}
.choice-list.row .choice {
  flex: 0 0 calc(50% - 6px);
}
@media (max-width: 480px) {
  .choice-list.row .choice {
    flex: 0 0 100%;
  }
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.12s, border 0.12s;
  background: #fff;
}
.choice:hover {
  background: var(--bg-2);
  border-color: var(--border-hover);
}
.choice.selected {
  background: var(--blue-light);
  border-color: var(--blue);
}
.choice input {
  margin: 2px 0 0 0;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: var(--blue);
  cursor: pointer;
}
.choice-label {
  flex: 1;
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
}
.choice-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
  background: #e6f4ea;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}

.choice.disabled {
  opacity: 0.55;
  background: var(--bg-3);
  cursor: not-allowed;
  pointer-events: none;
}
/* Locked-inclusive (paket dahili) ve dsgvo (zorunlu kabul) için line-through gerek yok */
.choice.disabled.locked-inclusive .choice-label,
.field[data-fname="dsgvo"] .choice.disabled .choice-label {
  text-decoration: none !important;
  color: var(--text-1, var(--text)) !important;
}
.choice.disabled .choice-label {
  color: var(--text-3);
  text-decoration: line-through;
}
.choice.disabled .choice-badge {
  text-decoration: none;
}
.choice.disabled input {
  cursor: not-allowed;
}
/* Locked-inclusive: paket içinde dahil, disabled ama yeşil/pozitif görünüm */
/* Specificity: selected ile çakışmasın diye .selected.locked-inclusive birlikte kural */
.choice.locked-inclusive,
.choice.selected.locked-inclusive,
.choice-card.locked-inclusive,
.choice-card.selected.locked-inclusive {
  opacity: 1;
  background: #f1f8f3 !important;
  border-color: #34a853 !important;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none !important;
}
.choice.locked-inclusive .choice-label {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}
.choice.locked-inclusive input[type="checkbox"],
.choice.locked-inclusive input[type="radio"] {
  accent-color: #1e8e3e;
}

/* Venue "göz" butonu — sağ uçta modal açar (zarif, minimal) */
.choice-eye {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
  margin-left: 6px;
  opacity: 0.85;
}
.choice-eye:hover {
  background: var(--blue-light);
  color: var(--blue);
  opacity: 1;
}
.choice-eye:active {
  background: var(--blue-light);
  color: var(--blue);
}

/* Modal lightbox */
.venue-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.venue-modal.open {
  display: block;
}
.venue-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 33, 36, 0.55);
  animation: fadeBackdrop 0.18s ease;
}
@keyframes fadeBackdrop {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.venue-modal-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  max-width: 440px;
  max-height: calc(100vh - 48px);
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  animation: slideModal 0.22s ease;
  overflow-y: auto;
}
@keyframes slideModal {
  from { opacity: 0; transform: translate(-50%, -45%) scale(0.95); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.venue-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--text-2);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s;
}
.venue-modal-close:hover {
  background: var(--bg-3);
  color: var(--text);
}
.venue-modal-title {
  font-family: 'Google Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  padding-right: 32px;
}
.venue-modal-meta {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 16px;
}
.field-info-eye {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  margin-left: 6px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 50%;
  color: var(--blue);
  cursor: pointer;
  transition: all 0.15s;
  vertical-align: middle;
}
.field-info-eye:hover {
  background: var(--blue-light);
  transform: scale(1.05);
}
/* Inline variant — option satirinin saginda (right) */
.choice-with-info { position: relative; padding-right: 48px; }
.choice-with-info .field-info-eye-inline {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  z-index: 2;
}
.choice-with-info .field-info-eye-inline:hover {
  transform: translateY(-50%) scale(1.08);
}
.info-modal-body {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 20px;
}
.info-modal-body p {
  margin: 0 0 12px;
}
.info-modal-body p:last-child {
  margin-bottom: 0;
}
.info-modal-ok {
  width: 100%;
}
.info-modal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid var(--blue);
  transition: all 0.15s;
}
.info-modal-link:hover {
  background: #d2e3fc;
  transform: translateY(-1px);
}
.venue-modal-embed {
  margin-bottom: 16px;
}
.venue-modal-embed:empty {
  display: none;
}
.venue-modal-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}
.venue-modal-embed-wrap iframe,
.venue-modal-embed-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}
.venue-modal-embed-wrap video {
  /* Native player kontrolleri tam görünür kalsin diye contain */
  object-fit: contain;
}
.venue-modal-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.venue-modal-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.15s;
  min-height: 56px;
}
.venue-modal-link:hover {
  border-color: var(--blue);
  background: var(--bg-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.venue-modal-link-icon {
  flex: 0 0 32px;
  font-size: 22px;
  text-align: center;
}
.venue-modal-link-label {
  flex: 1;
}
.venue-modal-link-arrow {
  flex: 0 0 auto;
  color: var(--text-3);
  font-size: 18px;
}
.venue-modal-link.link-youtube {
  border-color: #f4d4d2;
  background: #fef5f4;
  color: #c4302b;
}
.venue-modal-link.link-youtube:hover { background: #fde8e6; border-color: #c4302b; }
.venue-modal-link.link-vimeo {
  border-color: #b3d8e8;
  background: #f0f8fc;
  color: #1ab7ea;
}
.venue-modal-link.link-vimeo:hover { background: #e0f1f8; border-color: #1ab7ea; }
.venue-modal-link.link-instagram {
  border-color: #f0d4e3;
  background: #fcf3f8;
  color: #c13584;
}
.venue-modal-link.link-instagram:hover { background: #fae5f1; border-color: #c13584; }
.venue-modal-link.link-tiktok {
  border-color: #ddd;
  background: #f5f5f5;
}
.venue-modal-link.link-facebook {
  border-color: #cfe0fb;
  background: #f0f6ff;
  color: #1877f2;
}

@media (max-width: 480px) {
  .venue-modal-card {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .venue-modal-title { font-size: 18px; }
  .choice-eye { width: 30px; height: 30px; }
}

.choice-group-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 14px 0 6px;
  padding: 0 4px;
}
.choice-group-title:first-child {
  margin-top: 0;
}

.clarify-input {
  margin-top: 12px;
  padding: 14px 16px;
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  animation: slideIn 0.2s ease;
}
.clarify-input .field-label {
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--blue);
}
.clarify-input input {
  background: #fff;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Date 3-dropdown row (Tag/Monat/Jahr) — fixes "0002" Jahr-Bug */
.date-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 8px;
}
.date-part {
  width: 100%;
}

/* Date + time row */
.datetime-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  .datetime-row {
    grid-template-columns: 1fr;
  }
}

/* Buttons */
.btn-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: space-between;
}
.btn-row.end {
  justify-content: flex-end;
}

/* Mobile: sticky alt navigasyon — Weiter/Zurück ekranın altında sabit */
@media (max-width: 720px) {
  .btn-row {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 24px -16px 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom)) 16px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    border-top: 1px solid var(--border);
    z-index: 10;
  }
  .btn-row .btn { flex: 1; min-width: 0; }
  .btn-row > div:empty {
    flex: 0 0 0;
    min-width: 0;
    margin: 0;
    padding: 0;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  font-family: 'Google Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 24px;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  letter-spacing: 0.25px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-hover);
  box-shadow: var(--shadow-md);
}
.btn-primary:disabled {
  background: var(--bg-3);
  color: var(--text-3);
  cursor: not-allowed;
  box-shadow: none;
}
.btn-text {
  background: none;
  color: var(--text-2);
}
.btn-text:hover {
  background: var(--bg-3);
}
.btn-large {
  height: 56px;
  padding: 0 36px;
  font-size: 16px;
  border-radius: 28px;
}
.btn-block {
  width: 100%;
}

/* Landing — type selection */
.landing-hero {
  text-align: center;
  padding: 32px 0 28px;
}
.landing-hero h1 {
  font-family: 'Google Sans', sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.landing-hero p {
  font-size: 16px;
  color: var(--text-2);
  max-width: 620px;
  margin: 0 auto 14px;
  line-height: 1.6;
}
.landing-hero p:last-child { margin-bottom: 0; }
.landing-hero p.landing-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  font-style: italic;
}
.landing-hero h1 strong,
.landing-hero p strong {
  color: var(--text);
}
.landing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .landing-cards {
    grid-template-columns: 1fr;
  }
}
.landing-card {
  display: block;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.15s, box-shadow 0.15s, border 0.15s;
  text-align: center;
}
.landing-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.landing-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.landing-card-title {
  font-family: 'Google Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.landing-card-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

/* —————— Benefit chips (hero altı) —————— */
.landing-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 28px;
  max-width: 680px;
  padding: 0 8px;
}
.landing-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
  white-space: nowrap;
}
.landing-chip-icon {
  font-size: 14px;
  line-height: 1;
  opacity: 0.85;
}
@media (max-width: 540px) {
  .landing-chips { gap: 6px; margin-bottom: 22px; }
  .landing-chip { padding: 6px 11px; font-size: 12px; }
  .landing-chip-icon { font-size: 13px; }
}

/* —————— Card CTA —————— */
.landing-card-cta {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #c0a040;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.landing-card-cta-arrow {
  display: inline-block;
  transition: transform 0.18s;
}
.landing-card:hover .landing-card-cta-arrow {
  transform: translateX(4px);
}
html[dir="rtl"] .landing-card-cta-arrow {
  transform: scaleX(-1);
}
html[dir="rtl"] .landing-card:hover .landing-card-cta-arrow {
  transform: scaleX(-1) translateX(4px);
}

/* —————— Trust note (cards altı) —————— */
.landing-trust {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  margin: 0 auto 24px;
  max-width: 520px;
  line-height: 1.5;
  padding: 0 16px;
}

/* —————— QuickMessage CTA + Modal (landing) —————— */
.quickmsg-cta-wrap {
  text-align: center;
  margin: 0 auto 26px;
  padding: 0 16px;
}
.quickmsg-trigger {
  background: #fff;
  border: 1.5px solid #c0a040;
  color: #c0a040;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 6px rgba(192,160,64,0.12);
  transition: all 0.18s ease;
}
.quickmsg-trigger-icon {
  flex-shrink: 0;
  transition: transform 0.18s ease;
}
.quickmsg-trigger:hover {
  background: #c0a040;
  color: #fff;
  box-shadow: 0 4px 14px rgba(192,160,64,0.32);
  transform: translateY(-1px);
}
.quickmsg-trigger:hover .quickmsg-trigger-icon {
  transform: scale(1.08);
}
@media (max-width: 540px) {
  .quickmsg-trigger {
    font-size: 14px;
    padding: 12px 22px;
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }
}

.quickmsg-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px;
  overflow-y: auto;
}
.quickmsg-modal.open { display: flex; }
.quickmsg-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,20,20,0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.quickmsg-dialog {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  max-width: 520px;
  width: 100%;
  padding: 28px 28px 24px;
  margin: auto;
  z-index: 1;
  animation: qm-pop .18s ease-out;
}
@keyframes qm-pop {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.quickmsg-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 24px;
  color: var(--text-2);
  cursor: pointer;
  border-radius: 50%;
  line-height: 1;
}
.quickmsg-close:hover { background: var(--bg-3); color: var(--text); }
.quickmsg-dialog h2 {
  font-family: 'Google Sans', sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--text);
}
.quickmsg-sub {
  font-size: 14px;
  color: var(--text-2);
  margin: 0 0 20px;
  line-height: 1.45;
}
.qm-field { margin-bottom: 14px; }
.qm-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.qm-field input[type="text"],
.qm-field input[type="email"],
.qm-field input[type="tel"],
.qm-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  box-sizing: border-box;
  resize: vertical;
}
.qm-field input:focus,
.qm-field textarea:focus {
  outline: none;
  border-color: #c0a040;
  box-shadow: 0 0 0 3px rgba(192,160,64,0.15);
}
.qm-radio-row {
  display: flex;
  gap: 8px;
}
.qm-radio {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  background: #fff;
  transition: all 0.12s;
}
.qm-radio input { accent-color: #c0a040; margin: 0; }
.qm-radio input:checked + span { color: #c0a040; font-weight: 600; }
.qm-radio:has(input:checked) {
  border-color: #c0a040;
  background: rgba(192,160,64,0.08);
}
.qm-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 480px) {
  .qm-channel-grid { grid-template-columns: repeat(2, 1fr); }
}
.qm-channel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 6px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.12s;
  text-align: center;
  line-height: 1.2;
  min-height: 72px;
}
.qm-channel input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px;
  height: 1px;
}
.qm-channel svg {
  width: 22px;
  height: 22px;
  margin-bottom: 6px;
  color: var(--text-2);
  flex-shrink: 0;
}
.qm-channel:hover { border-color: var(--border-hover); }
.qm-channel:has(input:checked) {
  border-color: #c0a040;
  background: rgba(192,160,64,0.08);
  color: #c0a040;
}
.qm-channel:has(input:checked) svg:not([viewBox="0 0 24 24"][fill="#4285F4"]) {
  /* Google logo'sundaki cok renkli SVG'yi degistirme — diger monocrhomelar altın */
}
.qm-channel:has(input[value="Empfehlung"]:checked) svg,
.qm-channel:has(input[value="Instagram"]:checked) svg,
.qm-channel:has(input[value="Facebook"]:checked) svg,
.qm-channel:has(input[value="Webseite"]:checked) svg,
.qm-channel:has(input[value="Sonstiges"]:checked) svg {
  color: #c0a040;
}
.qm-channel-other input {
  margin-top: 8px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  box-sizing: border-box;
}
.qm-channel-other input:focus {
  outline: none;
  border-color: #c0a040;
  box-shadow: 0 0 0 3px rgba(192,160,64,0.15);
}

.qm-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.qm-error {
  margin: 8px 0 0;
  padding: 10px 12px;
  background: #fce8e6;
  color: #b3261e;
  border-radius: 6px;
  font-size: 13px;
}
.qm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 18px;
}
.qm-btn-primary, .qm-btn-secondary {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.12s;
}
.qm-btn-primary {
  background: #c0a040;
  color: #fff;
}
.qm-btn-primary:hover { background: #b08c2a; }
.qm-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.qm-btn-secondary {
  background: transparent;
  color: var(--text-2);
}
.qm-btn-secondary:hover { color: var(--text); background: var(--bg-3); }
.qm-success {
  text-align: center;
  padding: 20px 8px 8px;
}
.qm-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(52,168,83,0.12);
  color: #34a853;
  font-size: 30px;
  margin-bottom: 12px;
}
.qm-success h3 {
  font-family: 'Google Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--text);
}
.qm-success p {
  color: var(--text-2);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 540px) {
  .quickmsg-modal { padding: 16px 12px; }
  .quickmsg-dialog { padding: 22px 18px 20px; }
  .qm-radio-row { flex-direction: column; }
  .qm-actions { flex-direction: column-reverse; }
  .qm-btn-primary, .qm-btn-secondary { width: 100%; }
}
html[dir="rtl"] .quickmsg-close { right: auto; left: 12px; }
html[dir="rtl"] .qm-actions { justify-content: flex-start; }

/* —————— One-page layout (URL ?layout=onepage) —————— */
/* Onepage'de field card'lari daha kompakt — border ince, padding az, gap kucuk */
html.onepage-mode .onepage-step .field {
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 10px;
  box-shadow: none;
}
html.onepage-mode .onepage-step .field-label {
  font-size: 14px;
  margin-bottom: 8px;
}
html.onepage-mode .onepage-step .field-help {
  font-size: 11px;
  margin-top: 3px;
}
html.onepage-mode .onepage-step {
  padding-bottom: 18px;
  margin-bottom: 18px;
}

/* Onepage'de choice card'lari (event_type kartlari) kompakt — yatay icon+label */
html.onepage-mode .onepage-step .choice-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
html.onepage-mode .onepage-step .choice-card {
  padding: 10px 12px;
  min-height: auto;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 8px;
}
html.onepage-mode .onepage-step .choice-card .choice-icon,
html.onepage-mode .onepage-step .choice-card .choice-icon-svg,
html.onepage-mode .onepage-step .choice-card .choice-icon-svg svg {
  width: 22px !important;
  height: 22px !important;
  font-size: 22px !important;
  margin: 0 !important;
}
html.onepage-mode .onepage-step .choice-card .choice-label {
  font-size: 13px;
  line-height: 1.25;
}
@media (max-width: 720px) {
  html.onepage-mode .onepage-step .choice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop'ta 2-column: label sol, input/options sag. Mobile'da tek sutun. */
@media (min-width: 720px) {
  html.onepage-mode .onepage-step .field {
    display: grid;
    grid-template-columns: 240px 1fr;
    column-gap: 20px;
    row-gap: 4px;
    align-items: start;
    padding: 10px 14px;
  }
  html.onepage-mode .onepage-step .field-label {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    padding-top: 6px;
    line-height: 1.35;
  }
  html.onepage-mode .onepage-step .field > *:not(.field-label) {
    grid-column: 2;
  }
  /* Nested follow-up field 2-column'i bozmasin: full-row */
  html.onepage-mode .onepage-step .field .field-nested {
    grid-column: 1 / -1;
    display: block;
  }
}

html.onepage-mode .progress-wrap,
html.onepage-mode #context-bar,
html.onepage-mode .step-counter {
  display: none !important;
}
.onepage-wrap { padding: 8px 0 24px; }
.onepage-step {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.onepage-step:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}
.onepage-step .step-title {
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--text);
}
.onepage-btn-row {
  margin-top: 16px;
  justify-content: center;
}
.onepage-btn-row .btn-primary {
  min-width: 280px;
  font-size: 16px;
  padding: 14px 32px;
}
@media (max-width: 720px) {
  .onepage-step .step-title { font-size: 19px; }
  .onepage-btn-row .btn-primary { width: 100%; min-width: 0; }
}

/* —————— Embed mode (WP iframe entegrasyonu) —————— */
html.embed-mode body {
  background: transparent;
}
/* Topbar tamamen gizlenmiyor — dil dropdown ve geri ok WP'de de gerekli.
   Sadece site title (logo/baslik) gizlenir, bar minimal ve transparent yapilir. */
html.embed-mode .topbar {
  height: auto;
  min-height: 0;
  padding: 6px 12px;
  background: transparent;
  border-bottom: none;
  position: static;
  box-shadow: none;
}
html.embed-mode .topbar-title { display: none !important; }
html.embed-mode .topbar-inner { gap: 8px; }
html.embed-mode .venue-logos-strip,
html.embed-mode .footer {
  display: none !important;
}
/* Topbar gizlendiginde sticky offset duzelt */
html.embed-mode .container { padding-top: 8px; }
html.embed-mode .landing-hero { padding-top: 8px; }
/* Mobile sticky bottom nav (.btn-row) iframe icinde parent scroll ile cakisir — static yap */
@media (max-width: 720px) {
  html.embed-mode .btn-row {
    position: static !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    border-top: none !important;
    margin: 24px 0 0 !important;
    padding: 12px 0 !important;
  }
}

/* Honeypot — invisible to humans */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  height: 1px !important;
  width: 1px !important;
  opacity: 0 !important;
}

/* Loading & success states */
.loader {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.loader.show {
  display: block;
}
.spinner {
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
  border: 3px solid var(--bg-3);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.success-screen {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.success-screen.show {
  display: block;
}
.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #e6f4ea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.success-screen h2 {
  font-family: 'Google Sans', sans-serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}
.success-screen p {
  font-size: 15px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 8px;
}
.success-id {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  background: var(--bg-3);
  border-radius: 8px;
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  color: var(--text-2);
}

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}
.alert.show { display: block; }
.alert-error {
  background: var(--red-light);
  color: #c5221f;
}
.alert-list { padding: 14px 16px; text-align: left; }
.alert-list .alert-head {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}
.alert-error-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.alert-error-item {
  background: transparent;
  border: 0;
  padding: 4px 0;
  color: #c5221f;
  text-align: left;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.alert-error-item:hover { color: #a01713; }
.alert-warn {
  background: #fef7e0;
  color: #b06000;
}
.alert-info {
  background: var(--blue-light);
  color: var(--blue);
}

/* Footer */
.footer {
  max-width: 760px;
  margin: 32px auto 0;
  padding: 20px 24px;
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
}
.footer a {
  color: var(--text-2);
  text-decoration: none;
  margin: 0 8px;
}
.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .topbar { padding: 0 12px; }
  .topbar-title { font-size: 16px; }
  .container { padding: 16px; }
  .card { padding: 20px 16px; border-radius: 10px; }
  .step-title { font-size: 19px; }
  .btn { height: 44px; padding: 0 20px; font-size: 14px; }
  .btn-large { height: 50px; padding: 0 28px; font-size: 15px; }
  .landing-card { padding: 24px 16px; }
  .landing-card-icon { font-size: 40px; }
  .landing-card-title { font-size: 18px; }
}
