/* =========================================
   AUTO SERWIS WULKANIZACJA - Artur Szamiel
   Style strony - łatwe do edycji
   ========================================= */

/* ===== RESET I PODSTAWY ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #09090b;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== KONTENERY ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== KOLORY POMOCNICZE =====
   Aby zmienić główny kolor strony, edytuj poniższe wartości:
   --primary-red: główny czerwony
*/
:root {
  --primary-red: #dc2626;
  --primary-red-hover: #b91c1c;
  --bg-dark: #09090b;
  --bg-card: #18181b;
  --bg-light: #27272a;
  --text-light: #ffffff;
  --text-muted: #a1a1aa;
  --border: #27272a;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(9, 9, 11, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .name {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.logo-text .surname {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 2px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-desktop a {
  color: #d4d4d8;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-desktop a:hover {
  color: var(--primary-red);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: 8px;
  margin-top: 8px;
  margin-bottom: 16px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: #d4d4d8;
  padding: 8px 0;
  font-weight: 500;
}

.nav-mobile a:hover {
  color: var(--primary-red);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #09090b, rgba(9, 9, 11, 0.95), rgba(9, 9, 11, 0.8));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 128px 0;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  color: var(--primary-red);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(220, 38, 38, 0.1);
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 .red {
  color: var(--primary-red);
}

.hero p {
  font-size: 1.25rem;
  color: #d4d4d8;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero p .white {
  color: #fff;
  font-weight: 600;
}

.hero-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.hero-info-card {
  background: rgba(24, 24, 27, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-red);
}

.hero-info-card .label {
  color: var(--text-muted);
  font-size: 13px;
}

.hero-info-card .value {
  color: #fff;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--primary-red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
  background: var(--primary-red-hover);
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary-red);
  background: rgba(220, 38, 38, 0.1);
}

/* ===== SEKCJE OGÓLNE ===== */
.section {
  padding: 96px 0;
}

.section.bg-card {
  background: var(--bg-card);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-header h2 .red {
  color: var(--primary-red);
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 768px;
  margin: 0 auto;
}

/* ===== USŁUGI ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  border-color: rgba(220, 38, 38, 0.5);
  transform: scale(1.05);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary-red);
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--primary-red);
  color: #fff;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: var(--primary-red);
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.services-cta {
  margin-top: 64px;
  text-align: center;
}

.services-cta-box {
  display: inline-block;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.services-cta-box .small {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.services-cta-box .main-text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.services-cta-box .phone {
  color: var(--primary-red);
  font-size: 1.5rem;
  font-weight: 700;
}

.services-cta-box .phone:hover {
  color: #ef4444;
}

/* ===== AKTUALNOŚCI ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
}

.news-card.featured {
  grid-column: span 2;
  border-color: rgba(202, 138, 4, 0.3);
}

.news-card.linked {
  cursor: pointer;
}

.news-card:hover {
  border-color: rgba(220, 38, 38, 0.5);
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.news-category {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid;
}

.news-category.wulkanizacja {
  background: rgba(220, 38, 38, 0.1);
  color: var(--primary-red);
  border-color: rgba(220, 38, 38, 0.2);
}

.news-category.promocja {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  border-color: rgba(22, 163, 74, 0.2);
}

.news-category.informacja {
  background: rgba(82, 82, 91, 0.1);
  color: #a1a1aa;
  border-color: rgba(82, 82, 91, 0.2);
}

.news-category.ofertowe {
  background: rgba(202, 138, 4, 0.1);
  color: #eab308;
  border-color: rgba(202, 138, 4, 0.2);
}

.news-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #71717a;
  font-size: 14px;
}

.news-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.news-card.linked:hover h3 {
  color: var(--primary-red);
}

.news-card p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.news-link-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #eab308;
  font-weight: 600;
  transition: gap 0.3s;
}

.news-card.linked:hover .news-link-text {
  gap: 12px;
}

/* ===== O NAS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-red);
}

.about-feature h3 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.about-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.about-info-box p {
  color: #d4d4d8;
  margin-bottom: 16px;
}

.about-info-box p:last-child {
  margin-bottom: 0;
}

.about-info-box strong {
  color: #fff;
  font-weight: 600;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.about-image::before,
.about-image::after {
  content: '';
  position: absolute;
  width: 288px;
  height: 288px;
  border-radius: 50%;
  filter: blur(48px);
  z-index: 0;
}

.about-image::before {
  top: -24px;
  right: -24px;
  background: rgba(220, 38, 38, 0.2);
}

.about-image::after {
  bottom: -24px;
  left: -24px;
  background: rgba(220, 38, 38, 0.1);
}

/* ===== KONTAKT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.3s;
}

.contact-card:hover {
  border-color: rgba(220, 38, 38, 0.5);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-red);
}

.contact-card h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  color: var(--text-muted);
}

.contact-card a {
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--primary-red);
}

.contact-card .strong-text {
  color: #fff;
  font-weight: 600;
}

.contact-card .red-text {
  color: var(--primary-red);
  font-weight: 600;
}

.contact-card .small {
  color: #71717a;
  font-size: 14px;
  margin-top: 4px;
}

.contact-map {
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-cta {
  background: linear-gradient(to right, var(--primary-red), #b91c1c);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
}

.contact-cta h3 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-cta p {
  color: #fee2e2;
  font-size: 1.125rem;
  margin-bottom: 24px;
  max-width: 512px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta a {
  display: inline-block;
  background: #fff;
  color: var(--primary-red);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.contact-cta a:hover {
  background: #f4f4f5;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.footer-inner {
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.footer-col p {
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a,
.footer-col ul li {
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--primary-red);
  cursor: pointer;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item .icon {
  color: var(--primary-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: var(--primary-red);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom .links {
  display: flex;
  gap: 24px;
}

.footer-bottom .links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-bottom .links a:hover {
  color: var(--primary-red);
}

/* ===== STRONA PROJEKTU FER / ZAPYTANIE OFERTOWE ===== */
.page-hero {
  padding: 128px 0 64px 0;
  background: linear-gradient(to bottom, var(--bg-card), var(--bg-dark));
}

.page-hero-content {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 16px 0 24px 0;
  line-height: 1.2;
}

.page-hero h1 .blue {
  color: #3b82f6;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  margin-bottom: 32px;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  transition: color 0.3s;
}

.back-button:hover {
  color: var(--primary-red);
}

.page-content {
  max-width: 1024px;
  margin: 0 auto;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
}

.info-card.blue {
  border-color: rgba(59, 130, 246, 0.2);
}

.info-card.financial {
  background: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
  border-color: rgba(59, 130, 246, 0.3);
}

.info-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.info-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-icon.red {
  background: rgba(220, 38, 38, 0.1);
  color: var(--primary-red);
}

.info-card-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.info-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.info-card p {
  color: #d4d4d8;
  font-size: 1.125rem;
  line-height: 1.7;
}

.info-card ul {
  list-style: none;
  margin-top: 8px;
}

.info-card ul li {
  padding: 8px 0;
  color: #d4d4d8;
  display: flex;
  align-items: flex-start;
}

.info-card ul li::before {
  content: '•';
  color: var(--primary-red);
  margin-right: 8px;
  font-size: 1.25rem;
  line-height: 1;
}

.info-subcard {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-top: 16px;
}

.info-subcard h3 {
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.stat-box {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.stat-box.blue {
  background: rgba(9, 9, 11, 0.5);
  border-color: rgba(59, 130, 246, 0.2);
}

.stat-box .label {
  color: #71717a;
  font-size: 14px;
  margin-bottom: 8px;
}

.stat-box .value {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.stat-box .value.blue {
  color: #3b82f6;
}

.program-link {
  text-align: center;
  padding-top: 16px;
}

.program-link p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.program-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 0.3s;
}

.program-link a:hover {
  color: #60a5fa;
}

.fer-logo-bottom {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  justify-content: center;
  margin: 32px 0;
}

.fer-logo-bottom img {
  max-width: 100%;
  height: auto;
  max-height: 150px;
}

.fer-caption {
  text-align: center;
  color: #71717a;
  font-size: 14px;
  font-style: italic;
  margin-top: 24px;
}

/* ===== DOKUMENTY DO POBRANIA ===== */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.document-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.3s;
}

.document-card:hover {
  border-color: rgba(220, 38, 38, 0.5);
}

.document-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.document-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.document-icon.red {
  background: rgba(220, 38, 38, 0.1);
  color: var(--primary-red);
}

.document-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.document-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.document-info p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.document-info .format {
  color: #71717a;
  font-size: 12px;
}

.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-download.red {
  background: var(--primary-red);
}

.btn-download.red:hover {
  background: var(--primary-red-hover);
}

.btn-download.blue {
  background: #2563eb;
}

.btn-download.blue:hover {
  background: #1d4ed8;
}

.btn-download.green {
  background: #16a34a;
}

.btn-download.green:hover {
  background: #15803d;
}

.document-icon.green {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.info-box-yellow {
  background: rgba(202, 138, 4, 0.05);
  border: 1px solid rgba(202, 138, 4, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 48px;
}

.info-box-yellow h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.info-box-yellow ul {
  list-style: none;
}

.info-box-yellow ul li {
  color: #d4d4d8;
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
}

.info-box-yellow ul li::before {
  content: '•';
  color: #eab308;
  margin-right: 8px;
  font-size: 1.25rem;
  line-height: 1;
}

.contact-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-mini-grid > div .label {
  color: #71717a;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-mini-grid > div .value {
  color: #fff;
  font-weight: 600;
}

.contact-mini-grid > div a {
  color: var(--primary-red);
  font-weight: 600;
}

.contact-mini-grid > div a:hover {
  color: #ef4444;
}

.page-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(202, 138, 4, 0.2);
  background: rgba(202, 138, 4, 0.1);
  color: #eab308;
  margin-bottom: 24px;
}

.page-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #eab308;
  font-weight: 600;
  margin-bottom: 16px;
}

.text-left {
  text-align: left;
}

.page-content h1 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.page-content > p {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.section-h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
}

/* ===== RESPONSIVE - TELEFONY I TABLETY ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .documents-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.125rem;
  }
  
  .hero-info {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 64px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .services-grid,
  .news-grid,
  .documents-grid,
  .contact-grid,
  .about-grid,
  .about-features,
  .stats-grid,
  .contact-mini-grid {
    grid-template-columns: 1fr;
  }
  
  .news-card.featured {
    grid-column: span 1;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-cta h3 {
    font-size: 1.75rem;
  }
  
  .page-content h1,
  .page-hero h1 {
    font-size: 2rem;
  }
}
