/* ============================================================
   CyberEtyka - Main Stylesheet
   Fonts: IBM Plex Sans Condensed (nav/headings), PT Serif (body h), Montserrat (footer)
   Colors: #9E9E9E (accent), #030303 (button), #f1f1f1 (grey bg)
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'PT Serif', Georgia, serif;
  color: #333;
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
}

a { color: #9E9E9E; text-decoration: none; transition: color 0.2s; }
a:hover { color: #030303; }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ---- HEADER ---- */
#header-wrapper { position: relative; }

#header { background: #fff; position: relative; z-index: 100; }

.main-header-wrapper {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s;
}
.main-header-wrapper.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.1); }

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 12px;
}

#logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #030303;
  letter-spacing: 1px;
  text-transform: lowercase;
  white-space: nowrap;
}
.logo-accent { color: #9E9E9E; }

#menu-wrapper { display: flex; align-items: center; min-width: 0; }

.dt-menu-toggle {
  display: none;
  background: #030303;
  color: #fff;
  border: none;
  padding: 8px 14px;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  align-items: center;
  gap: 6px;
  text-transform: lowercase;
  flex-shrink: 0;
}

#main-menu ul.menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
}

#main-menu ul.menu li a {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 0.85rem;
  color: #444;
  text-transform: lowercase;
  padding: 8px 12px;
  display: block;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.2s;
}
#main-menu ul.menu li a::before,
#main-menu ul.menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #9E9E9E;
  transition: width 0.25s, left 0.25s;
}
#main-menu ul.menu li a:hover::before,
#main-menu ul.menu li a:hover::after,
#main-menu ul.menu li.active > a::before,
#main-menu ul.menu li.active > a::after {
  width: 50%;
  left: 0;
}
#main-menu ul.menu li a:hover::after {
  left: 50%;
}
#main-menu ul.menu li a:hover { color: #9E9E9E; }

/* ---- HERO SLIDER ---- */
#slider { position: relative; }

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.slide-content h1 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}
.slide-content p {
  font-family: 'PT Serif', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  opacity: 0.9;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero-btn {
  display: inline-block;
  background: #030303;
  color: #fff;
  padding: 12px 32px;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 0.95rem;
  text-transform: lowercase;
  letter-spacing: 1px;
  border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
}
.hero-btn:hover { background: #9E9E9E; color: #fff; transform: translateY(-2px); }

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  opacity: 0.7;
}
.slide-arrow:hover { background: rgba(255,255,255,0.25); opacity: 1; }
.slide-prev { left: 20px; }
.slide-next { right: 20px; }

/* ---- SECTIONS ---- */
.section-block { padding: 80px 0; }

.section-fullwidth {
  padding: 80px 0;
  width: 100%;
}
.section-grey { background: #f1f1f1; }
.section-light { background: #fbfbfb; }

.services-bg {
  background-image: url('images/hero-slide2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.services-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.services-bg .container { position: relative; z-index: 1; }
.services-bg .section-heading,
.services-bg .usluga-item h3,
.services-bg .usluga-item p { color: #fff; }
.services-bg .separator { background: rgba(255,255,255,0.4); }
.services-bg a.btn-primary { background: #fff; color: #030303; }
.services-bg a.btn-primary:hover { background: #9E9E9E; color: #fff; }

.section-heading {
  font-family: 'PT Serif', serif;
  font-size: 2.2rem;
  text-align: center;
  color: #333;
  margin-bottom: 40px;
  font-weight: 400;
}
.text-heading {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  text-transform: lowercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.separator {
  width: 60px;
  height: 3px;
  background: #9E9E9E;
  margin: 0 auto 50px;
}

/* ---- AKTUALNOŚCI / NEWS ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  background: #f9f9f9;
  border: 1px solid #eee;
  transition: box-shadow 0.3s;
}
.news-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.news-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.news-body { padding: 20px; }
.news-body h4 {
  font-family: 'PT Serif', serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #222;
}
.news-body p { font-size: 0.9rem; color: #666; margin-bottom: 16px; }

.btn-more {
  display: inline-block;
  background: #030303;
  color: #fff;
  padding: 8px 20px;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 0.85rem;
  text-transform: lowercase;
  border-radius: 3px;
  transition: background 0.2s;
}
.btn-more:hover { background: #9E9E9E; color: #fff; }

.btn-primary {
  display: inline-block;
  background: #030303;
  color: #fff;
  padding: 12px 30px;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 0.95rem;
  text-transform: lowercase;
  border-radius: 3px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #9E9E9E; color: #fff; transform: translateY(-2px); }

/* ---- O FUNDACJI ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.col-text p { margin-bottom: 1rem; color: #555; font-size: 0.97rem; }
.col-text a.btn-primary { margin-top: 1rem; }
.col-image img {
  border: 5px solid #ddd;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ---- PROJEKTY ---- */
.project-item {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  align-items: flex-start;
}
.project-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #030303;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  margin-top: 4px;
}
.project-content h3 {
  font-family: 'PT Serif', serif;
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 12px;
}
.project-content p { color: #555; font-size: 0.95rem; margin-bottom: 1rem; }
.project-content a { color: #9E9E9E; font-weight: 600; }
.project-content a:hover { color: #030303; }

.video-thumb {
  position: relative;
  cursor: pointer;
  max-width: 700px;
  margin: 1.5rem 0;
  border: 3px solid #ddd;
  overflow: hidden;
  transition: border-color 0.2s;
}
.video-thumb:hover { border-color: #9E9E9E; }
.video-thumb img { width: 100%; display: block; }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.2s;
}
.video-play i {
  font-size: 4rem;
  color: rgba(255,255,255,0.85);
  transition: transform 0.2s, color 0.2s;
}
.video-thumb:hover .video-play { background: rgba(0,0,0,0.4); }
.video-thumb:hover .video-play i { transform: scale(1.1); color: #fff; }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 700px;
  margin: 1rem 0;
  background: #000;
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ---- WSPÓŁPRACA ---- */
.wspolpraca-content p { margin-bottom: 1.5rem; color: #555; font-size: 0.97rem; }
.wspolpraca-content a { color: #9E9E9E; }
.wspolpraca-content a:hover { color: #030303; }

/* ---- USŁUGI ---- */
.uslugi-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.usluga-item h3 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: lowercase;
}
.usluga-item p { font-size: 0.92rem; }

/* ---- CONTACT (HOME) ---- */
.contact-home-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-group.full { width: 100%; }
.form-icon { color: #9E9E9E; margin-top: 12px; font-size: 1rem; flex-shrink: 0; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: 'PT Serif', serif;
  font-size: 0.9rem;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #9E9E9E; }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.form-check input { margin-top: 4px; flex-shrink: 0; accent-color: #9E9E9E; }
.form-check label { font-size: 0.82rem; color: #666; line-height: 1.5; }
.form-check label a { color: #9E9E9E; }
.form-submit { margin-top: 20px; }
.form-submit button {
  background: #030303;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 0.95rem;
  text-transform: lowercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
}
.form-submit button:hover { background: #9E9E9E; }
#formStatus { margin-top: 10px; font-size: 0.9rem; }
#formStatus p { margin: 0; padding: 8px 0; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail i { color: #9E9E9E; font-size: 1.3rem; margin-top: 3px; flex-shrink: 0; }
.contact-detail strong { display: block; font-family: 'IBM Plex Sans Condensed', sans-serif; font-size: 0.95rem; text-transform: lowercase; margin-bottom: 4px; color: #333; }
.contact-detail p, .contact-detail a { font-size: 0.9rem; color: #666; }
.contact-detail a:hover { color: #9E9E9E; }

/* ---- FOOTER ---- */
#footer { background: #2a2a2a; color: #bbb; }
.footer-widgets { padding: 60px 0; border-bottom: 1px solid #3a3a3a; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 20px;
}
.footer-contact-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #aaa;
}
.footer-contact-info i { color: #9E9E9E; margin-top: 3px; flex-shrink: 0; }
.footer-contact-info a { color: #aaa; }
.footer-contact-info a:hover { color: #9E9E9E; }
.social-links { list-style: none; display: flex; gap: 12px; flex-wrap: wrap; }
.social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: #3a3a3a;
  color: #bbb;
  border-radius: 3px;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.social-links li a:hover { background: #9E9E9E; color: #fff; }

.footer-copyright {
  padding: 24px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: #777;
  text-align: center;
}
.footer-legal {
  font-size: 0.75rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ---- VIDEO MODAL ---- */
.pum-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.pum-overlay.active { display: flex; }
.pum-container {
  position: relative;
  background: #000;
  width: 90%;
  max-width: 800px;
  border-radius: 4px;
  overflow: hidden;
}
.pum-close {
  position: absolute;
  top: 8px; right: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative;
  height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.page-hero-content h1 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: lowercase;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.page-hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 10px;
}

/* ---- ABOUT PAGE ---- */
.about-section { padding: 80px 0; }
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.about-text h2 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 1.8rem;
  text-transform: lowercase;
  color: #333;
  margin-bottom: 20px;
}
.about-text p { color: #555; margin-bottom: 1rem; font-size: 0.97rem; }
.about-img img { width: 100%; height: 400px; object-fit: cover; border: 5px solid #eee; }

.mission-values { background: #f1f1f1; padding: 80px 0; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 40px; }
.value-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-top: 3px solid #9E9E9E;
}
.value-card i { font-size: 2.5rem; color: #9E9E9E; margin-bottom: 16px; }
.value-card h3 { font-family: 'IBM Plex Sans Condensed', sans-serif; font-size: 1.1rem; text-transform: lowercase; color: #333; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: #666; }

.team-section { padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 40px; }
.team-card { text-align: center; }
.team-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid #eee;
}
.team-card h3 { font-family: 'PT Serif', serif; font-size: 1.1rem; color: #333; margin-bottom: 4px; }
.team-card p { font-size: 0.85rem; color: #9E9E9E; text-transform: lowercase; font-family: 'IBM Plex Sans Condensed', sans-serif; }

.history-section { background: #f1f1f1; padding: 80px 0; }
.timeline { max-width: 800px; margin: 40px auto 0; }
.timeline-item { display: flex; gap: 30px; margin-bottom: 40px; }
.timeline-year {
  flex-shrink: 0;
  width: 80px;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #9E9E9E;
  text-align: right;
  padding-top: 2px;
}
.timeline-content { flex: 1; border-left: 2px solid #9E9E9E; padding-left: 30px; }
.timeline-content h4 { font-family: 'PT Serif', serif; font-size: 1rem; color: #333; margin-bottom: 6px; }
.timeline-content p { font-size: 0.9rem; color: #666; }

/* ---- CONTACT PAGE ---- */
.contact-page { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 60px; }
.contact-form-section h2,
.contact-info-section h2 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 1.5rem;
  text-transform: lowercase;
  color: #333;
  margin-bottom: 30px;
}
.contact-info-block { margin-bottom: 30px; }
.contact-info-block h3 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 1rem;
  text-transform: lowercase;
  color: #333;
  margin-bottom: 8px;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}
.contact-info-block p { font-size: 0.9rem; color: #666; margin-bottom: 4px; }
.contact-info-block a { color: #9E9E9E; }
.contact-info-block a:hover { color: #030303; }
.map-embed { margin-top: 40px; border: 3px solid #eee; overflow: hidden; }
.map-embed iframe { width: 100%; height: 300px; display: block; border: none; }

/* ---- SPRAWOZDANIA PAGE ---- */
.sprawozdania-section { padding: 80px 0; }
.sprawozdania-list { margin-top: 40px; }
.sprawozdanie-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid #eee;
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
}
.sprawozdanie-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.sprawozdanie-item i { font-size: 2rem; color: #9E9E9E; flex-shrink: 0; }
.sprawozdanie-info h3 { font-family: 'PT Serif', serif; font-size: 1rem; color: #333; margin-bottom: 4px; }
.sprawozdanie-info p { font-size: 0.85rem; color: #888; }
.sprawozdanie-item .btn-more { margin-left: auto; }

/* ---- AKTUALNOSCI PAGE ---- */
.aktualnosci-section { padding: 80px 0; }
.news-grid-full { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 40px; }

/* ---- PRIVACY PAGE ---- */
.privacy-section { padding: 80px 0; max-width: 900px; margin: 0 auto; }
.privacy-section h2 { font-family: 'IBM Plex Sans Condensed', sans-serif; font-size: 1.3rem; text-transform: lowercase; color: #333; margin: 30px 0 12px; }
.privacy-section p { color: #555; font-size: 0.95rem; margin-bottom: 1rem; }
.privacy-section ul { color: #555; font-size: 0.95rem; margin-left: 24px; margin-bottom: 1rem; }
.privacy-section ul li { margin-bottom: 6px; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: #f9f9f9;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.breadcrumb-inner {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-size: 0.85rem;
  color: #888;
  text-transform: lowercase;
}
.breadcrumb-inner a { color: #9E9E9E; }
.breadcrumb-inner a:hover { color: #030303; }
.breadcrumb-inner span { margin: 0 6px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2,1fr); }
  .uslugi-content { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .main-header { height: 68px; }
  .logo-text { font-size: 1.3rem; }

  .dt-menu-toggle { display: flex; }

  #main-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #9E9E9E;
    border-bottom: 1px solid #eee;
    z-index: 998;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  #main-menu.open { display: block; }
  #main-menu ul.menu { flex-direction: column; }
  #main-menu ul.menu li a { padding: 12px 20px; border-bottom: 1px solid #f0f0f0; font-size: 0.95rem; }

  .hero-slider { height: 70vh; min-height: 400px; }
  .slide-content h1 { font-size: clamp(1.8rem, 8vw, 3rem); }

  .news-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .col-image { order: -1; }
  .col-image img { height: 260px; }

  .project-item { flex-direction: column; gap: 16px; }

  .contact-home-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-cols { grid-template-columns: 1fr; gap: 30px; }

  .about-intro { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .about-img img { height: 260px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .news-grid-full { grid-template-columns: 1fr; }

  .page-hero { height: 260px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-block, .section-fullwidth { padding: 50px 0; }
  .team-grid { grid-template-columns: 1fr; }
  .slide-content p { font-size: 0.95rem; }
  .hero-btn { padding: 10px 22px; font-size: 0.88rem; }
  .values-grid { grid-template-columns: 1fr; }
}
