:root{ 
  --mx: 1200px;
  --primary: #4CAF50;
  --primary-dark: #388E3C;
  --primary-light: #81C784;
  --secondary: #2196F3;
  --secondary-dark: #1976D2;
  --accent: #FF9800;
  --accent-dark: #F57C00;
  --text-dark: #212121;
  --text-medium: #757575;
  --text-light: #BDBDBD;
  --bg-light: #F5F5F5;
  --bg-white: #FFFFFF;
  --border: #E0E0E0;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
}

*{ 
  box-sizing: border-box;
}

body{ 
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6; 
  margin: 0;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container{ 
  max-width: var(--mx); 
  margin: 0 auto; 
  padding: 0 2rem;
}

/* Header Styles */
header.container{ 
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.brand{ 
  font-weight: 700; 
  text-decoration: none; 
  color: var(--primary);
  font-size: 1.5rem;
  white-space: nowrap;
  letter-spacing: -0.5px;
}

nav ul{ 
  display: flex; 
  gap: 0.5rem; 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  align-items: center;
  flex-wrap: wrap;
}

nav a{ 
  text-decoration: none; 
  color: var(--text-dark);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

nav a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero h1 {
  font-size: 3rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero .intro {
  font-size: 1.3rem;
  margin: 0 0 2rem 0;
  color: rgba(255,255,255,0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: white;
  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-success {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  border: none;
  font-weight: 600;
}

.btn-success:hover {
  background: linear-gradient(135deg, #45a049, #3d8b40);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Service Cards */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  color: var(--primary);
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
}

.service-card p {
  color: var(--text-medium);
  margin: 0;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.badge .icon {
  font-size: 1.5rem;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.pricing-card.featured::before {
  content: '⭐ Najpopularniejsze';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-card h3 {
  margin: 0 0 0.5rem 0;
  color: var(--primary);
  font-size: 1.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1rem 0;
}

.price-unit {
  font-size: 1rem;
  color: var(--text-medium);
  font-weight: normal;
}

.features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.features li {
  padding: 0.5rem 0;
  color: var(--text-medium);
  display: flex;
  align-items: start;
  gap: 0.5rem;
}

.features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
  flex-shrink: 0;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem auto;
  box-shadow: var(--shadow-md);
}

.step h4 {
  margin: 0 0 0.5rem 0;
  color: var(--text-dark);
}

.step p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin: 0;
}

/* Main Content */
main {
  min-height: 60vh;
  padding: 2rem 0;
}

main h1{ 
  margin-top: 0;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--text-dark);
  font-weight: 700;
}

main h2 {
  margin-top: 2.5rem;
  font-size: 2rem;
  line-height: 1.3;
  color: var(--text-dark);
  font-weight: 700;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 0.5rem;
  display: inline-block;
}

main h3 {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
}

.intro{ 
  color: var(--text-medium);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Footer */
.foot{ 
  background: var(--text-dark);
  color: white;
  margin-top: 4rem;
  padding: 3rem 0 1rem 0;
  border-top: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary-light);
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  line-height: 1.8;
  display: block;
  margin: 0.3rem 0;
}

.footer-section a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.post .meta{ 
  color: var(--text-medium);
  font-size: 0.9rem; 
  margin-top: -0.5rem;
}

.content img{ 
  max-width: 100%; 
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 1.5rem 0;
}

/* Typography */
p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  line-height: 1.8;
}

li {
  margin-bottom: 0.5rem;
}

blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-left: none;
  border-radius: var(--radius-lg);
  color: white;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

blockquote p {
  margin: 0;
}

blockquote a {
  color: white;
  font-weight: 600;
  text-decoration: underline;
}

/* Links */
main a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

main a:hover {
  border-bottom-color: var(--primary);
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 0.3rem;
  align-items: center;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--border);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  background: var(--bg-light);
  color: var(--text-medium);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.language-switcher a:hover {
  background: white;
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.language-switcher a.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.language-switcher .flag {
  font-size: 1.2rem;
  line-height: 1;
}

/* Alert/Info Boxes */
.info-box {
  background: var(--bg-light);
  border-left: 4px solid var(--secondary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: var(--radius);
}

.warning-box {
  background: #FFF3E0;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: var(--radius);
}

.success-box {
  background: #E8F5E9;
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: var(--radius);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .container {
    padding: 0 1rem;
  }

  header.container {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .brand {
    font-size: 1.3rem;
    text-align: center;
    padding: 0.5rem 0;
  }

  nav {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  nav > ul > li:not(.language-switcher) {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  nav > ul > li:not(.language-switcher) a {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 1rem;
  }

  .language-switcher {
    width: 100%;
    justify-content: center;
    margin: 0;
    padding: 0.75rem 0 0 0;
    border-left: none;
    border-top: 2px solid var(--border);
  }

  .language-switcher a {
    flex: 1;
    justify-content: center;
    padding: 0.6rem 0.5rem;
    font-size: 0.85rem;
  }

  .hero {
    padding: 2.5rem 1rem;
    margin-bottom: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .intro {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  main h1 {
    font-size: 1.75rem;
  }

  main h2 {
    font-size: 1.5rem;
  }

  main h3 {
    font-size: 1.2rem;
  }

  .intro {
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero .intro {
    font-size: 1rem;
  }

  main h1 {
    font-size: 1.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.pricing-card,
.step {
  animation: fadeInUp 0.6s ease-out;
}

/* Print styles */
@media print {
  header, .language-switcher, .hero-cta, .social-links {
    display: none;
  }
}

/* Blog Post Preview Styles */
.blog-post-preview {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.blog-post-preview:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-post-preview h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.blog-post-preview h3 a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-preview h3 a:hover {
  color: var(--primary);
}

.blog-post-preview time {
  display: block;
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-post-preview p {
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-post-preview .read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-block;
}

.blog-post-preview .read-more:hover {
  color: var(--primary-dark);
}

/* Repair Form Styles */
.repair-form-container {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}

.repair-form {
  max-width: 600px;
  margin: 0 auto;
}

/* Anti-spam honeypot field - hidden from users */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.checkbox-group {
  margin: 1.5rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-weight: normal;
  gap: 0.75rem;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.checkbox-label span {
  flex: 1;
}

.field-hint {
  margin: 0.5rem 0 0 2rem;
  font-size: 0.875rem;
  color: var(--text-medium);
  font-style: italic;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.form-actions .btn {
  flex: 1;
  min-width: 150px;
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 500;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-message.confirmation {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border: 2px solid #2196F3;
  padding: 2rem;
}

.confirmation-content {
  text-align: center;
}

.confirmation-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.confirmation-summary {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1rem 0;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.confirmation-summary strong {
  color: var(--primary);
}

.confirmation-question {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0;
  color: #1976D2;
}

.confirmation-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.confirmation-actions .btn {
  min-width: 200px;
}

.confirmation-actions .btn-large {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.confirmation-info {
  color: #1976D2;
  margin-top: 1rem;
}

/* Price Display Styles */
#priceDisplay {
  background: var(--bg-white);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.price-label {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.price-value {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
}

.price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 0.5rem 0;
  margin-top: 0.5rem;
  border-top: 2px solid var(--border);
}

.price-total .price-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.price-total .price-value {
  font-size: 1.5rem;
  color: var(--primary);
}

/* Mobile Menu Styles */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  header.container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 100;
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 4rem 1rem 2rem 1rem;
    gap: 0;
  }
  
  .main-nav li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  
  .main-nav a {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: left;
    border-radius: 0;
  }
  
  .language-switcher {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-bottom: none;
    margin-top: 1rem;
  }
  
  .language-switcher a {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }
  
  .repair-form-container {
    padding: 1.5rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
  }
}




