﻿* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      background: #f5f7fc;
      color: #1a2a3f;
      line-height: 1.5;
      scroll-behavior: smooth;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* TOP BAR - bez Font Awesome, używamy emoji */
    .top-bar {
      background: #0a2a1a;
      color: #ffffff;
      padding: 10px 0;
      font-size: 0.85rem;
    }
    .top-bar .container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .top-bar a {
      color: #ffdd99;
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .top-bar a:hover {
      color: #ffffff;
    }
    .top-bar .icon {
      display: inline-block;
      width: 20px;
      margin-right: 6px;
      text-align: center;
    }

    /* NAVBAR */
    .navbar {
      background: rgba(26, 47, 42, 0.98);
      backdrop-filter: blur(10px);
      padding: 18px 0;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid #2a4a3a;
    }
    .navbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    .logo a {
      display: inline-block;
      transition: opacity 0.2s ease;
    }
    .logo a:hover {
      opacity: 0.85;
    }
    .logo img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
      flex-wrap: wrap;
    }
    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: #ffffff;
      transition: 0.2s;
    }
    .nav-links a:hover {
      color: #d4af37;
      text-decoration: underline;
    }
    
    a:focus, button:focus, .machine-card:focus {
      outline: 2px solid #d4af37;
      outline-offset: 2px;
    }

    section, div[id] {
      scroll-margin-top: 90px;
    }
    [id] {
      scroll-margin-top: 90px;
    }

    /* HERO */
    .hero-single {
      position: relative;
      width: 100%;
      height: 85vh;
      min-height: 550px;
      max-height: 700px;
      overflow: hidden;
      background: #0a2b3e;
    }
    .hero-single img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
    }
    .hero-single::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
      z-index: 1;
      pointer-events: none;
    }
    .hero-overlay {
      position: absolute;
      bottom: 20%;
      left: 0;
      right: 0;
      text-align: center;
      color: white;
      z-index: 5;
      padding: 2rem;
    }
    .hero-overlay h1 {
      font-size: 3.2rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      max-width: 900px;
      margin: 0 auto;
      text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    .hero-overlay p {
      font-size: 1.2rem;
      margin-top: 1rem;
      opacity: 0.95;
    }
    .btn-hero {
      display: inline-block;
      margin-top: 28px;
      padding: 14px 36px;
      background: #d4af37;
      color: #1a2a3f;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    .btn-hero:hover {
      background: transparent;
      border-color: white;
      color: white;
      transform: translateY(-2px);
    }

    .section {
      padding: 60px 0;
    }
    .section-gray {
      background: #f8fafc;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
      border-left: 5px solid #d4af37;
      padding-left: 20px;
    }

    .offers-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px auto;
    }
    .offers-description p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #3a4a55;
    }

    .machines-grid-new {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 20px;
    }

    .machine-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      text-decoration: none;
      color: #1a2a3f;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      display: block;
      position: relative;
    }

    .machine-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    }
    
    /* CTA jako pseudo-element - czysty HTML bez dodatkowego tekstu */
    .machine-card::after {
      content: "Zobacz ofertę →";
      display: block;
      text-align: center;
      padding: 12px 20px 20px 20px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #8a6b00;
      transition: 0.2s;
      background: white;
      border-top: 1px solid #f0f0f0;
    }
    
    .machine-card:hover::after {
      color: #1e5a2e;
      transform: translateX(5px);
    }

    .machine-card-image {
      width: 100%;
      height: 200px;
      background: #f0f4f0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .machine-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .machine-card-content {
      padding: 20px 20px 0 20px;
      text-align: center;
    }

    .machine-card-content h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0;
      color: #1e5a2e;
    }

    .def-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      margin: 30px 0;
    }
    .def-card {
      background: white;
      border-radius: 24px;
      padding: 24px;
      border: 1px solid #eef2f8;
    }
    .def-card h3 {
      font-size: 1.3rem;
      margin-bottom: 12px;
      color: #1e5a2e;
    }
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 30px;
    }
    .faq-item-simple {
      background: white;
      border-radius: 20px;
      padding: 20px;
      border-left: 4px solid #d4af37;
    }
    .faq-item-simple h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: #1e5a2e;
    }

    .contact-full {
      background: #0a2a1a;
      color: #e0e8dd;
      padding: 60px 0;
      margin-top: 40px;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
    }
    .contact-info .icon {
      display: inline-block;
      width: 32px;
      color: #d4af37;
      margin-right: 10px;
    }
    .contact-info a {
      color: #d4af37;
      text-decoration: underline;
    }
    .contact-info a:hover {
      color: #ffffff;
    }
    .contact-centered {
      text-align: center;
    }
    .contact-centered h3 {
      margin-bottom: 20px;
      font-size: 1.6rem;
    }
    .contact-centered p {
      margin: 15px 0;
    }
    .contact-info-box {
      background: rgba(255,255,255,0.08);
      padding: 30px;
      border-radius: 28px;
      text-align: center;
    }

    footer {
      background: #071a0f;
      color: #b9cfc2;
      padding: 40px 0 20px;
      font-size: 0.85rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-links a {
      display: block;
      color: #d4af37;
      text-decoration: underline;
      margin-bottom: 8px;
    }
    .footer-links a:hover {
      color: #ffffff;
    }
    .footer-bottom {
      text-align: center;
      border-top: 1px solid #2a4a2a;
      padding-top: 20px;
      margin-top: 20px;
    }
    .footer-bottom a {
      color: #d4af37;
      text-decoration: underline;
    }
    .google-maps {
      width: 100%;
      height: 280px;
      border: 0;
      border-radius: 24px;
      margin: 30px 0 20px;
    }

    .lang-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
      gap: 12px;
      list-style: none;
      margin-top: 24px;
    }
    .lang-item {
      display: flex;
      align-items: center;
      gap: 8px;
      background: white;
      padding: 6px 12px;
      border-radius: 40px;
      text-decoration: none;
      color: #1f2f2a;
      border: 1px solid #e0e7ed;
      font-size: 0.85rem;
      transition: 0.2s;
    }
    .lang-item:hover {
      background: #d4af37;
      color: white;
    }
    .lang-item img {
      width: 20px;
      height: auto;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border-width: 0;
    }

    @media (max-width: 768px) {
      .navbar .container { flex-direction: column; }
      .nav-links { justify-content: center; }
      .section-title { font-size: 1.6rem; }
      .hero-single {
        height: 70vh;
        min-height: 450px;
      }
      .hero-single img {
        object-position: center 45%;
      }
      .hero-overlay h1 {
        font-size: 2rem;
      }
      .hero-overlay p {
        font-size: 1rem;
      }
      .btn-hero {
        padding: 10px 28px;
        font-size: 0.9rem;
      }
      .machines-grid-new {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
      }
      .machine-card-image {
        height: 160px;
      }
      .logo img {
        max-width: 180px;
      }
      section, div[id] {
        scroll-margin-top: 120px;
      }
    }
    @media (max-width: 480px) {
      .hero-single {
        height: 60vh;
        min-height: 400px;
      }
      .hero-single img {
        object-position: center 50%;
      }
      .hero-overlay {
        bottom: 15%;
        padding: 1rem;
      }
      .hero-overlay h1 {
        font-size: 1.5rem;
      }
      section, div[id] {
        scroll-margin-top: 140px;
      }
    }