/* ═══════════════════════════════════════════════════════
   ONKRAJ VIDNEGA – Prodajna stran
   Stil usklajen z 3x3x3.si (Elementor tema)
═══════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #00284d;
  --navy-dark: #001a33;
  --magenta:   #d63384;
  --pink:      #e91e8c;
  --teal:      #0d9488;
  --blue:      #0ea5e9;
  --light-bg:  #f8f9fb;
  --white:     #ffffff;
  --text:      #1a1a2e;
  --text-muted:#6b7280;
  --border:    #e5e7eb;
  --gradient:  linear-gradient(135deg, #e8d5f0 0%, #d4e8f7 50%, #c8e6f0 100%);
  --gradient-dark: linear-gradient(135deg, #00284d 0%, #0d4a7a 50%, #1a6b8a 100%);
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }
.container.form-container {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.text-center { text-align: center; }
.hidden { display: none !important; }
.mt-sm { margin-top: 12px; }

/* ── Typography ────────────────────────────────────── */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  color: var(--navy);
  line-height: 1.25;
}
.section-title.light { color: var(--white); }
.accent-blue   { color: var(--blue); }
.accent-pink   { color: var(--pink); }
.accent-white  { color: rgba(255,255,255,0.85); }
.accent-gradient {
  background: linear-gradient(90deg, var(--magenta), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.red   { color: #ef4444; }
.green { color: #22c55e; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  text-align: center;
  border: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
.btn:active { transform: translateY(0); }

.btn-magenta  { background: linear-gradient(135deg, var(--magenta), var(--pink)); color: #fff; }
.btn-navy     { background: var(--navy); color: #fff; }
.btn-primary  { background: var(--navy); color: #fff; }
.btn-stripe   { background: #635bff; color: #fff; }
.btn-paypal   { background: #003087; color: #fff; }
.btn-teal     { background: var(--teal); color: #fff; }
.btn-white-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-white-outline:hover { background: rgba(255,255,255,0.1); }
.btn-navy-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }

.btn-small  { padding: 10px 22px; font-size: 0.8rem; }
.btn-large  { padding: 18px 40px; font-size: 1rem; }
.btn-full   { width: 100%; display: block; }

/* ── Header ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { height: 44px; width: auto; }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--gradient);
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(214,51,132,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.75;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  opacity: 0.85;
  margin-bottom: 24px;
}
.hero-desc p { margin-bottom: 10px; color: var(--navy); opacity: 0.9; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.badge {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,40,77,0.15);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}
.under-btn {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}
.hero-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  max-height: 520px;
}

/* ── Section backgrounds ───────────────────────────── */
.section-white    { padding: 80px 0; background: var(--white); }
.section-light    { padding: 80px 0; background: var(--light-bg); }
.section-gradient { padding: 80px 0; background: var(--gradient-dark); }
.section-navy     { padding: 80px 0; background: var(--navy); }
.section-closing  { padding: 80px 0; background: var(--gradient); }
.section-form     { padding: 80px 0; background: var(--white); }

/* ── Comparison grid ───────────────────────────────── */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.comparison-item {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--magenta);
}
.comparison-icon { font-size: 1.5rem; display: block; margin-bottom: 10px; }
.comparison-we { margin-top: 10px; color: var(--navy); }

/* ── Pillars ───────────────────────────────────────── */
.pillars-box {
  background: linear-gradient(135deg, rgba(0,40,77,0.04), rgba(14,165,233,0.06));
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 48px;
  text-align: center;
}
.pillars-intro { font-size: 1.1rem; margin-bottom: 24px; }
.pillars-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}
.pillar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.pillar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--blue));
  flex-shrink: 0;
}
.pillars-cta-text { font-size: 1.1rem; }

/* ── For whom ──────────────────────────────────────── */
.for-whom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.for-whom-col { padding: 32px; border-radius: var(--radius); }
.not-for { background: #fff5f5; border: 1px solid #fecaca; }
.yes-for  { background: #f0fdf4; border: 1px solid #bbf7d0; }
.for-whom-col h3 { margin-bottom: 16px; font-size: 1.05rem; }
.for-whom-col ul { padding-left: 20px; }
.for-whom-col li { margin-bottom: 8px; }

.cta-center { text-align: center; margin-top: 40px; }

/* ── Schedule ──────────────────────────────────────── */
.day-overview {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 40px;
  margin-bottom: 56px;
  align-items: start;
}
.day-divider { background: rgba(255,255,255,0.3); }
.day-half-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.day-half-title { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.day-half p { color: rgba(255,255,255,0.8); }

.schedule-timeline { position: relative; }
.schedule-timeline::before {
  content: '';
  position: absolute;
  left: 56px;
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.2);
}

/* Dvostolpčni urnik */
.schedule-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 40px;
  align-items: start;
}
.schedule-col {
  position: relative;
  min-width: 0; /* prepreči overflow v grid celici */
}
.schedule-col-header {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--magenta);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.12);
}
.schedule-col::before {
  content: '';
  position: absolute;
  left: 56px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.15);
}
.schedule-item-kosilo .schedule-content h4 {
  color: #86efac;
}

.schedule-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
  min-width: 0;
}
.time-block {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding-top: 4px;
  text-align: right;
  padding-right: 16px;
  position: relative;
}
.time-block::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--magenta);
  border: 2px solid rgba(255,255,255,0.3);
}
.schedule-content {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.schedule-content h4 { color: #fff; font-size: 1rem; margin-bottom: 4px; }
.schedule-content p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.highlight-item .schedule-content h4 { color: #fbbf24; }

/* ── Speakers ──────────────────────────────────────── */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.speaker-card {
  display: flex;
  gap: 20px;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.speaker-card:hover { box-shadow: var(--shadow-lg); }
.speaker-img-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--magenta);
}
.speaker-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.speaker-img-dark { border-color: var(--navy); background: #f0f0f0; }
.speaker-info h3 { font-size: 1.05rem; margin-bottom: 4px; color: var(--navy); }
.speaker-role { font-size: 0.82rem; color: var(--magenta); font-weight: 600; margin-bottom: 8px; }
.speaker-info p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.speaker-topic { margin-top: 8px; font-size: 0.85rem !important; color: var(--navy) !important; }

/* ── Pricing (single card) ─────────────────────────── */
.pricing-single-wrap {
  display: flex;
  justify-content: center;
}
.price-card-single {
  max-width: 560px;
  width: 100%;
}
.price-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  color: #fff;
}
.price-card.featured {
  background: rgba(255,255,255,0.12);
  border: 2px solid var(--magenta);
  box-shadow: 0 0 40px rgba(214,51,132,0.25);
}
.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--magenta), var(--pink));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.price-badge-regular {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
}
.price-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 8px;
}
.price-amount-main {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.price-amount-main .currency { font-size: 1.8rem; }
.price-amount-crossed {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-old {
  font-size: 1.3rem;
  text-decoration: line-through;
  opacity: 0.5;
  color: #fff;
}
.price-save {
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(34,197,94,0.2);
  color: #86efac;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(34,197,94,0.3);
}
.price-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 28px;
}
.price-features {
  list-style: none;
  margin-bottom: 32px;
}
.price-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.under-btn-light {
  font-size: 0.78rem;
  opacity: 0.6;
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}
.price-state { margin-bottom: 0; }

/* ── Registration Form ─────────────────────────────── */
.form-left { min-width: 0; }
.form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-subtitle {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.required { color: var(--magenta); }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.12);
}
.form-input.error { border-color: #ef4444; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.phone-wrap { display: flex; align-items: center; gap: 0; }
.phone-prefix {
  padding: 12px 14px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.phone-input { border-radius: 0 var(--radius) var(--radius) 0 !important; }

/* Radio buttons */
.radio-group { display: flex; gap: 24px; flex-wrap: wrap; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
}
.radio-option input[type="radio"] { display: none; }
.radio-custom {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
  transition: border-color 0.2s;
  position: relative;
}
.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: var(--magenta);
  background: var(--magenta);
  box-shadow: inset 0 0 0 3px #fff;
}

/* Form separator */
.form-separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 20px;
}
.form-separator::before,
.form-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.form-separator span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Payment method selection */
.payment-method-group { display: flex; flex-direction: column; gap: 0; }
.payment-method-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-bottom: none;
  cursor: pointer;
  transition: background 0.15s;
  background: var(--white);
}
.payment-method-option:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.payment-method-option:last-of-type { border-bottom: 1.5px solid var(--border); border-radius: 0 0 var(--radius) var(--radius); }
.payment-method-option:hover { background: var(--light-bg); }
.payment-method-option input[type="radio"] { display: none; }
.payment-method-custom {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.payment-method-option.active .payment-method-custom,
.payment-method-option input[type="radio"]:checked ~ .payment-method-custom {
  border-color: var(--magenta);
  background: var(--magenta);
  box-shadow: inset 0 0 0 3px #fff;
}
.payment-method-option.active {
  background: rgba(214,51,132,0.04);
  border-color: var(--magenta);
}
.payment-method-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.92rem;
}
.card-icons { display: flex; gap: 6px; align-items: center; }
.card-icon { height: 22px; width: auto; }
.paypal-logo-inline { height: 24px; width: auto; }

.payment-detail-box {
  border: 1.5px solid var(--magenta);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 20px;
  background: rgba(214,51,132,0.03);
  margin-bottom: 2px;
}
.payment-detail-box + .payment-method-option {
  border-top: 1.5px solid var(--border);
  border-radius: 0;
}

.stripe-placeholder-box,
.paypal-placeholder-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stripe-placeholder-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* TRR in form */
.trr-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}
.trr-table { width: 100%; border-collapse: collapse; }
.trr-table td {
  padding: 5px 8px 5px 0;
  font-size: 0.82rem;
  vertical-align: top;
}
.trr-table td:first-child {
  color: var(--text-muted);
  white-space: nowrap;
  padding-right: 12px;
  font-weight: 500;
}
.trr-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; }
.trr-note a { color: var(--blue); text-decoration: underline; }
.trr-qr { text-align: center; }
.qr-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 8px; }
.qr-img { width: 110px; height: 110px; border-radius: 8px; border: 1px solid var(--border); }
.qr-sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 6px; }

/* Checkbox */
.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.checkbox-option input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 20px; height: 20px;
  border-radius: 5px;
  border: 2px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s;
  position: relative;
}
.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--magenta);
  border-color: var(--magenta);
}
.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.checkbox-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.checkbox-text a { color: var(--blue); text-decoration: underline; }

.form-security-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 60px 40px;
  background: #f0fdf4;
  border-radius: var(--radius-lg);
  border: 2px solid #bbf7d0;
}
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { color: #166534; font-size: 1.5rem; margin-bottom: 12px; }
.form-success p { color: #166534; opacity: 0.8; }

/* ── Order Summary (right column) ──────────────────── */
.form-right { position: sticky; top: 80px; }
.order-summary {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.order-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}
.order-product {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
.order-product-img {
  width: 72px; height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
}
.order-product-img img { width: 100%; height: 100%; object-fit: contain; }
.order-product-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.order-product-tag {
  font-size: 0.78rem;
  color: var(--magenta);
  font-weight: 600;
  margin-top: 4px;
}
.order-divider { height: 1px; background: var(--border); margin: 16px 0; }
.order-subtitle { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); margin-bottom: 12px; letter-spacing: 0.05em; }
.order-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 0.85rem;
  border: 1.5px solid transparent;
}
.order-price-row.selected {
  background: rgba(214,51,132,0.06);
  border-color: rgba(214,51,132,0.2);
}
.order-price-label { color: var(--text-muted); }
.order-price-value { font-weight: 700; color: var(--navy); }
.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}
.order-total-label { font-weight: 700; color: var(--navy); }
.order-total-value { font-size: 1.3rem; font-weight: 800; color: var(--magenta); }
.order-includes { margin-top: 20px; }
.order-includes-title { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; }
.order-includes ul { list-style: none; }
.order-includes li { font-size: 0.82rem; color: var(--text-muted); padding: 3px 0; }
.order-event-info {
  margin-top: 16px;
  padding: 14px;
  background: var(--light-bg);
  border-radius: 8px;
}
.order-event-info p { font-size: 0.82rem; color: var(--navy); margin-bottom: 4px; }

/* ── FAQ ───────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--magenta);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 18px; color: var(--text-muted); font-size: 0.9rem; }

/* ── Closing CTA ───────────────────────────────────── */
.closing-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.closing-sub { color: var(--navy); opacity: 0.8; margin-bottom: 8px; font-size: 1.05rem; }
.closing-sub:last-of-type { margin-bottom: 32px; }

/* ── Footer ────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 32px 0;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer p { font-size: 0.85rem; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; opacity: 0.7; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }

/* ── Sticky CTA ────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  padding: 12px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

/* ── Invest intro ──────────────────────────────────── */
.invest-intro {
  text-align: center;
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .container.form-container {
    grid-template-columns: 1fr;
  }
  .form-right {
    position: static;
    order: -1;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-image { display: none; }
  .comparison-grid { grid-template-columns: 1fr; }
  .speakers-grid { grid-template-columns: 1fr; }
  .for-whom { grid-template-columns: 1fr; }
  .day-overview { grid-template-columns: 1fr; }
  .day-divider { display: none; }
  .trr-grid { grid-template-columns: 1fr; }
  .trr-qr { display: flex; flex-direction: column; align-items: center; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 3rem; }
  .price-row { flex-direction: column; gap: 8px; }
  .price-amount-main { font-size: 2.8rem; }
  .schedule-item { grid-template-columns: 64px 1fr; }
  .schedule-timeline::before { left: 44px; }
  .schedule-two-col { grid-template-columns: 1fr; gap: 0; }
  .schedule-two-col::after { display: none; }
  .schedule-col { margin-bottom: 32px; }
  .site-footer .container { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .speaker-card { flex-direction: column; }
  .speaker-img-wrap { width: 70px; height: 70px; }
}

/* ── Urgency Banner (Countdown + Mesta) ─────────────── */
.urgency-banner {
  background: linear-gradient(135deg, #b5004a 0%, #d63384 100%);
  padding: 18px 0;
  border-bottom: 2px solid rgba(255,255,255,0.15);
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.urgency-seats {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}
.urgency-fire { font-size: 1.4rem; }
.urgency-seats-text strong {
  font-size: 1.35rem;
  color: #ffe066;
  margin: 0 2px;
}
.urgency-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}
.urgency-countdown {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.urgency-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}
.countdown-boxes {
  display: flex;
  align-items: center;
  gap: 4px;
}
.countdown-box {
  background: rgba(0,0,0,0.25);
  border-radius: 8px;
  padding: 6px 12px;
  text-align: center;
  min-width: 52px;
}
.countdown-box span {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-box small {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.countdown-sep {
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .urgency-inner { gap: 16px; }
  .urgency-divider { display: none; }
  .countdown-box { min-width: 44px; padding: 5px 8px; }
  .countdown-box span { font-size: 1.2rem; }
}
