/* ============================================================
   HK Siscia — novi dizajn
   ============================================================ */

:root {
  --primary:      #111111;
  --primary-mid:  #1e1010;
  --accent:       #C91A22;
  --accent-light: #e02a32;
  --accent-dark:  #a01219;
  --white:        #ffffff;
  --off-white:    #f5f5f5;
  --text:         #1e1e1e;
  --text-muted:   #6b7a8d;
  --border:       #e2e2e2;
  --nav-h:        80px;
  --radius:       6px;
  --shadow:       0 4px 24px rgba(0,0,0,.14);
  --transition:   .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ── */
.container { width: min(1200px, 92%); margin-inline: auto; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--primary);
  margin-bottom: .4rem;
}
.section-title span { color: var(--accent); }
.section-sub { color: var(--text-muted); font-size: .95rem; margin-bottom: 3rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: inherit;
}
.btn-primary  { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-light); }
.btn-outline  { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: var(--white); }
.btn-white    { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--off-white); }

/* ══════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo img { height: 56px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text strong { font-size: 1.1rem; font-weight: 800; color: var(--white); }
.nav-logo-text span   { font-size: .7rem; font-weight: 500; color: rgba(255,255,255,.55); letter-spacing: 1.5px; text-transform: uppercase; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: .1rem; }
.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: .5rem .7rem;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { left: .7rem; right: .7rem; }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--primary);
  padding: 1.25rem 1.5rem 2rem;
  flex-direction: column;
  gap: .2rem;
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
  z-index: 999;
  border-top: 2px solid var(--accent);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,.07); color: var(--white); }
.mobile-menu .btn { margin-top: .75rem; justify-content: center; }

/* ══════════════════════════════════════════
   HERO — SLIDER
══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slider slike */
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,5,5,.90) 0%,
    rgba(10,5,5,.65) 55%,
    rgba(180,20,25,.12) 100%
  );
  z-index: 1;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 3;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); }
.slider-arrow.prev { left: 2rem; }
.slider-arrow.next { right: 2rem; }
.slider-arrow svg { width: 18px; height: 18px; }

/* Hero sadržaj */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: var(--nav-h);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,26,34,.2);
  border: 1px solid rgba(201,26,34,.5);
  color: #ff8589;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}
.hero-title span { color: var(--accent); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-num { font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: .72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: .25rem; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.35);
  font-size: .68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 3;
}
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ══════════════════════════════════════════
   SEKCIJE
══════════════════════════════════════════ */
section { padding: 6rem 0; }

/* ══════════════════════════════════════════
   O NAMA
══════════════════════════════════════════ */
#about { background: var(--white); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.8; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.feature-icon { font-size: 1.4rem; flex-shrink: 0; }
.feature-item strong { display: block; font-size: .85rem; font-weight: 700; color: var(--primary); }
.feature-item span { font-size: .8rem; color: var(--text-muted); }

/* ══════════════════════════════════════════
   DEBL + USPJESI
══════════════════════════════════════════ */
#achievements {
  background: var(--off-white);
  padding: 5rem 0;
}

.debl-uspjesi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* DEBL card */
.debl-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}
.debl-logo-wrap {
  margin-bottom: 1.5rem;
}
.debl-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}
.debl-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: .85rem;
}
.debl-card p:last-of-type { margin-bottom: 1.5rem; }

.debl-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.debl-fact { text-align: center; }
.debl-fact strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .25rem;
}
.debl-fact span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Uspjesi card */
.uspjesi-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}
.uspjesi-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.medal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem .75rem;
}
.medal-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .5rem;
  border-radius: 5px;
  transition: background var(--transition);
}
.medal-list li:hover { background: var(--off-white); }
.medal-list li span:last-child { color: var(--text); }
.medal-gold   { border-left: 3px solid #F5C842; }
.medal-silver { border-left: 3px solid #A8A9AD; }
.medal-bronze { border-left: 3px solid #CD7F32; }
.medal-icon   { font-size: 1rem; flex-shrink: 0; }

@media (max-width: 860px) {
  .debl-uspjesi-grid { grid-template-columns: 1fr; }
  .debl-facts { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════
   ŠKOLA ROLANJA — CTA
══════════════════════════════════════════ */
#camp { padding: 0; overflow: hidden; }

.camp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.camp-image {
  overflow: hidden;
  position: relative;
}
.camp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s ease;
}
.camp-image:hover img { transform: scale(1.03); }

.camp-cta {
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.camp-cta::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 280px; height: 280px;
  background: var(--accent);
  opacity: .08;
  border-radius: 50%;
}

.camp-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.camp-cta h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: rgba(255,255,255,.7);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.camp-cta h2 strong {
  color: var(--white);
  font-weight: 900;
  display: block;
}
.camp-cta > p {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 34ch;
}

.camp-phones {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.camp-phone {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.5px;
  transition: color var(--transition);
}
.camp-phone svg { color: var(--accent); flex-shrink: 0; }
.camp-phone:hover { color: var(--accent); }

.camp-btn { align-self: flex-start; }

@media (max-width: 860px) {
  .camp-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .camp-image { max-height: 70vw; }
  .camp-cta { padding: 3rem 1.75rem; }
  .camp-phone { font-size: 1.35rem; }
}

/* ══════════════════════════════════════════
   GALERIJA
══════════════════════════════════════════ */
#gallery { background: var(--off-white); }
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: .75rem;
  border-radius: 12px;
  overflow: hidden;
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,5,5,.75), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { width: 40px; height: 40px; color: var(--white); }

/* ══════════════════════════════════════════
   NOVOSTI
══════════════════════════════════════════ */
#news { background: var(--white); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-card-img { aspect-ratio: 16/9; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 1.5rem; }
.news-tag {
  display: inline-block;
  background: rgba(201,26,34,.1);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.news-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.4; color: var(--primary); }
.news-card-body p { font-size: .875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.news-card-footer a { color: var(--accent); font-weight: 600; }
.news-card-footer a:hover { color: var(--accent-light); }

/* ══════════════════════════════════════════
   KONTAKT
══════════════════════════════════════════ */
#contact { background: var(--primary); }
#contact .section-title { color: var(--white); }
#contact .section-sub { color: rgba(255,255,255,.45); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info { color: var(--white); }
.contact-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(201,26,34,.12);
  border: 1px solid rgba(201,26,34,.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .8px; margin-bottom: .15rem; }
.contact-item-text span { font-size: .9rem; color: var(--white); }
.contact-social { display: flex; gap: .75rem; margin-top: 2rem; }
.social-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .8px; }
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  color: var(--white);
  font-family: inherit;
  font-size: .9rem;
  transition: var(--transition);
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--accent); background: rgba(201,26,34,.07); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.22); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#footer { background: #0a0a0a; color: rgba(255,255,255,.55); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand img { height: 72px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,.45);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-col h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-col ul a::before { content: '›'; color: var(--accent); font-weight: 700; font-size: 1.1rem; }
.footer-col ul a:hover { color: var(--white); padding-left: .25rem; }
.footer-contact-item { display: flex; gap: .6rem; margin-bottom: .75rem; font-size: .875rem; }
.footer-contact-item span:first-child { color: var(--accent); flex-shrink: 0; }
.footer-contact-item a {
  color: rgba(255,255,255,.45);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.footer-contact-item a:hover { color: var(--white); padding-left: .25rem; }
.footer-bottom {
  padding: 1.5rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom p { font-size: .8rem; text-align: center; }
.footer-accent-line {
  height: 3px;
  background: var(--accent);
}

/* ── Partneri i sponzori sekcija (bijela, iznad footera) ── */
#partners {
  background: #f2f3f5;
  padding: 4rem 0 3.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.partners-logos img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition), filter var(--transition);
  filter: grayscale(20%);
}
.partners-logos img:hover {
  transform: scale(1.08);
  filter: grayscale(0%);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  section { padding: 4rem 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-layout { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 160px); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-grid .gallery-item:nth-child(n+5) { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .partners-logos img { height: 52px; }
  .partners-logos { gap: 1.5rem; }
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.5rem; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .slider-arrow { display: none; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
