*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --g50: #f0fdf4; --g100: #dcfce7; --g200: #bbf7d0;
  --g500: #22c55e; --g600: #16a34a; --g700: #15803d; --g800: #166534; --g900: #14532d;
  --t500: #14b8a6; --t600: #0d9488;
  --s50: #f8fafc; --s100: #f1f5f9; --s200: #e2e8f0; --s300: #cbd5e1;
  --s400: #94a3b8; --s500: #64748b; --s600: #475569;
  --s700: #334155; --s800: #1e293b; --s900: #0f172a;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--s800); background: var(--s50);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.nav-brand {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1.125rem; font-weight: 800; letter-spacing: -.02em;
  color: var(--g700); text-decoration: none;
}
.nav-brand span { color: var(--s800); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--s600); font-size: .875rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--g600); }
.nav-cta {
  background: var(--g600) !important; color: #fff !important;
  padding: .45rem 1.25rem !important; border-radius: 50px !important;
  font-weight: 600 !important; transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--g700) !important; transform: translateY(-1px); }
.nav-social { display: flex; gap: .75rem; align-items: center; margin-left: .5rem; }
.nav-social a { color: var(--s500); transition: color .2s; display: flex; align-items: center; }
.nav-social a:hover { color: var(--g600); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, rgba(12,31,16,.88) 0%, rgba(22,58,34,.84) 45%, rgba(10,46,40,.86) 75%, rgba(6,31,31,.9) 100%), url('../../bg.jpg') center center / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  padding: 88px 2rem 5rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(34,197,94,.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 85% 85%, rgba(20,184,166,.1) 0%, transparent 50%);
}
.hero-blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); animation: float 12s ease-in-out infinite; }
.hero-blob-1 { width: 500px; height: 500px; top: -100px; right: -100px; background: rgba(34,197,94,.05); }
.hero-blob-2 { width: 400px; height: 400px; bottom: -80px; left: -80px; background: rgba(20,184,166,.05); animation-delay: -6s; }
@keyframes float { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-20px)} }

.hero-inner { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.25);
  color: #86efac; padding: .375rem 1.125rem; border-radius: 50px;
  font-size: .8125rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 1.75rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.75rem); font-weight: 900;
  color: #fff; line-height: 1.06; letter-spacing: -.035em; margin-bottom: 1.5rem;
}
.hero h1 .hl {
  background: linear-gradient(120deg, #4ade80 20%, #34d399 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: clamp(.975rem, 2.5vw, 1.2rem); color: rgba(255,255,255,.65);
  max-width: 560px; margin: 0 auto 2.75rem; line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-g {
  display: inline-block; text-decoration: none;
  background: linear-gradient(135deg, #16a34a, #0d9488);
  color: #fff; padding: .9rem 2.25rem; border-radius: 50px;
  font-size: 1rem; font-weight: 700; cursor: pointer; border: none;
  box-shadow: 0 6px 28px rgba(22,163,74,.4);
  transition: transform .2s, box-shadow .2s;
}
.btn-g:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(22,163,74,.5); }
.btn-ghost {
  display: inline-block; text-decoration: none;
  background: rgba(255,255,255,.08); color: #fff; padding: .9rem 2.25rem;
  border-radius: 50px; font-size: 1rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(4px);
  transition: background .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.14); }

.hero-steps {
  display: flex; gap: 3rem; justify-content: center;
  margin-top: 4.5rem; flex-wrap: wrap;
}
.step-item { text-align: center; }
.step-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(34,197,94,.15); border: 1.5px solid rgba(34,197,94,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin: 0 auto .75rem;
}
.step-lbl { font-size: .8125rem; color: rgba(255,255,255,.55); max-width: 120px; line-height: 1.4; }

.scroll-down {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.3); animation: bounce 2s ease-in-out infinite; cursor: pointer;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── GENERIC SECTION ── */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.sec-label {
  display: inline-block; background: var(--g100); color: var(--g800);
  padding: .25rem .875rem; border-radius: 50px;
  font-size: .75rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; margin-bottom: .875rem;
}
.sec-title {
  font-size: clamp(1.875rem, 4vw, 2.875rem); font-weight: 900;
  color: var(--s900); letter-spacing: -.025em; line-height: 1.15; margin-bottom: .875rem;
}
.sec-desc { color: var(--s500); font-size: 1.0625rem; max-width: 540px; line-height: 1.75; }

/* ── WHY FORM ── */
.why-sec { background: #fff; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  background: var(--s50); border: 1.5px solid var(--s200); border-radius: 18px;
  padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.08); border-color: var(--g200); }
.why-icon {
  font-size: 1.75rem; min-width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--g50); border-radius: 12px;
}
.why-card h3 { font-size: .9375rem; font-weight: 700; color: var(--s800); margin-bottom: .25rem; }
.why-card p { font-size: .875rem; color: var(--s500); line-height: 1.6; }

/* ── FORM SECTION ── */
.form-sec { background: linear-gradient(180deg, #f0fdf4 0%, #e8fdf0 100%); }

.form-wrap {
  background: #fff; border-radius: 28px; padding: 3rem 3.5rem;
  box-shadow: 0 8px 48px rgba(0,0,0,.08); max-width: 820px; margin: 3rem auto 0;
}

.form-progress {
  display: flex; gap: .5rem; margin-bottom: 2.75rem;
}
.prog-step {
  flex: 1; height: 5px; border-radius: 99px;
  background: var(--s200); transition: background .4s;
}
.prog-step.active { background: var(--g500); }
.prog-step.done { background: var(--g700); }

.form-page { display: none; flex-direction: column; gap: 1.75rem; }
.form-page.visible { display: flex; }

.form-page-title { font-size: 1.375rem; font-weight: 800; color: var(--s900); margin-bottom: .25rem; }
.form-page-sub { font-size: .9375rem; color: var(--s500); line-height: 1.65; margin-top: -.5rem; }

/* topics grid */
.topics-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .875rem;
}
.topic-chip {
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 1rem; border-radius: 14px;
  border: 2px solid var(--s200); cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  user-select: none;
}
.topic-chip:hover { border-color: var(--g400); background: var(--g50); transform: translateY(-2px); }
.topic-chip.selected { border-color: var(--g500); background: var(--g50); }
.topic-chip.selected .chip-check { background: var(--g600); border-color: var(--g600); }
.topic-chip.selected .chip-check::after { opacity: 1; }
.chip-icon { font-size: 1.375rem; }
.chip-label { font-size: .9rem; font-weight: 600; color: var(--s700); flex: 1; }
.chip-check {
  width: 20px; height: 20px; border-radius: 6px;
  border: 2px solid var(--s300); background: #fff;
  transition: background .2s, border-color .2s; position: relative; flex-shrink: 0;
}
.chip-check::after {
  content: ''; position: absolute;
  top: 3px; left: 6px; width: 5px; height: 9px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg); opacity: 0; transition: opacity .2s;
}

/* priority ranking */
.priority-area { display: flex; flex-direction: column; gap: .625rem; }
.priority-row {
  display: flex; align-items: center; gap: 1rem;
  padding: .75rem 1rem; border-radius: 12px;
  background: var(--s50); border: 1.5px solid var(--s200);
}
.priority-label { flex: 1; font-size: .9375rem; font-weight: 600; color: var(--s700); }
.priority-label small { display: block; font-size: .8rem; font-weight: 400; color: var(--s400); }
.star-row { display: flex; gap: .25rem; }
.star {
  font-size: 1.375rem; cursor: pointer; color: var(--s300);
  transition: color .15s, transform .15s;
}
.star:hover, .star.lit { color: var(--a500, #f59e0b); transform: scale(1.15); }

/* text inputs */
.field-label { font-size: .875rem; font-weight: 600; color: var(--s700); margin-bottom: .4rem; }
.field-sub { font-size: .8125rem; color: var(--s400); margin-top: .2rem; }
textarea, input[type=text], input[type=email], input[type=tel] {
  width: 100%; padding: .875rem 1.125rem;
  border: 1.5px solid var(--s200); border-radius: 12px;
  font-family: inherit; font-size: .9375rem; color: var(--s800);
  background: var(--s50); resize: vertical;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
textarea:focus, input:focus { border-color: var(--g500); box-shadow: 0 0 0 3px rgba(34,197,94,.12); }

.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* navigation buttons */
.form-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: .75rem;
}
.btn-prev {
  background: transparent; border: 1.5px solid var(--s300);
  color: var(--s600); padding: .75rem 1.75rem; border-radius: 50px;
  font-size: .9375rem; font-weight: 600; cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-prev:hover { background: var(--s100); color: var(--s800); }
.btn-next {
  background: linear-gradient(135deg, #16a34a, #0d9488);
  color: #fff; padding: .875rem 2.25rem; border-radius: 50px;
  font-size: 1rem; font-weight: 700; cursor: pointer; border: none;
  box-shadow: 0 4px 20px rgba(22,163,74,.3);
  transition: transform .2s, box-shadow .2s;
}
.btn-next:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(22,163,74,.45); }
.btn-submit { background: linear-gradient(135deg, #16a34a, #0d9488); }

.step-indicator { font-size: .8125rem; color: var(--s400); }

/* success state */
.success-box {
  display: none; flex-direction: column; align-items: center;
  text-align: center; gap: 1.25rem; padding: 2rem 0;
}
.success-box.visible { display: flex; }
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #0d9488);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.25rem;
}
.success-box h3 { font-size: 1.625rem; font-weight: 900; color: var(--s900); }
.success-box p { font-size: 1rem; color: var(--s500); max-width: 380px; line-height: 1.7; }
.success-reset { cursor: pointer; color: var(--g700); font-weight: 600; font-size: .9375rem; text-decoration: underline; }

/* ── TEAM PREVIEW ── */
.team-sec { background: #fff; }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.team-card {
  padding: 1.75rem 1.5rem; border: 1.5px solid var(--s200); border-radius: 20px;
  text-align: center; transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.09); }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; font-weight: 800; color: #fff;
  margin: 0 auto .875rem;
}
.team-photo {
  width: 64px; height: 64px; border-radius: 50%;
  object-fit: cover; display: block; margin: 0 auto .875rem;
  border: 2px solid var(--g200);
  image-orientation: from-image;
}
.av1 { background: linear-gradient(135deg,#16a34a,#0d9488); }
.av2 { background: linear-gradient(135deg,#0d9488,#0284c7); }
.av3 { background: linear-gradient(135deg,#7c3aed,#16a34a); }
.av4 { background: linear-gradient(135deg,#0284c7,#7c3aed); }
.av5 { background: linear-gradient(135deg,#c2410c,#f59e0b); }
.av6 { background: linear-gradient(135deg,#be123c,#9d174d); }
.av7 { background: linear-gradient(135deg,#0d9488,#0f766e); }
.team-num {
  font-size: .6875rem; font-weight: 700; letter-spacing: .05em;
  color: var(--g600); text-transform: uppercase;
  background: var(--g100); padding: .15rem .55rem; border-radius: 50px;
  display: inline-block; margin-bottom: .5rem;
}
.team-name { font-size: .9375rem; font-weight: 800; color: var(--s900); }
.team-role { font-size: .8rem; color: var(--s500); margin-top: .25rem; }
.team-age  { font-size: .78rem; color: var(--s400); margin-top: .2rem; }
.team-bio  { font-size: .8rem; color: var(--s600); margin-top: .75rem; text-align: left; line-height: 1.55; }

/* ── CTA ── */
.cta-sec {
  background: linear-gradient(135deg, #14532d 0%, #0c3b33 50%, #0f4c3a 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(34,197,94,.12) 0%, transparent 60%);
}
.cta-sec .container { position: relative; z-index: 1; }
.cta-sec h2 {
  font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900;
  color: #fff; letter-spacing: -.025em; margin-bottom: 1rem;
}
.cta-sec p { color: rgba(255,255,255,.65); font-size: 1.125rem; max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.75; }

/* ── FOOTER ── */
footer { background: var(--s900); color: rgba(255,255,255,.4); padding: 2rem; text-align: center; font-size: .875rem; }
footer strong { color: rgba(255,255,255,.8); }
.footer-social { display: flex; gap: 1.25rem; justify-content: center; margin-bottom: .875rem; }
.footer-social a { color: rgba(255,255,255,.5); transition: color .2s; display: flex; align-items: center; gap: .4rem; font-size: .875rem; text-decoration: none; }
.footer-social a:hover { color: #fff; }

/* ── GALERIE ── */
.gallery-sec { background: var(--s50); }
.gallery-filter {
  display: flex; gap: .5rem; flex-wrap: wrap; margin: 1.75rem 0 2rem;
}
.gf-btn {
  padding: .4rem 1rem; border-radius: 50px; border: 1.5px solid var(--s200);
  background: #fff; color: var(--s600); font-size: .8125rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.gf-btn:hover, .gf-btn.active {
  background: var(--g600); color: #fff; border-color: var(--g600);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.gal-card {
  border-radius: 16px; overflow: hidden; cursor: pointer;
  border: 1.5px solid var(--s200); background: var(--s100);
  transition: transform .25s, box-shadow .25s;
}
.gal-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.gal-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.gal-card-info { padding: .75rem 1rem; }
.gal-card-title { font-size: .9rem; font-weight: 700; color: var(--s800); margin-bottom: .2rem; }
.gal-card-meta { font-size: .78rem; color: var(--s500); }
.gallery-empty { text-align: center; color: var(--s400); padding: 3rem 1rem; font-size: .95rem; }
.gallery-more-wrap { text-align: center; margin-top: 2.25rem; }
.gallery-more-btn {
  display: inline-block; padding: .75rem 2rem; border-radius: 50px;
  border: 2px solid var(--g600); background: transparent; color: var(--g700);
  font-size: .9375rem; font-weight: 700; cursor: pointer; font-family: inherit;
  transition: background .2s, color .2s;
}
.gallery-more-btn:hover { background: var(--g600); color: #fff; }

/* ── LIGHTBOX ── */
.lb-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
  padding: 1.5rem;
}
.lb-overlay.open { display: flex; }
.lb-inner { position: relative; max-width: 900px; width: 100%; }
.lb-img { max-width: 100%; max-height: 80vh; border-radius: 12px; display: block; margin: 0 auto; object-fit: contain; }
.lb-caption { text-align: center; color: rgba(255,255,255,.75); margin-top: 1rem; font-size: .9rem; }
.lb-caption strong { color: #fff; display: block; }
.lb-close {
  position: absolute; top: -2.5rem; right: 0;
  background: none; border: none; color: rgba(255,255,255,.7);
  font-size: 2rem; cursor: pointer; line-height: 1; padding: .25rem;
}
.lb-close:hover { color: #fff; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); border: none; color: #fff;
  font-size: 1.75rem; cursor: pointer; border-radius: 50%;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-nav:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: -3.5rem; }
.lb-next { right: -3.5rem; }
@media (max-width: 768px) {
  .lb-prev { left: -2rem; } .lb-next { right: -2rem; }
}

/* ── AKCE ── */
.events-sec { background: #fff; }
.events-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.event-card {
  border: 1.5px solid var(--s200); border-radius: 18px; padding: 1.5rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; gap: .5rem;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); border-color: var(--g200); }
.event-card.past { opacity: .55; }
.event-date {
  font-size: .8125rem; font-weight: 700; letter-spacing: .04em;
  color: var(--g600); text-transform: uppercase;
}
.event-name { font-size: 1.0625rem; font-weight: 800; color: var(--s900); line-height: 1.3; }
.event-location { font-size: .85rem; color: var(--s500); }
.event-desc { font-size: .875rem; color: var(--s600); line-height: 1.6; }
.event-cat {
  display: inline-block; background: var(--g100); color: var(--g800);
  padding: .2rem .65rem; border-radius: 50px; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; align-self: flex-start;
}
.event-cat.past { background: var(--s100); color: var(--s600); }
.event-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .8125rem; font-weight: 600; color: var(--g600); margin-top: .25rem;
}
.event-link:hover { color: var(--g700); }
.event-img { width: 100%; height: 160px; object-fit: cover; border-radius: 10px; margin-bottom: .25rem; cursor: pointer; transition: opacity .2s; }
.event-img:hover { opacity: .85; }
.events-empty { text-align: center; color: var(--s400); padding: 3rem 1rem; margin-top: 2.5rem; }

/* ── PROGRAM ── */
.program-sec { background: linear-gradient(180deg, #f8fafc 0%, #f0fdf4 100%); }
.program-filter {
  display: flex; gap: .5rem; flex-wrap: wrap; margin: 1.75rem 0 2rem;
}
.pf-btn {
  padding: .4rem 1rem; border-radius: 50px; border: 1.5px solid var(--s200);
  background: #fff; color: var(--s600); font-size: .8125rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.pf-btn:hover, .pf-btn.active {
  background: var(--g600); color: #fff; border-color: var(--g600);
}
.program-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.program-card {
  background: #fff; border: 1.5px solid var(--s200); border-radius: 18px;
  padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.08); border-color: var(--g200); }
.program-icon {
  font-size: 1.75rem; min-width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--g50); border-radius: 14px; flex-shrink: 0;
}
.program-card-body { flex: 1; }
.program-card-title { font-size: 1rem; font-weight: 800; color: var(--s900); margin-bottom: .35rem; }
.program-card-desc { font-size: .875rem; color: var(--s600); line-height: 1.6; margin-bottom: .75rem; }
.program-card-cat {
  display: inline-block; background: var(--g100); color: var(--g800);
  padding: .15rem .6rem; border-radius: 50px; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
}
.program-empty { text-align: center; color: var(--s400); padding: 3rem 1rem; font-size: .95rem; }

/* ── FADE UP ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── VIDEA ── */
.videos-sec { background: #fff; }
.videos-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.video-card {
  border: 1.5px solid var(--s200); border-radius: 18px; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.08); }
.video-embed-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  background: var(--s900);
}
.video-embed-wrap--portrait {
  padding-bottom: 177.78%; /* 9:16 */
}
.video-embed-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}
.video-card--portrait {
  max-width: 320px; margin-left: auto; margin-right: auto;
}
.video-thumb { width: 100%; height: 200px; object-fit: cover; display: block; }
.video-card-body { padding: 1.25rem 1.5rem; }
.video-card-title { font-size: 1rem; font-weight: 800; color: var(--s900); margin-bottom: .35rem; }
.video-card-desc { font-size: .875rem; color: var(--s600); line-height: 1.6; }

/* ── NAŠE PRÁCE ── */
.nase-prace-sec { background: var(--s50); }
.nase-prace-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem; margin-top: 2.5rem;
}
.nase-prace-card {
  background: #fff; border: 1.5px solid var(--s200); border-radius: 18px;
  overflow: hidden; transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.nase-prace-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.08); }
.nase-prace-img-wrap { overflow: hidden; flex-shrink: 0; }
.nase-prace-img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .4s; }
.nase-prace-card:hover .nase-prace-img { transform: scale(1.04); }
.nase-prace-body { padding: 1.25rem 1.5rem; flex: 1; }
.nase-prace-title { font-size: 1.0625rem; font-weight: 800; color: var(--s900); margin-bottom: .4rem; }
.nase-prace-desc { font-size: .875rem; color: var(--s600); line-height: 1.65; }

/* ── MOBILE NAV ── */
.mobile-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .mobile-hamburger { display: flex; }
  .nav-links { display: none !important; }
  .nav-social { display: none !important; }

  .navbar { padding: 0 1.25rem; }
  section { padding: 4.5rem 1.25rem; }
  .form-wrap { padding: 1.75rem 1.25rem; }
  .input-row { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }
  .hero-steps { gap: 1.5rem; }
  .why-grid, .team-grid, .program-grid, .videos-grid, .nase-prace-grid { grid-template-columns: 1fr; }
}
