/* ============================================================
   SvietiaceStropy.sk — Hlavný stylesheet v1.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim:   #8B6F2E;
  --gold-bg:    rgba(201,168,76,0.08);
  --dark:       #0D0D0D;
  --dark2:      #111111;
  --dark3:      #181818;
  --dark4:      #202020;
  --text:       #F0EDE6;
  --text-muted: #8A8478;
  --text-dim:   #4A4840;
  --border:     rgba(201,168,76,0.14);
  --border-s:   rgba(201,168,76,0.32);
  --border-w:   rgba(255,255,255,0.06);
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;
  --transition: 0.22s ease;
  --max-w:      1160px;
  --px:         20px;
  --py:         56px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--dark); color: var(--text); font-family: 'Inter', system-ui, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
.section-eyebrow { font-size: 10px; letter-spacing: 0.22em; color: var(--gold-dim); text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(26px, 5vw, 42px); font-weight: 400; line-height: 1.15; color: var(--text); }
.section-title em { color: var(--gold); font-style: normal; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: var(--radius-sm); font-size: 12px; letter-spacing: 0.07em; font-family: 'Inter', sans-serif; padding: 14px 24px; transition: opacity var(--transition), transform var(--transition); border: none; white-space: nowrap; }
.btn:active { transform: scale(0.98); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { opacity: 0.88; }
.btn-outline { background: none; color: var(--gold); border: 0.5px solid var(--border-s); }
.btn-outline:hover { background: var(--gold-bg); }
.btn-full { width: 100%; }

/* ── NAV ── */
.site-nav { position: sticky; top: 0; z-index: 100; background: rgba(13,13,13,0.95); border-bottom: 0.5px solid var(--border); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px var(--px); max-width: var(--max-w); margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 36px; height: 36px; background: var(--gold); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 20px; height: 20px; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.logo-w1 { font-size: 12px; letter-spacing: 0.08em; color: var(--text); text-transform: uppercase; }
.logo-w2 { font-size: 9px; letter-spacing: 0.18em; color: var(--text-muted); text-transform: uppercase; }
.nav-links { display: none; align-items: center; gap: 28px; }
.nav-links a { font-size: 11px; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; transition: color var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta { padding: 9px 16px; font-size: 11px; }
.nav-burger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--text-muted); transition: transform var(--transition), opacity var(--transition); }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile { display: none; flex-direction: column; border-top: 0.5px solid var(--border); background: var(--dark2); }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 14px var(--px); font-size: 13px; letter-spacing: 0.06em; color: var(--text-muted); border-bottom: 0.5px solid var(--border); transition: color var(--transition); }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-cta { padding: 16px var(--px); }

/* ── HERO ── */
/* ============================================================
   HERO FIX — fullscreen obrázok s vnoreným textom
   Nahraďte celú .hero sekciu v style.css
   ============================================================ */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 0.5px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,0.92) 0%,
    rgba(13,13,13,0.55) 40%,
    rgba(13,13,13,0.15) 70%,
    rgba(13,13,13,0.05) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 var(--px) 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 640px;
  text-align: center;
}

.hero-eyebrow { margin-bottom: 14px; color: rgba(201,168,76,0.8); }

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 8vw, 80px);
  font-weight: 400; line-height: 1.05;
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title em { color: var(--gold); font-style: italic; display: block; }

.hero-subtitle {
  font-size: 15px; line-height: 1.75;
  color: rgba(240,237,230,0.82);
  max-width: 440px;
  margin: 0 auto 32px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 20px; right: var(--px);
  z-index: 1;
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.15em;
  color: rgba(240,237,230,0.45); text-transform: uppercase;
}
.hero-scroll-line {
  width: 32px; height: 0.5px;
  background: rgba(201,168,76,0.4);
}

@media (min-width: 768px) {
  .hero { min-height: 88vh; }
  .hero-inner { padding-bottom: 72px; }
  .hero-btns { flex-direction: row; justify-content: center; }
}
@media (min-width: 1200px) {
  .hero { min-height: 92vh; }
  .hero-inner { padding-bottom: 96px; }
}

/* ── STATS ── */
.stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 0.5px solid var(--border); }
.stat-item { padding: 20px 12px; text-align: center; border-right: 0.5px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; color: var(--gold); line-height: 1; }
.stat-label { font-size: 9px; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; margin-top: 4px; }

/* ============================================================
   GALÉRIA
   ============================================================ */
.gallery-section { padding: var(--py) 0; border-bottom: 0.5px solid var(--border); overflow: hidden; }
.gallery-header { padding: 0 var(--px) 28px; max-width: var(--max-w); margin: 0 auto; }
.gallery-header p { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.gallery-scroll-wrap { position: relative; width: 100%; }

/* ── MOBILE slider ── */
.gallery-track {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  height: 280px;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-slide-mobile {
  flex-shrink: 0;
  width: 100vw;
  height: 280px;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-slide-mobile img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.gallery-slide-mobile-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 14px 12px; background: linear-gradient(to top, rgba(0,0,0,0.65), transparent); font-size: 11px; color: rgba(255,255,255,0.8); }

/* Desktop masonry — SKRYTÉ na mobile */
.gallery-group { display: none; }
.gallery-slide { position: absolute; overflow: hidden; background: var(--dark3); cursor: pointer; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; pointer-events: none; }
.gallery-slide:hover img { transform: scale(1.03); }

/* Fade */
.gallery-fade-left, .gallery-fade-right { position: absolute; top: 0; bottom: 0; pointer-events: none; z-index: 2; width: 32px; }
.gallery-fade-left  { left: 0;  background: linear-gradient(to right, var(--dark), transparent); }
.gallery-fade-right { right: 0; background: linear-gradient(to left,  var(--dark), transparent); }

/* Šípky */
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: rgba(13,13,13,0.85); border: 0.5px solid var(--border-s); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; opacity: 1; transition: background 0.2s; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.gallery-arrow svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }
.gallery-arrow:hover { background: rgba(201,168,76,0.2); }
.gallery-arrow-left  { left: 8px; }
.gallery-arrow-right { right: 8px; }

/* Dots */
.gallery-dots { display: flex; justify-content: center; gap: 6px; padding: 10px 0 0; }
.gallery-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-dim); transition: background 0.2s, width 0.2s; cursor: pointer; border: none; }
.gallery-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }

.gallery-footer { display: flex; align-items: center; justify-content: space-between; padding: 12px var(--px) 0; max-width: var(--max-w); margin: 0 auto; }
.gallery-count { font-size: 12px; color: var(--text-muted); }
.gallery-link  { font-size: 12px; color: var(--gold); }
.gallery-link:hover { text-decoration: underline; }

/* ── DESKTOP 768px+ ── */
@media (min-width: 768px) {
  .gallery-track { height: 480px; scroll-snap-type: none; padding: 0 var(--px); }
  .gallery-slide-mobile { display: none !important; }
  .gallery-group { display: block; position: relative; flex-shrink: 0; height: 100%; }
  .gallery-dots { display: none; }
  .gallery-fade-left, .gallery-fade-right { width: 80px; }
  .gallery-arrow { opacity: 0; width: 52px; height: 52px; }
  .gallery-arrow-left  { left: calc(var(--px) + 8px); }
  .gallery-arrow-right { right: calc(var(--px) + 8px); }
  .gallery-scroll-wrap:hover .gallery-arrow { opacity: 1; }
}

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 2px; display: block; }
.lightbox-close { position: fixed; top: 20px; right: 20px; background: rgba(255,255,255,0.1); border: 0.5px solid rgba(255,255,255,0.2); color: #fff; width: 44px; height: 44px; border-radius: 50%; font-size: 22px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10000; transition: background 0.2s; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 0.5px solid rgba(255,255,255,0.2); color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 26px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10000; transition: background 0.2s; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ── VÝHODY ── */
.benefits-section { padding: var(--py) var(--px); border-bottom: 0.5px solid var(--border); }
.benefits-section .section-title { margin-bottom: 32px; }
.benefits-list { display: flex; flex-direction: column; }
.benefit-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 0.5px solid var(--border); }
.benefit-item:last-child { border-bottom: none; padding-bottom: 0; }
.benefit-num { font-size: 10px; letter-spacing: 0.1em; color: var(--gold-dim); min-width: 24px; padding-top: 3px; }
.benefit-title { font-size: 15px; color: var(--text); margin-bottom: 6px; font-weight: 500; }
.benefit-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── POŽIADAVKY ── */
.requirements-section { padding: var(--py) var(--px); background: var(--dark2); border-bottom: 0.5px solid var(--border); }
.req-intro { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin: 16px 0 28px; max-width: 560px; }
.req-cards { display: flex; flex-direction: column; gap: 12px; }
.req-card { background: var(--dark3); border: 0.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.req-card-img { width: 100%; height: 180px; object-fit: cover; background: var(--dark4); }
.req-card-body { padding: 16px 18px 20px; }
.req-card-title { font-size: 14px; color: var(--text); margin-bottom: 8px; font-weight: 500; }
.req-card-text { font-size: 12px; color: var(--text-muted); line-height: 1.7; }

/* ── POSTUP ── */
.process-section { padding: var(--py) var(--px); border-bottom: 0.5px solid var(--border); }
.process-list { display: flex; flex-direction: column; margin-top: 28px; }
.process-item { display: flex; gap: 18px; padding: 20px 0; border-bottom: 0.5px solid var(--border); }
.process-item:last-child { border-bottom: none; padding-bottom: 0; }
.process-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 32px; color: var(--gold-dim); line-height: 1; min-width: 36px; padding-top: 2px; }
.process-title { font-size: 15px; color: var(--text); margin-bottom: 6px; font-weight: 500; }
.process-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── ARCHITEKTI ── */
.architects-section { padding: var(--py) var(--px); background: var(--dark2); border-top: 0.5px solid var(--border-s); border-bottom: 0.5px solid var(--border-s); }
.arch-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; border: 0.5px solid var(--border-s); padding: 5px 12px; border-radius: var(--radius-sm); margin-bottom: 18px; }
.arch-subtitle { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin: 14px 0 28px; max-width: 520px; }
.arch-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.arch-feature { display: flex; gap: 14px; align-items: flex-start; background: var(--dark3); border: 0.5px solid var(--border); border-radius: var(--radius-md); padding: 16px; }
.arch-feature-icon { width: 36px; height: 36px; flex-shrink: 0; border: 0.5px solid var(--border-s); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.arch-feature-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.arch-feature-title { font-size: 13px; color: var(--text); margin-bottom: 4px; font-weight: 500; }
.arch-feature-text { font-size: 12px; color: var(--text-muted); line-height: 1.65; }

/* ── REFERENCIE ── */
.testimonials-section { padding: var(--py) var(--px); border-bottom: 0.5px solid var(--border); }
.testimonials-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.testi-card { background: var(--dark3); border: 0.5px solid var(--border); border-radius: var(--radius-md); padding: 20px; }
.testi-stars { font-size: 11px; color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; }
.testi-text { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px; font-style: italic; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.testi-author { font-size: 11px; color: var(--text-dim); letter-spacing: 0.05em; }

/* ── FAQ ── */
.faq-section { padding: var(--py) var(--px); border-bottom: 0.5px solid var(--border); }
.faq-list { margin-top: 28px; }
.faq-item { border-bottom: 0.5px solid var(--border); }
.faq-item:first-child { border-top: 0.5px solid var(--border); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 0; background: none; border: none; color: var(--text); font-size: 14px; font-family: 'Inter', sans-serif; text-align: left; cursor: pointer; gap: 16px; }
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; position: relative; border: 0.5px solid var(--border-s); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--gold); transition: opacity var(--transition), transform var(--transition); }
.faq-icon::before { width: 8px; height: 0.5px; }
.faq-icon::after  { width: 0.5px; height: 8px; }
.faq-item.open .faq-icon::after { opacity: 0; transform: rotate(90deg); }
.faq-answer { font-size: 13px; color: var(--text-muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 18px; }

/* ── KONTAKT ── */
.contact-section { padding: var(--py) var(--px); border-bottom: 0.5px solid var(--border); }
.contact-grid { display: flex; flex-direction: column; gap: 32px; margin-top: 28px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-item-icon { color: var(--gold); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.contact-item-icon svg { stroke: var(--gold); }
.contact-item-label { font-size: 10px; letter-spacing: 0.1em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 3px; }
.contact-item-value { font-size: 14px; color: var(--text); }
.contact-item-value a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: flex; flex-direction: column; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 10px; letter-spacing: 0.12em; color: var(--text-dim); text-transform: uppercase; }
.form-input, .form-select, .form-textarea { background: var(--dark3); border: 0.5px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-family: 'Inter', sans-serif; font-size: 14px; padding: 12px 14px; width: 100%; transition: border-color var(--transition); -webkit-appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-gdpr { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.form-gdpr input[type="checkbox"] { margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.form-gdpr a { color: var(--gold-dim); text-decoration: underline; }
.upload-zone { border: 0.5px dashed var(--border-s); border-radius: var(--radius-sm); padding: 20px; text-align: center; cursor: pointer; transition: border-color var(--transition), background var(--transition); }
.upload-zone:hover { border-color: var(--gold); background: var(--gold-bg); }
.upload-zone-icon { font-size: 24px; color: var(--gold-dim); margin-bottom: 8px; }
.upload-zone-text { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.upload-zone-sub { font-size: 10px; color: var(--text-dim); margin-top: 4px; letter-spacing: 0.06em; }

/* ── FOOTER ── */
.site-footer { padding: 40px var(--px) 32px; border-top: 0.5px solid var(--border); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.footer-top { display: flex; flex-direction: column; gap: 20px; }
.footer-brand-name { font-size: 11px; letter-spacing: 0.14em; color: var(--gold-dim); text-transform: uppercase; margin-bottom: 6px; }
.footer-brand-text { font-size: 12px; color: var(--text-dim); line-height: 1.7; max-width: 280px; }
.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links-title { font-size: 10px; letter-spacing: 0.14em; color: var(--text-dim); text-transform: uppercase; }
.footer-links-col a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer-links-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 0.5px solid var(--border); padding-top: 20px; display: flex; flex-direction: column; gap: 6px; }
.footer-legal { font-size: 11px; color: var(--text-dim); line-height: 1.7; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   TABLET 768px+
   ============================================================ */
@media (min-width: 768px) {
  :root { --px: 36px; --py: 72px; }
  .nav-burger { display: none; }
  .nav-links { display: flex; }
  .nav-mobile { display: none !important; }
  .hero { padding-top: 72px; }
  .hero-btns { flex-direction: row; }
  .hero-image img { height: 380px; }
  .req-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .req-card-img { height: 200px; }
  .form-row { flex-direction: row; }
  .footer-top { flex-direction: row; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ============================================================
   DESKTOP 1200px+
   ============================================================ */
@media (min-width: 1200px) {
  :root { --px: 60px; --py: 96px; }
  .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .hero-image { margin: 0; width: 100%; grid-column: 2; grid-row: 1/3; margin-top: -72px; }
  .hero-image img { height: 560px; border-radius: var(--radius-md); }
  .hero-btns { margin-bottom: 0; }
  .stats-bar { grid-template-columns: repeat(3, 200px); justify-content: center; border-top: 0.5px solid var(--border); }
  .benefits-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px; }
  .benefit-item { flex-direction: column; gap: 10px; border-bottom: none; border-right: 0.5px solid var(--border); padding-right: 40px; }
  .benefit-item:last-child { border-right: none; }
  .req-cards { grid-template-columns: repeat(3, 1fr); }
  .process-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
  .process-item { flex-direction: column; border-bottom: none; border-right: 0.5px solid var(--border); padding-right: 24px; }
  .process-item:last-child { border-right: none; }
  .arch-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .testimonials-list { display: grid; grid-template-columns: repeat(3, 1fr); }
  .contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
}
/* FORCE CENTER HERO */
.hero-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.hero-content {
  width: 100% !important;
  max-width: 640px !important;
  text-align: center !important;
}
.hero-btns {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
}
@media (max-width: 767px) {
  .hero-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
    align-items: center !important;
  }
  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    padding: 0 20px !important;
  }
  .hero-title {
    text-align: center !important;
  }
  .hero-eyebrow {
    text-align: center !important;
  }
  .hero-subtitle {
    text-align: center !important;
  }
  .hero-btns {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }
  .hero-btns .btn {
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
  }
}
/* ============================================================
   KONTAKT — mapa ako fullscreen pozadie
   ============================================================ */

.contact-section {
  position: relative;
  overflow: hidden;
  border-bottom: 0.5px solid var(--border);
  min-height: 600px; /* Zaistí výšku aby mapa bola viditeľná */
}

/* Mapa — absolútne pozadie cez celú sekciu */
.contact-map-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.contact-map-iframe {
  position: absolute;
  top: -5%;
  left: -40%;
  width: 140%;
  height: 110%;
  border: none;
  display: block;
  filter: grayscale(100%) brightness(0.45) contrast(1.1);
  -webkit-filter: grayscale(100%) brightness(0.45) contrast(1.1);
}

/* Overlay desktop — tma sprava a zhora */
.contact-map-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to left,
      rgba(13,13,13,1.0)  0%,
      rgba(13,13,13,0.88) 30%,
      rgba(13,13,13,0.45) 55%,
      rgba(13,13,13,0.0)  80%
    ),
    linear-gradient(to bottom,
      rgba(13,13,13,1.0)  0%,
      rgba(13,13,13,0.65) 20%,
      rgba(13,13,13,0.15) 50%,
      rgba(13,13,13,0.0)  75%,
      rgba(13,13,13,0.0)  100%
    );
}

/* Obsah nad mapou */
.contact-section .container {
  position: relative;
  z-index: 1;
  padding-top: var(--py);
  padding-bottom: var(--py);
}

/* Kontaktné info karta */
.contact-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: rgba(13,13,13,0.72);
  border: 0.5px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Formulár karta */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: rgba(13,13,13,0.82);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; }
.contact-item-icon svg { stroke: var(--gold); }
.contact-item-label { font-size: 10px; letter-spacing: 0.1em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 3px; }
.contact-item-value { font-size: 14px; color: var(--text); line-height: 1.5; }
.contact-item-value a:hover { color: var(--gold); }

/* ── MOBILE ── */
@media (max-width: 767px) {
  .contact-section { min-height: 900px; }
  /* Iframe bez posunutia — vycentrovaný na pin */
  .contact-map-iframe {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  /* Gradient zhora a zdola, mapa viditeľná v strede */
  .contact-map-overlay {
    background:
      linear-gradient(to bottom,
        rgba(13,13,13,1.0)  0%,
        rgba(13,13,13,0.7)  15%,
        rgba(13,13,13,0.05) 35%,
        rgba(13,13,13,0.0)  50%,
        rgba(13,13,13,0.05) 65%,
        rgba(13,13,13,0.7)  85%,
        rgba(13,13,13,1.0)  100%
      );
  }

  .contact-section .contact-info { padding: 18px; }
  .contact-form { padding: 18px; }
}

/* ── DESKTOP 1200px+ ── */
@media (min-width: 1200px) {
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
  }
}

/* CTA karta vpravo */
.contact-cta-card {
  padding: 32px;
  background: rgba(13,13,13,0.82);
  border: 0.5px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
/* ============================================================
   INQUIRY MODAL — kompletný CSS
   ============================================================ */

/* Overlay — VŽDY fixed, celá obrazovka */
.iq-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  /* Desktop: center */
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.iq-overlay.open { display: flex; }

/* Na mobile — vyskakovanie zdola */
@media (max-width: 600px) {
  .iq-overlay {
    align-items: flex-end;
    padding: 0;
  }
}

/* Modal */
.iq-modal {
  background: var(--dark2);
  border: 0.5px solid var(--border-s);
  border-radius: 14px;
  width: 100%;
  max-width: 640px;
  height: 90vh;          /* Pevná výška — nie max-height */
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

@media (max-width: 600px) {
  .iq-modal {
    max-width: 100%;
    height: 92vh;
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
  }
}

/* Header */
.iq-header {
  padding: 18px 22px 14px;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.iq-header-title { font-size: 13px; font-weight: 500; color: var(--text); }
.iq-close {
  background: none; border: 0.5px solid var(--border);
  color: var(--text-muted); width: 32px; height: 32px;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; cursor: pointer; font-size: 18px;
  flex-shrink: 0; transition: all .15s;
}
.iq-close:hover { color: var(--text); }

/* Progress */
.iq-progress { height: 2px; background: var(--dark4); flex-shrink: 0; }
.iq-progress-bar { height: 100%; background: var(--gold); transition: width 0.4s ease; }

/* Dots */
.iq-steps {
  display: flex; gap: 6px; padding: 12px 22px;
  flex-shrink: 0; overflow-x: auto; scrollbar-width: none;
}
.iq-steps::-webkit-scrollbar { display: none; }
.iq-step-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--dark4); border: 1px solid var(--border);
  flex-shrink: 0; transition: all .25s;
}
.iq-step-dot.active { background: var(--gold); border-color: var(--gold); width: 20px; border-radius: 3px; }
.iq-step-dot.done   { background: rgba(201,168,76,0.4); border-color: rgba(201,168,76,0.4); }

/* Slides wrapper */
.iq-slides {
  overflow: hidden;
  flex: 1;
  min-height: 0;
  position: relative;
}
.iq-slides-inner {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  /* Výška sa nastaví cez JS */
  will-change: transform;
}

/* Každý slide — scroll tu */
.iq-slide {
  min-width: 100%;
  width: 100%;
  padding: 22px;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior-y: contain;
}

@media (max-width: 600px) {
  .iq-slide { padding: 18px; }
}

/* Slide obsah */
.iq-slide-eyebrow {
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--gold-dim); text-transform: uppercase; margin-bottom: 8px;
}
.iq-slide-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 400; color: var(--text);
  margin-bottom: 10px; line-height: 1.2;
}
.iq-slide-desc {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 22px;
}

/* Stepper */
.iq-stepper {
  display: inline-flex; align-items: center;
  border: 0.5px solid var(--border-s); border-radius: 8px;
  overflow: hidden; margin-bottom: 22px;
}
.iq-stepper-btn {
  background: var(--dark3); border: none; color: var(--gold);
  width: 44px; height: 44px; font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.iq-stepper-btn:hover { background: var(--dark4); }
.iq-stepper-val {
  min-width: 52px; text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px; color: var(--text);
  background: var(--dark2);
  border-left: 0.5px solid var(--border);
  border-right: 0.5px solid var(--border);
  line-height: 44px;
}

/* Room card */
.iq-room-card {
  background: var(--dark3); border: 0.5px solid var(--border);
  border-radius: 10px; padding: 16px; margin-bottom: 12px;
}
.iq-room-num {
  font-size: 10px; letter-spacing: 0.12em; color: var(--gold-dim);
  text-transform: uppercase; margin-bottom: 12px;
}

/* Select + Input */
.iq-select, .iq-input {
  background: var(--dark4); border: 0.5px solid var(--border);
  border-radius: 6px; color: var(--text);
  font-size: 14px; /* 16px na mobile zabraňuje zoom */
  padding: 10px 12px; width: 100%;
  font-family: 'Inter', sans-serif;
  -webkit-appearance: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .iq-select, .iq-input { font-size: 16px; } /* Zabraňuje iOS zoom */
}
.iq-select:focus, .iq-input:focus { outline: none; border-color: var(--gold); }
.iq-input::placeholder { color: var(--text-dim); }

.iq-label {
  font-size: 10px; letter-spacing: 0.1em; color: var(--text-dim);
  text-transform: uppercase; margin-bottom: 5px; display: block;
}

/* Area badge */
.iq-area-badge {
  background: var(--gold-bg); border: 0.5px solid var(--border-s);
  border-radius: 6px; padding: 7px 12px; margin-top: 8px;
  font-size: 12px; color: var(--gold);
}

/* Rozmery */
.iq-dims-room, .iq-dims-ceil {
  margin-top: 0;
}
.iq-dims-row {
  display: flex; gap: 6px; align-items: center;
  flex-wrap: wrap;
}
.iq-dims-row input { flex: 1; min-width: 70px; max-width: 100px; }

/* Otázka */
.iq-question {
  font-size: 13px; font-weight: 500; color: var(--text);
  margin: 18px 0 8px;
}
.iq-question:first-child { margin-top: 0; }

/* Footer */
.iq-footer {
  padding: 14px 22px;
  border-top: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-shrink: 0; background: var(--dark2);
}

@media (max-width: 600px) {
  .iq-footer { padding: 12px 16px; }
}

.iq-step-label { font-size: 11px; color: var(--text-dim); }

.iq-btn-back {
  background: none; border: 0.5px solid var(--border);
  color: var(--text-muted); border-radius: 6px;
  padding: 10px 18px; font-size: 12px; cursor: pointer;
  font-family: 'Inter', sans-serif; white-space: nowrap;
  transition: all .15s;
}
.iq-btn-back:hover { color: var(--text); }

.iq-btn-next {
  background: var(--dark4); border: 0.5px solid var(--border);
  color: var(--text-dim); border-radius: 6px;
  padding: 10px 22px; font-size: 12px; cursor: pointer;
  font-family: 'Inter', sans-serif; letter-spacing: 0.05em;
  transition: all .3s; flex: 1; max-width: 200px;
}
.iq-btn-next.ready {
  background: var(--gold); border-color: var(--gold);
  color: var(--dark); font-weight: 500;
}
.iq-btn-next:disabled { opacity: 0.5; cursor: not-allowed; }

.iq-btn-submit {
  background: var(--gold); border: none; color: var(--dark);
  border-radius: 6px; padding: 11px 22px; font-size: 12px;
  cursor: pointer; font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em; font-weight: 500;
  flex: 1; max-width: 200px; transition: opacity .15s;
}
.iq-btn-submit:hover { opacity: 0.88; }
.iq-btn-submit:disabled { opacity: 0.4; cursor: not-allowed; }

@media (max-width: 600px) {
  .iq-btn-next, .iq-btn-submit { max-width: none; }
}

/* Animate */
@keyframes iqSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes iqFadeIn {
  from { opacity: 0; transform: scale(0.97) translateY(8px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
@media (max-width: 600px) {
  .iq-overlay.open .iq-modal { animation: iqSlideUp 0.3s ease; }
}
@media (min-width: 601px) {
  .iq-overlay.open .iq-modal { animation: iqFadeIn 0.25s ease; }
}
/* Lepšia čitateľnosť textu */
.iq-modal {
  background: #252525;
}

.iq-slide-title {
  font-weight: 600;
  font-size: clamp(30px, 7vw, 40px);
  color: #ffffff;
  letter-spacing: -0.01em;
}

.iq-slide-eyebrow {
  color: var(--gold);
  font-weight: 500;
}

.iq-slide-desc {
  color: #a09890;
  font-size: 14px;
}

.iq-room-num {
  color: var(--gold);
  font-weight: 500;
}

.iq-question {
  color: #e8e4dc;
  font-size: 14px;
  font-weight: 600;
}

.iq-header {
  background: #1a1a1a;
}

.iq-header-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.iq-footer {
  background: #1a1a1a;
}

.iq-room-card {
  background: #1e1e1e;
  border-color: rgba(255,255,255,0.1);
}

.iq-label {
  color: #7a7670;
  font-weight: 800;
}

.iq-select, .iq-input {
  background: #111111;
  border-color: rgba(255,255,255,0.12);
  color: #f0ede6;
}

.iq-select:focus, .iq-input:focus {
  border-color: var(--gold);
  background: #0d0d0d;
}
.iq-room-num {
  color: #E8C97A !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  opacity: 1 !important;
}
#iqRoomDetails > div > div:first-child {
  color: var(--gold)!important;
  font-weight: 600 !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  border-bottom: 0.5px solid rgba(201,168,76,0.25) !important;
  padding-bottom: 10px !important;
  margin-bottom: 16px !important;
}
/* ============================================================
   INQUIRY MODAL — kompletný CSS
   ============================================================ */

/* Overlay — VŽDY fixed, celá obrazovka */
.iq-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  /* Desktop: center */
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.iq-overlay.open { display: flex; }

/* Na mobile — vyskakovanie zdola */
@media (max-width: 600px) {
  .iq-overlay {
    align-items: flex-end;
    padding: 0;
  }
}

/* Modal */
.iq-modal {
  background: var(--dark2);
  border: 0.5px solid var(--border-s);
  border-radius: 14px;
  width: 100%;
  max-width: 640px;
  height: 90vh;          /* Pevná výška — nie max-height */
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

@media (max-width: 600px) {
  .iq-modal {
    max-width: 100%;
    height: 92vh;
    max-height: 92vh;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
  }
}

/* Header */
.iq-header {
  padding: 18px 22px 14px;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.iq-header-title { font-size: 13px; font-weight: 500; color: var(--text); }
.iq-close {
  background: none; border: 0.5px solid var(--border);
  color: var(--text-muted); width: 32px; height: 32px;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; cursor: pointer; font-size: 18px;
  flex-shrink: 0; transition: all .15s;
}
.iq-close:hover { color: var(--text); }

/* Progress */
.iq-progress { height: 2px; background: var(--dark4); flex-shrink: 0; }
.iq-progress-bar { height: 100%; background: var(--gold); transition: width 0.4s ease; }

/* Dots */
.iq-steps {
  display: flex; gap: 6px; padding: 12px 22px;
  flex-shrink: 0; overflow-x: auto; scrollbar-width: none;
}
.iq-steps::-webkit-scrollbar { display: none; }
.iq-step-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--dark4); border: 1px solid var(--border);
  flex-shrink: 0; transition: all .25s;
}
.iq-step-dot.active { background: var(--gold); border-color: var(--gold); width: 20px; border-radius: 3px; }
.iq-step-dot.done   { background: rgba(201,168,76,0.4); border-color: rgba(201,168,76,0.4); }

/* Slides wrapper */
.iq-slides {
  overflow: hidden;
  flex: 1;
  min-height: 0;
  position: relative;
}
.iq-slides-inner {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  /* Výška sa nastaví cez JS */
  will-change: transform;
}

/* Každý slide — scroll tu */
.iq-slide {
  min-width: 100%;
  width: 100%;
  padding: 22px;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior-y: contain;
}

@media (max-width: 600px) {
  .iq-slide { padding: 18px; }
}

/* Slide obsah */
.iq-slide-eyebrow {
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--gold-dim); text-transform: uppercase; margin-bottom: 8px;
}
.iq-slide-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 400; color: var(--text);
  margin-bottom: 10px; line-height: 1.2;
}
.iq-slide-desc {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 22px;
}

/* Stepper */
.iq-stepper {
  display: inline-flex; align-items: center;
  border: 0.5px solid var(--border-s); border-radius: 8px;
  overflow: hidden; margin-bottom: 22px;
}
.iq-stepper-btn {
  background: var(--dark3); border: none; color: var(--gold);
  width: 44px; height: 44px; font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.iq-stepper-btn:hover { background: var(--dark4); }
.iq-stepper-val {
  min-width: 52px; text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px; color: var(--text);
  background: var(--dark2);
  border-left: 0.5px solid var(--border);
  border-right: 0.5px solid var(--border);
  line-height: 44px;
}

/* Room card */
.iq-room-card {
  background: var(--dark3); border: 0.5px solid var(--border);
  border-radius: 10px; padding: 16px; margin-bottom: 12px;
}
.iq-room-num {
  font-size: 10px; letter-spacing: 0.12em; color: var(--gold-dim);
  text-transform: uppercase; margin-bottom: 12px;
}

/* Select + Input */
.iq-select, .iq-input {
  background: var(--dark4); border: 0.5px solid var(--border);
  border-radius: 6px; color: var(--text);
  font-size: 14px; /* 16px na mobile zabraňuje zoom */
  padding: 10px 12px; width: 100%;
  font-family: 'Inter', sans-serif;
  -webkit-appearance: none;
  transition: border-color .15s;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .iq-select, .iq-input { font-size: 16px; } /* Zabraňuje iOS zoom */
}
.iq-select:focus, .iq-input:focus { outline: none; border-color: var(--gold); }
.iq-input::placeholder { color: var(--text-dim); }

.iq-label {
  font-size: 10px; letter-spacing: 0.1em; color: var(--text-dim);
  text-transform: uppercase; margin-bottom: 5px; display: block;
}

/* Area badge */
.iq-area-badge {
  background: var(--gold-bg); border: 0.5px solid var(--border-s);
  border-radius: 6px; padding: 7px 12px; margin-top: 8px;
  font-size: 12px; color: var(--gold);
}

/* Rozmery */
.iq-dims-room, .iq-dims-ceil {
  margin-top: 0;
}
.iq-dims-row {
  display: flex; gap: 6px; align-items: center;
  flex-wrap: wrap;
}
.iq-dims-row input { flex: 1; min-width: 70px; max-width: 100px; }

/* Otázka */
.iq-question {
  font-size: 13px; font-weight: 500; color: var(--text);
  margin: 18px 0 8px;
}
.iq-question:first-child { margin-top: 0; }

/* Footer */
.iq-footer {
  padding: 14px 22px;
  border-top: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; flex-shrink: 0; background: var(--dark2);
}

@media (max-width: 600px) {
  .iq-footer { padding: 12px 16px; }
}

.iq-step-label { font-size: 11px; color: var(--text-dim); }

.iq-btn-back {
  background: none; border: 0.5px solid var(--border);
  color: var(--text-muted); border-radius: 6px;
  padding: 10px 18px; font-size: 12px; cursor: pointer;
  font-family: 'Inter', sans-serif; white-space: nowrap;
  transition: all .15s;
}
.iq-btn-back:hover { color: var(--text); }

.iq-btn-next {
  background: var(--dark4); border: 0.5px solid var(--border);
  color: var(--text-dim); border-radius: 6px;
  padding: 10px 22px; font-size: 12px; cursor: pointer;
  font-family: 'Inter', sans-serif; letter-spacing: 0.05em;
  transition: all .3s; flex: 1; max-width: 200px;
}
.iq-btn-next.ready {
  background: var(--gold); border-color: var(--gold);
  color: var(--dark); font-weight: 500;
}
.iq-btn-next:disabled { opacity: 0.5; cursor: not-allowed; }

.iq-btn-submit {
  background: var(--gold); border: none; color: var(--dark);
  border-radius: 6px; padding: 11px 22px; font-size: 12px;
  cursor: pointer; font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em; font-weight: 500;
  flex: 1; max-width: 200px; transition: opacity .15s;
}
.iq-btn-submit:hover { opacity: 0.88; }
.iq-btn-submit:disabled { opacity: 0.4; cursor: not-allowed; }

@media (max-width: 600px) {
  .iq-btn-next, .iq-btn-submit { max-width: none; }
}

/* Animate */
@keyframes iqSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes iqFadeIn {
  from { opacity: 0; transform: scale(0.97) translateY(8px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
@media (max-width: 600px) {
  .iq-overlay.open .iq-modal { animation: iqSlideUp 0.3s ease; }
}
@media (min-width: 601px) {
  .iq-overlay.open .iq-modal { animation: iqFadeIn 0.25s ease; }
}

/* Spinner na submit tlačidle */
@keyframes iqSpin {
  to { transform: rotate(360deg); }
}
.iq-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(13,13,13,0.3);
  border-top-color: var(--dark);
  border-radius: 50%;
  animation: iqSpin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}