/* ====================== ÜresÓra · web styles ====================== */
:root {
  --bg: #0f1115;
  --bg-2: #0b0d11;
  --surface: #181b22;
  --surface-2: #1f232c;
  --glass: rgba(255,255,255,0.04);
  --glass-strong: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #ffffff;
  --text-2: #b0b6c0;
  --text-3: #7a8090;
  --accent: #ff6a00;
  --accent-2: #ff8a3d;
  --success: #2bd4a4;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.25);
  --shadow: 0 12px 36px rgba(0,0,0,0.35);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ====================== Header ====================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 17, 21, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease;
}
.header.scrolled {
  background: rgba(15, 17, 21, 0.92);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-word {
  font-size: 22px; font-weight: 800; letter-spacing: -0.025em;
}
.nav-desktop {
  display: flex; gap: 28px; flex: 1; justify-content: center;
}
.nav-desktop a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: color 120ms ease;
}
.nav-desktop a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.login-link { font-size: 14px; font-weight: 600; color: var(--text); }
.login-link:hover { color: var(--accent); }
.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  border-radius: 10px; border: 1px solid var(--border);
}
.hamburger span { width: 18px; height: 2px; background: #fff; border-radius: 2px; }
.mobile-menu {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 16px 24px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a {
  padding: 14px 4px; font-size: 16px; font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}

/* ====================== Buttons ====================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600; font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform 120ms ease, background 120ms ease, opacity 120ms ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255,106,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { background: var(--accent-2); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-ghost {
  background: var(--glass); border: 1px solid var(--border); color: #fff;
}
.btn-ghost:hover { background: var(--glass-strong); }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-lg { padding: 16px 24px; font-size: 15px; width: 100%; margin-top: 12px; }

.link-btn { font-size: 14px; font-weight: 600; color: var(--accent); }
.link-btn:hover { text-decoration: underline; }
.link.inline { color: var(--accent); text-decoration: underline; }

/* ====================== Hero ====================== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.3;
  filter: grayscale(0.3) brightness(0.6);
}
.hero-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(255,106,0,0.25), transparent 60%),
    linear-gradient(180deg, rgba(15,17,21,0.6) 0%, var(--bg) 100%);
}
.hero-content {
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.3);
  padding: 8px 14px; border-radius: 999px;
  margin-bottom: 20px;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: 0.4 } }

.display {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 20px;
  text-wrap: balance;
}
.accent { color: var(--accent); }
.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 600px;
  text-wrap: pretty;
  margin: 0 0 36px;
}

.search-card {
  background: rgba(24, 27, 34, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 880px;
}
.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 4px;
  align-items: stretch;
}
.search-field {
  padding: 12px 18px;
  display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--border);
}
.search-field:last-of-type { border-right: 0; }
.search-label {
  font-size: 11px; font-weight: 700; color: var(--text-3);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.search-field select, .search-field input {
  background: transparent; border: 0; outline: none;
  color: #fff; font-size: 16px; font-weight: 600;
  font-family: inherit; padding: 0;
  appearance: none;
}
.search-field select option { background: var(--surface); color: #fff; }
.btn-search { padding: 0 28px; height: auto; border-radius: 14px; }

.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 36px;
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats b { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.hero-stats span { font-size: 13px; color: var(--text-3); }

/* ====================== Sections ====================== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 36px;
}
.section-head.center {
  flex-direction: column; align-items: center; text-align: center;
}
.h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.1; margin: 0;
  text-wrap: balance;
}
.section-sub {
  font-size: 16px; color: var(--text-2);
  margin: 8px 0 0; max-width: 560px;
  text-wrap: pretty;
}
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--accent); text-transform: uppercase;
}

/* ====================== Categories ====================== */
.cat-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  display: flex; flex-direction: column; align-items: stretch; gap: 12px;
  padding: 12px; border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 200ms ease, border-color 200ms ease;
  text-align: center;
}
.cat-card:hover { transform: translateY(-3px); border-color: rgba(255,106,0,0.4); }
.cat-img {
  height: 120px; border-radius: 12px; overflow: hidden;
  background: var(--surface-2);
}
.cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-label { font-size: 14px; font-weight: 600; }

/* ====================== Offer cards ====================== */
.chip-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.chip {
  padding: 9px 16px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--border);
  color: var(--text-2); font-size: 13px; font-weight: 600;
  white-space: nowrap;
}
.chip:hover { color: #fff; border-color: var(--border-strong); }
.chip.on { background: var(--accent); border-color: var(--accent); color: #fff; }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,106,0,0.4);
  box-shadow: var(--shadow);
}
.offer-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
  overflow: hidden;
}
.offer-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms ease;
}
.offer-card:hover .offer-img img { transform: scale(1.06); }
.offer-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; gap: 6px;
}
.badge {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700;
  padding: 5px 10px; border-radius: 999px;
}
.badge-accent { background: var(--accent); color: #fff; }
.badge-dark { background: rgba(0,0,0,0.7); color: #fff; backdrop-filter: blur(8px); }
.offer-time {
  position: absolute; top: 12px; right: 12px;
  font-size: 11px; font-weight: 700;
  background: rgba(0,0,0,0.7); color: #fff;
  padding: 5px 10px; border-radius: 999px;
  backdrop-filter: blur(8px);
}
.offer-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.offer-meta { font-size: 12px; color: var(--text-3); font-weight: 500; letter-spacing: 0.02em; }
.offer-title {
  font-size: 16px; font-weight: 700; margin: 2px 0;
  letter-spacing: -0.01em; line-height: 1.3;
}
.offer-provider {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-2);
}
.offer-rating { font-weight: 600; color: #fff; font-size: 12px; }
.muted { color: var(--text-3); font-weight: 400; }
.small { font-size: 12px; }
.offer-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: auto; padding-top: 12px;
  border-top: 1px dashed var(--border);
}
.price-strike { font-size: 12px; color: var(--text-3); text-decoration: line-through; }
.price-strike.lg { font-size: 18px; }
.price-now { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.015em; }
.price-now.lg { font-size: 28px; color: var(--accent); }
.offer-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.deposit-pill {
  font-size: 11px; color: var(--text-2);
  background: var(--glass); border: 1px solid var(--border);
  padding: 4px 8px; border-radius: 999px;
}

/* ====================== How it works ====================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.step-card::after {
  content: ''; position: absolute; top: -1px; right: -1px;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(255,106,0,0.15), transparent 70%);
  pointer-events: none;
}
.step-num {
  font-size: 13px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-title { font-size: 22px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.015em; }
.step-desc { font-size: 15px; color: var(--text-2); margin: 0; line-height: 1.55; text-wrap: pretty; }

/* ====================== Trust ====================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-card {
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.trust-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,106,0,0.12);
  color: var(--accent);
  display: grid; place-items: center;
  font-size: 22px; margin-bottom: 16px;
  border: 1px solid rgba(255,106,0,0.3);
}
.trust-title { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.trust-desc { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.5; }

/* ====================== Provider CTA ====================== */
.provider-card {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
  padding: 56px;
  background:
    linear-gradient(160deg, rgba(255,106,0,0.18), rgba(255,106,0,0.04) 60%),
    var(--surface);
  border: 1px solid rgba(255,106,0,0.25);
  border-radius: var(--radius-lg);
  align-items: center;
}
.provider-text .lede { margin: 12px 0 24px; }
.bullets {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.bullets li {
  font-size: 15px; color: var(--text);
  padding-left: 28px; position: relative;
}
.bullets li::before {
  content: '✓';
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(43,212,164,0.15); color: var(--success);
  font-size: 12px; font-weight: 700;
  display: grid; place-items: center;
}
.provider-cta-row { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.provider-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.stat-card {
  padding: 24px;
  background: rgba(15,17,21,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-num {
  font-size: 30px; font-weight: 800; letter-spacing: -0.02em;
}
.stat-label { font-size: 13px; color: var(--text-2); margin-top: 4px; }

/* ====================== Footer ====================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 24px;
  color: var(--text-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-tag { font-size: 14px; color: var(--text-3); margin: 0; max-width: 240px; }
.footer-grid h4 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text);
  margin: 0 0 16px;
}
.footer-grid a {
  display: block; padding: 6px 0;
  font-size: 14px; color: var(--text-2);
  transition: color 120ms ease;
  cursor: pointer;
}
.footer-grid a:hover { color: var(--accent); }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-2);
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.social svg { display: block; }
.social:hover {
  background: var(--accent); color: #fff; border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 106, 0, 0.3);
}
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-3);
}

/* ====================== Modal ====================== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 200ms ease;
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 1080px;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: pop 280ms cubic-bezier(0.34, 1.36, 0.64, 1);
}
.modal-narrow { max-width: 540px; }
@keyframes pop { from { transform: scale(0.92); opacity: 0 } to { transform: scale(1); opacity: 1 } }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.5); color: #fff;
  font-size: 22px; line-height: 1;
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}
.modal-close:hover { background: rgba(0,0,0,0.8); }
.modal-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  max-height: calc(100vh - 48px);
}
.modal-media {
  position: relative;
  background: var(--surface-2);
  min-height: 400px;
}
.modal-media img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.modal-media .offer-badges { top: 16px; left: 16px; }
.modal-body {
  padding: 36px;
  overflow-y: auto;
}
.modal-title {
  font-size: 28px; font-weight: 800; letter-spacing: -0.02em;
  margin: 6px 0 0; line-height: 1.15;
}
.modal-provider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0;
}
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  font-size: 18px; font-weight: 700; color: #fff;
}
.modal-provider-name { font-size: 15px; font-weight: 700; }

.kv-block {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 16px 0;
}
.kv {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 14px;
}
.kv span:first-child { color: var(--text-2); }
.kv b { font-weight: 600; }
.hr { height: 1px; background: var(--border); margin: 8px 0; }

.h4 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-2);
  margin: 24px 0 10px;
}
.body { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.6; text-wrap: pretty; }
.micro { font-size: 12px; color: var(--text-3); margin: 0; }

.map-thumb {
  position: relative;
  height: 180px; border-radius: var(--radius);
  overflow: hidden;
  margin: 16px 0;
  border: 1px solid var(--border);
}
.map-thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.6) brightness(0.7); }
.map-pin {
  position: absolute; transform: translate(-50%, -100%);
  font-size: 28px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

.price-summary {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 16px 0;
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; font-size: 14px;
}
.price-row > span:first-child { color: var(--text-2); }

/* ====================== Checkout pad ====================== */
.checkout-pad { padding: 40px 36px; max-height: calc(100vh - 48px); overflow-y: auto; }
.stepper {
  display: flex; align-items: center; gap: 8px;
  margin: 20px 0 24px;
}
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--border);
  color: var(--text-3); font-size: 13px; font-weight: 700;
  display: grid; place-items: center;
}
.step-dot.on { background: var(--accent); border-color: var(--accent); color: #fff; }
.step-line { flex: 1; height: 2px; background: var(--border); border-radius: 2px; }
.step-line.on { background: var(--accent); }

.checkout-summary {
  display: flex; gap: 14px; align-items: center;
  padding: 14px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.checkout-summary img {
  width: 64px; height: 64px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
}
.checkout-summary > div { flex: 1; min-width: 0; }
.checkout-summary b { font-size: 18px; font-weight: 800; }

.form { display: flex; flex-direction: column; gap: 14px; margin-top: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > span {
  font-size: 11px; font-weight: 700; color: var(--text-3);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.field input, .field select {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff; font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 120ms ease;
}
.field input:focus, .field select:focus { border-color: var(--accent); }
.field input::placeholder { color: var(--text-3); }
.field select option { background: var(--surface); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 4px 0; font-size: 13px; color: var(--text-2); cursor: pointer;
}
.check-row input { width: 18px; height: 18px; accent-color: var(--accent); margin-top: 2px; }

.info-banner {
  display: flex; gap: 12px;
  padding: 14px 16px;
  background: rgba(255,106,0,0.08);
  border: 1px solid rgba(255,106,0,0.25);
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: 13px; color: var(--text-2);
  line-height: 1.5;
}
.info-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,106,0,0.2); color: var(--accent);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}

.pay-providers { display: flex; gap: 8px; margin: 16px 0; }
.pay-card {
  flex: 1; text-align: center;
  padding: 14px 10px; font-size: 13px; font-weight: 600;
  border-radius: 12px; color: var(--text-2);
  background: var(--glass); border: 1px solid var(--border);
  cursor: pointer;
}
.pay-card.on { color: var(--accent); border-color: rgba(255,106,0,0.5); background: rgba(255,106,0,0.08); }

.success { padding: 20px 0; text-align: center; }
.success-icon {
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(43,212,164,0.15);
  color: var(--success);
  display: grid; place-items: center;
  font-size: 40px; font-weight: 700;
  margin: 0 auto;
  border: 2px solid rgba(43,212,164,0.4);
  animation: popIn 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn { 0% { transform: scale(0); } 100% { transform: scale(1); } }

/* ====================== Page hero (sub-pages) ====================== */
.page-hero {
  position: relative;
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; filter: grayscale(0.4) brightness(0.5); }
.page-hero-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 80% 30%, rgba(255,106,0,0.2), transparent 60%),
    linear-gradient(180deg, rgba(15,17,21,0.5) 0%, var(--bg) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.05; margin: 12px 0 16px;
  text-wrap: balance;
}

/* ====================== Active nav ====================== */
.nav-desktop a.active { color: var(--accent); }

/* ====================== Filters bar (offers page) ====================== */
.filters-bar {
  display: flex; flex-wrap: wrap; gap: 12px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
  align-items: center;
}
.filter-group { display: flex; flex-direction: column; gap: 4px; min-width: 140px; }
.filter-group label { font-size: 11px; font-weight: 700; color: var(--text-3); letter-spacing: 0.06em; text-transform: uppercase; }
.filter-group select, .filter-group input {
  background: var(--glass); border: 1px solid var(--border);
  color: #fff; font-size: 14px; font-weight: 600;
  padding: 10px 12px; border-radius: 10px; font-family: inherit;
  outline: none; appearance: none;
}
.filter-group select option { background: var(--surface); }
.filters-bar .btn { margin-left: auto; }

.results-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  font-size: 14px; color: var(--text-2);
}

/* ====================== Legal pages ====================== */
.legal-body {
  max-width: 760px; margin: 0 auto;
  padding: 56px 0 80px;
}
.legal-body h2 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.015em;
  margin: 36px 0 12px;
}
.legal-body h3 {
  font-size: 16px; font-weight: 700;
  margin: 24px 0 8px;
}
.legal-body p, .legal-body li {
  color: var(--text-2); line-height: 1.7; font-size: 15px;
  text-wrap: pretty;
}
.legal-body ul { padding-left: 22px; margin: 8px 0 16px; }
.legal-body li { margin-bottom: 6px; }
.legal-body .updated {
  font-size: 13px; color: var(--text-3);
  padding: 12px 16px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 10px; margin-bottom: 24px;
}
.legal-toc {
  position: sticky; top: 88px;
  padding: 20px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
}
.legal-toc h4 { margin: 0 0 12px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }
.legal-toc a { display: block; padding: 6px 0; color: var(--text-2); }
.legal-toc a:hover { color: var(--accent); }
.legal-grid { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }

/* ====================== About page ====================== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.value-card .step-num { font-size: 30px; line-height: 1; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { text-align: center; }
.team-photo {
  width: 120px; height: 120px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px;
  border: 2px solid var(--border);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; font-size: 15px; }
.team-role { font-size: 13px; color: var(--text-3); margin-top: 2px; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  padding: 40px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.contact-list { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,106,0,0.12); color: var(--accent);
  display: grid; place-items: center; font-size: 18px;
  border: 1px solid rgba(255,106,0,0.3); flex-shrink: 0;
}
.contact-item b { display: block; margin-bottom: 2px; font-size: 14px; }
.contact-item span { font-size: 13px; color: var(--text-2); }

/* ====================== How it works detailed page ====================== */
.how-step-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.how-step-row.reverse { direction: rtl; }
.how-step-row.reverse > * { direction: ltr; }
.how-step-img {
  aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border); overflow: hidden;
}
.how-step-img img { width: 100%; height: 100%; object-fit: cover; }
.how-step-num {
  display: inline-block;
  font-size: 13px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 12px;
}

/* ====================== Provider landing extras ====================== */
.pricing-card {
  padding: 36px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); text-align: center;
}
.pricing-card.featured {
  border-color: rgba(255,106,0,0.5);
  background: linear-gradient(160deg, rgba(255,106,0,0.18), rgba(255,106,0,0.04) 60%), var(--surface);
}
.pricing-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.price-tag { font-size: 56px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin: 16px 0 8px; }
.price-tag small { font-size: 16px; font-weight: 600; color: var(--text-2); margin-left: 4px; }

.faq { display: flex; flex-direction: column; gap: 8px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; padding: 18px 20px; text-align: left;
  font-size: 15px; font-weight: 600; color: #fff;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 20px; color: var(--accent); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { padding: 0 20px 18px; font-size: 14px; color: var(--text-2); line-height: 1.6; display: none; }
.faq-item.open .faq-a { display: block; }

/* ====================== Admin ====================== */
.admin-body { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--bg-2); border-right: 1px solid var(--border);
  padding: 24px 16px; display: flex; flex-direction: column; gap: 4px;
}
.admin-sidebar .logo { padding: 8px; margin-bottom: 16px; }
.admin-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 10px;
  color: var(--text-2); font-size: 14px; font-weight: 500;
  cursor: pointer;
}
.admin-nav-item:hover { background: var(--glass); color: #fff; }
.admin-nav-item.active { background: rgba(255,106,0,0.12); color: var(--accent); border: 1px solid rgba(255,106,0,0.3); }
.admin-nav-item .icon { font-size: 16px; width: 20px; text-align: center; }
.admin-nav-section { font-size: 11px; font-weight: 700; color: var(--text-3); letter-spacing: 0.08em; text-transform: uppercase; padding: 16px 14px 6px; }

.admin-main { padding: 32px 40px; overflow-y: auto; max-height: 100vh; }
.admin-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.admin-title { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin: 0; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.admin-stat {
  padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
}
.admin-stat-label { font-size: 12px; color: var(--text-3); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.admin-stat-value { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin: 6px 0 4px; }
.admin-stat-delta { font-size: 12px; color: var(--success); font-weight: 600; }
.admin-stat-delta.down { color: #ff6b6b; }

.admin-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.admin-card-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
}
.admin-card-head h3 { margin: 0; font-size: 15px; font-weight: 700; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th {
  text-align: left; padding: 12px 20px;
  font-size: 11px; font-weight: 700; color: var(--text-3);
  letter-spacing: 0.06em; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.admin-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); color: var(--text-2); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: 0; }
.admin-table tr:hover td { background: var(--glass); color: #fff; }
.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
}
.status-pill.green { background: rgba(43,212,164,0.14); color: var(--success); }
.status-pill.orange { background: rgba(255,106,0,0.14); color: var(--accent); }
.status-pill.gray { background: var(--glass); color: var(--text-2); }
.status-pill.red { background: rgba(255,80,80,0.14); color: #ff7373; }
.admin-row-actions { display: flex; gap: 6px; }
.admin-action {
  padding: 5px 10px; border-radius: 8px; font-size: 11px; font-weight: 600;
  background: var(--glass); border: 1px solid var(--border); color: var(--text-2);
}
.admin-action:hover { background: var(--glass-strong); color: #fff; }
.admin-action.primary { background: var(--accent); color: #fff; border-color: var(--accent); }

.admin-grid-2 { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }

/* ====================== Login ====================== */
.login-page {
  min-height: 100vh; display: grid; place-items: center;
  background:
    radial-gradient(800px 400px at 70% 20%, rgba(255,106,0,0.18), transparent 60%),
    var(--bg);
  padding: 24px;
}
.login-card {
  width: 100%; max-width: 420px;
  padding: 40px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.login-card .logo { justify-content: center; margin-bottom: 24px; }
.login-card .logo .logo-word { font-size: 26px; }

/* ====================== Responsive ====================== */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .login-link { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn-primary { display: none; }
  .mobile-menu { display: flex; }
  .header.no-menu .mobile-menu { display: none; }

  .cat-row { grid-template-columns: repeat(3, 1fr); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .provider-card { grid-template-columns: 1fr; padding: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-grid { grid-template-columns: 1fr; }
  .modal-media { min-height: 240px; }
  .modal-media img { min-height: 240px; max-height: 280px; }

  .legal-grid { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc { position: static; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; padding: 28px; }
  .how-step-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .how-step-row.reverse { direction: ltr; }
  .pricing-row { grid-template-columns: 1fr; }
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { padding: 24px; max-height: none; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-grid-2 { grid-template-columns: 1fr; }
  .admin-table { font-size: 12px; }
  .admin-table th, .admin-table td { padding: 10px 12px; }
}

@media (max-width: 640px) {
  .filters-bar { flex-direction: column; align-items: stretch; }
  .filter-group { min-width: 0; }
  .filters-bar .btn { margin-left: 0; width: 100%; }
  .results-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .admin-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .admin-stat-value { font-size: 22px; }
  .admin-table thead { display: none; }
  .admin-table tr { display: block; padding: 12px; border-bottom: 1px solid var(--border); }
  .admin-table td { display: flex; justify-content: space-between; padding: 6px 0; border: 0; font-size: 13px; }
  .admin-table td::before { content: attr(data-label); font-weight: 600; color: var(--text-3); }
  .login-card { padding: 28px; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 64px; }
  .section-head { flex-direction: column; align-items: flex-start; }

  .search-grid { grid-template-columns: 1fr; gap: 0; }
  .search-field { border-right: 0; border-bottom: 1px solid var(--border); padding: 14px 18px; }
  .search-field:last-of-type { border-bottom: 0; }
  .btn-search { margin-top: 6px; padding: 14px; }

  .hero-stats { gap: 24px; }
  .hero-stats b { font-size: 20px; }

  .cat-row { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .provider-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .modal-body { padding: 24px; }
  .checkout-pad { padding: 28px 24px; }
  .modal-title { font-size: 22px; }
}

/* ─── 3.A kör · vendég felhasználói menü ─────────────────────────────────── */
.user-menu { position: relative; }
.user-menu-trigger {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 14px 6px 6px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-1);
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    transition: all 200ms ease;
}
.user-menu-trigger:hover {
    background: var(--glass-strong);
    border-color: var(--border-strong);
}
.user-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700; font-size: 13px;
    text-transform: uppercase;
}
.user-name-text { white-space: nowrap; }
.user-menu-caret { font-size: 10px; opacity: 0.5; }

.user-menu-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0;
    min-width: 200px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    opacity: 0; visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    z-index: 100;
}
.user-menu.open .user-menu-dropdown {
    opacity: 1; visibility: visible;
    transform: translateY(0);
}
.user-menu-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text-1);
    font-size: 14px; font-weight: 500;
    transition: background 120ms ease;
}
.user-menu-dropdown a:hover {
    background: var(--glass);
    color: var(--accent);
}
.user-menu-dropdown a span {
    font-size: 14px;
    color: var(--text-3);
    width: 18px;
    text-align: center;
}
.user-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 6px;
}

/* Mobile: a user menü szöveget elrejtjük, csak az avatar marad */
@media (max-width: 768px) {
    .user-name-text, .user-menu-caret { display: none; }
    .user-menu-trigger { padding: 4px; }
}

/* Flash üzenetek a frontenden */
.user-flash {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid;
}
.user-flash-error   { background: rgba(255, 80, 80, 0.10); border-color: rgba(255, 80, 80, 0.4); color: #ff7373; }
.user-flash-success { background: rgba(43, 212, 164, 0.12); border-color: rgba(43, 212, 164, 0.4); color: #2bd4a4; }
.user-flash-info    { background: rgba(255, 106, 0, 0.10); border-color: rgba(255, 106, 0, 0.3); color: var(--accent); }

/* Auth oldalak (login, register, forgot, reset) — közös style */
.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 60px 20px;
    background: radial-gradient(ellipse at top, rgba(255,106,0,0.06) 0%, transparent 60%), var(--bg);
}
.auth-card {
    width: 100%;
    max-width: 440px;
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
}
.auth-card .logo { justify-content: center; margin-bottom: 24px; }
.auth-card h1 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 8px; text-align: center; }
.auth-card .auth-sub { color: var(--text-3); font-size: 14px; text-align: center; margin: 0 0 24px; }
.auth-card .auth-actions { margin-top: 14px; }
.auth-card .auth-link-row {
    text-align: center; margin-top: 18px;
    font-size: 13px; color: var(--text-3);
}
.auth-card .auth-link-row a { color: var(--accent); font-weight: 600; }

/* "Fiókom" oldali táblázat */
.bookings-list {
    display: grid;
    gap: 14px;
}
.booking-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.booking-card .booking-img {
    width: 80px; height: 60px;
    border-radius: 8px; overflow: hidden;
    background: var(--surface-2);
}
.booking-card .booking-img img { width: 100%; height: 100%; object-fit: cover; }
.booking-card .booking-info b { color: #fff; }
.booking-card .booking-meta { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.booking-card .booking-status { text-align: right; }
.booking-card .booking-code { font-size: 11px; color: var(--text-3); font-family: monospace; margin-top: 4px; }
@media (max-width: 640px) {
    .booking-card { grid-template-columns: 1fr; gap: 10px; }
    .booking-card .booking-img { width: 100%; height: 120px; }
    .booking-card .booking-status { text-align: left; }
}

/* Az ajánlat oldali "regisztráció checkbox" + jelszó input */
.signup-toggle {
    margin-top: 16px;
    padding: 14px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.signup-toggle label {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13px; color: var(--text-2); cursor: pointer;
}
.signup-toggle .signup-extra {
    margin-top: 12px; padding-top: 12px;
    border-top: 1px solid var(--border);
    display: none;
}
.signup-toggle.on .signup-extra { display: block; }
