/* =========================================================
   RESET I ZMIENNE
   ========================================================= */

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --green-dark: #163b2d;
    --green: #2f6b4f;
    --green-light: #e8f3ec;
    --green-pale: #f4f9f6;
  
    --white: #ffffff;
    --text: #1e2b24;
    --muted: #607066;
  }
  
  
  /* =========================================================
     USTAWIENIA OGÓLNE
     ========================================================= */
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
  }
  
  body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
  }
  
  
  /* =========================================================
     HEADER / MENU
     ========================================================= */
  
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #dfece4;
    box-shadow: 0 4px 20px rgba(22, 59, 45, 0.06);
  }
  
  .navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 17px 30px;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }
  
  .logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
  
    color: var(--green-dark);
    text-decoration: none;
  }
  
  .menu {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  
  .menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
  }
  
  .menu a:hover {
    color: var(--green);
  }
  
  .menu .shop-button {
    padding: 10px 20px;
  
    border-radius: 999px;
    color: var(--white);
    background: var(--green);
  }
  
  .menu .shop-button:hover {
    color: var(--white);
    background: var(--green-dark);
  }
  
  
  /* =========================================================
     HERO
     ========================================================= */
  
  .hero {
    min-height: 100vh;
    padding: 150px 30px 90px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    text-align: center;
  
    background:
      radial-gradient(
        circle at 20% 20%,
        rgba(47, 107, 79, 0.13),
        transparent 32%
      ),
      linear-gradient(
        135deg,
        #f7fbf8,
        #e8f3ec
      );
  }
  
  .hero-content {
    width: 100%;
    max-width: 900px;
  }
  
  .eyebrow,
  .section-label {
    display: inline-block;
    margin-bottom: 16px;
  
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
  
    color: var(--green);
  }
  
  .hero h1 {
    margin: 0 0 24px;
  
    font-size: clamp(45px, 7vw, 78px);
    line-height: 1.05;
  
    color: var(--green-dark);
  }
  
  .hero p {
    max-width: 720px;
    margin: 0 auto 32px;
  
    font-size: 19px;
    color: var(--muted);
  }
  
  .hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }
  
  .primary-button,
  .secondary-button {
    display: inline-block;
    padding: 14px 25px;
  
    border-radius: 999px;
  
    text-decoration: none;
    font-weight: 800;
  }
  
  .primary-button {
    color: var(--white);
    background: var(--green);
  }
  
  .secondary-button {
    color: var(--green-dark);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid #5d9c78;
  }
  
  
  /* =========================================================
     SEKCJE OGÓLNE
     ========================================================= */
  
  .section {
    padding: 105px 30px;
  }
  
  .section-light {
    background: var(--green-pale);
  }
  
  .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .section h2 {
    margin: 0 0 22px;
  
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.15;
  
    color: var(--green-dark);
  }
  
  .section p {
    color: var(--muted);
  }
  
  .section-intro {
    max-width: 720px;
    font-size: 18px;
  }
  
  
  /* =========================================================
     O NAS
     ========================================================= */
  
  .about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
  }
  
  .about-grid > div:first-child p + p {
    margin-top: 15px;
  }
  
  .about-box {
    padding: 40px;
  
    border-radius: 22px;
    background: var(--green-dark);
    color: var(--white);
  }
  
  .about-box h3 {
    margin-bottom: 10px;
    font-size: 25px;
  }
  
  .about-box p {
    color: #cfe5d7;
  }
  
  .about-number {
    margin-bottom: 15px;
  
    font-size: 70px;
    font-weight: 900;
    line-height: 1;
  
    color: #cfe5d7;
  }
  
  
  /* =========================================================
     OFERTA
     ========================================================= */
  
  .cards {
    margin-top: 45px;
  
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .card {
    padding: 32px;
  
    border: 1px solid #e3eee7;
    border-radius: 20px;
  
    background: var(--white);
    box-shadow: 0 12px 35px rgba(22, 59, 45, 0.08);
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 22px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    border-radius: 14px;
  
    background: var(--green-light);
    color: var(--green);
  
    font-weight: 900;
  }
  
  .card h3 {
    margin-bottom: 10px;
  
    font-size: 22px;
    color: var(--green-dark);
  }
  
  
  /* =========================================================
     KONTAKT
     ========================================================= */
  
  .contact-section {
    background: var(--green-dark);
    color: var(--white);
  }
  
  .contact-section h2 {
    color: var(--white);
  }
  
  .light-label {
    color: #a7d5b9;
  }
  
  .contact-header {
    max-width: 720px;
    margin-bottom: 45px;
  }
  
  .contact-header p {
    font-size: 18px;
    color: #cfe5d7;
  }
  
  .contact-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: start;
  }
  
  
  /* =========================================================
     DANE KONTAKTOWE
     ========================================================= */
  
  .contact-card {
    padding: 30px;
  
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
  
    background: rgba(255, 255, 255, 0.08);
  }
  
  .contact-card p {
    margin-bottom: 20px;
    color: #cfe5d7;
  }
  
  .contact-card p:last-child {
    margin-bottom: 0;
  }
  
  .contact-card strong {
    color: var(--white);
  }
  
  .contact-card a {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
  }
  
  .contact-card a:hover {
    text-decoration: underline;
  }
  
  
  /* =========================================================
     FORMULARZ
     ========================================================= */
  
  .contact-form-box {
    padding: 38px;
  
    border-radius: 22px;
    background: var(--white);
  
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  }
  
  .contact-form-box h3 {
    margin: 0 0 28px;
  
    font-size: 28px;
    color: var(--green-dark);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 7px;
  
    font-size: 14px;
    font-weight: 800;
  
    color: var(--text);
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 14px 15px;
  
    border: 1px solid #d6e3da;
    border-radius: 10px;
    outline: none;
  
    background: #f8fbf9;
    color: var(--text);
  
    font: inherit;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #57a477;
    background: var(--white);
  
    box-shadow: 0 0 0 3px rgba(87, 164, 119, 0.13);
  }
  
  .form-group textarea {
    min-height: 160px;
    resize: vertical;
  }
  
  .contact-button {
    width: 100%;
    padding: 15px;
  
    border: 0;
    border-radius: 10px;
  
    background: var(--green);
    color: var(--white);
  
    font-size: 16px;
    font-weight: 900;
  
    cursor: pointer;
  }
  
  .contact-button:hover {
    background: var(--green-dark);
  }
  
  
  /* Pole antyspamowe */
  
  .website-field {
    position: absolute;
  
    width: 1px;
    height: 1px;
  
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }
  
  
  /* =========================================================
     STRONA ODPOWIEDZI Z SEND.PHP
     ========================================================= */
  
  .message-page {
    min-height: 100vh;
    padding: 20px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    background: var(--green-pale);
  }
  
  .message-box {
    width: 100%;
    max-width: 550px;
    padding: 45px;
  
    border-radius: 20px;
  
    background: var(--white);
    text-align: center;
  
    box-shadow: 0 15px 45px rgba(22, 59, 45, 0.12);
  }
  
  .message-box h1 {
    margin-bottom: 15px;
  }
  
  .message-box p {
    margin-bottom: 25px;
    color: var(--muted);
  }
  
  .message-box.success h1 {
    color: var(--green);
  }
  
  .message-box.error h1 {
    color: #c62828;
  }
  
  .back-button {
    display: inline-block;
    padding: 13px 24px;
  
    border-radius: 9px;
  
    background: var(--green);
    color: var(--white);
  
    text-decoration: none;
    font-weight: 800;
  }
  
  
  /* =========================================================
     STOPKA
     ========================================================= */
  
  footer {
    padding: 28px;
  
    text-align: center;
  
    background: #102c21;
    color: #bdd8c8;
  }
  
  
  /* =========================================================
     RESPONSYWNOŚĆ
     ========================================================= */
  
  @media (max-width: 900px) {
    .about-grid,
    .cards,
    .contact-wrapper {
      grid-template-columns: 1fr;
    }
  
    .about-grid,
    .contact-wrapper {
      gap: 35px;
    }
  }
  
  @media (max-width: 650px) {
    .navbar {
      padding: 13px 16px;
      align-items: flex-start;
    }
  
    .logo {
      font-size: 18px;
    }
  
    .menu {
      justify-content: flex-end;
      flex-wrap: wrap;
      gap: 8px 12px;
    }
  
    .menu a {
      font-size: 13px;
    }
  
    .menu .shop-button {
      padding: 7px 12px;
    }
  
    .hero {
      padding: 140px 20px 80px;
    }
  
    .hero h1 {
      font-size: 42px;
    }
  
    .section {
      padding: 75px 20px;
    }
  
    .contact-form-box {
      padding: 25px 20px;
    }
  }
  
  
  /* =========================================================
     KOMUNIKAT FORMULARZA
     ========================================================= */
  
  .form-status {
    margin-top: 16px;
    font-weight: 700;
  }
  
  .form-status.success {
    color: #2f6b4f;
  }
  
  .form-status.error {
    color: #c62828;
  }
  
  
  /* =========================================================
     MOCNIEJSZY PODZIAŁ SEKCJI
     ========================================================= */
  
  #o-nas,
  #oferta,
  #kontakt {
    position: relative;
  }
  
  #o-nas::after,
  #oferta::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
  
    width: min(1100px, calc(100% - 60px));
    height: 1px;
  
    transform: translateX(-50%);
    background: rgba(47, 107, 79, 0.2);
  }
  
  #oferta {
    background: #ffffff;
  }
  
  #kontakt {
    border-top: 8px solid #2f6b4f;
  }
  
  
  /* =========================================================
     ROZBUDOWANA LEWA CZĘŚĆ KONTAKTU
     ========================================================= */
  
  .contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  
  .contact-text-block {
    padding: 4px 2px;
  }
  
  .contact-text-block h3 {
    margin-bottom: 16px;
  
    font-size: 28px;
    line-height: 1.25;
  
    color: #ffffff;
  }
  
  .contact-text-block p {
    margin-bottom: 15px;
    color: #cfe5d7;
  }
  
  .contact-text-block p:last-child {
    margin-bottom: 0;
  }
  
  
  /* =========================================================
     KARTY OFERTY BEZ NUMERACJI
     ========================================================= */
  
  .card {
    min-height: 220px;
  }
  
  .card h3 {
    margin-top: 0;
    font-size: 24px;
  }
  
  
  /* =========================================================
     HERO ZE SLIDEREM
     ========================================================= */
  
  .hero {
    text-align: left;
  }
  
  .hero-inner {
    width: 100%;
    max-width: 1200px;
  
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
  }
  
  .hero-content {
    max-width: 620px;
  }
  
  .hero p {
    margin: 0 0 32px;
  }
  
  .hero-actions {
    justify-content: flex-start;
  }
  
  .hero-slider {
    position: relative;
    min-height: 470px;
    overflow: hidden;
  
    border-radius: 26px;
    background: #dcebe1;
  
    box-shadow: 0 22px 55px rgba(22, 59, 45, 0.16);
  }
  
  .slides {
    position: relative;
    width: 100%;
    min-height: 470px;
  }
  
  .slide {
    position: absolute;
    inset: 0;
  
    opacity: 0;
    pointer-events: none;
  
    transition: opacity 0.45s ease;
  }
  
  .slide.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .slide-placeholder {
    width: 100%;
    min-height: 470px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    background:
      linear-gradient(
        135deg,
        rgba(47, 107, 79, 0.18),
        rgba(22, 59, 45, 0.06)
      ),
      #edf6f0;
  
    color: #2f6b4f;
    font-size: 26px;
    font-weight: 900;
  }
  
  .slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
  
    width: 46px;
    height: 46px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    border: 0;
    border-radius: 50%;
  
    transform: translateY(-50%);
  
    background: rgba(255, 255, 255, 0.88);
    color: #163b2d;
  
    font-size: 26px;
    cursor: pointer;
  }
  
  .slider-prev {
    left: 16px;
  }
  
  .slider-next {
    right: 16px;
  }
  
  .slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 5;
  
    display: flex;
    gap: 9px;
  
    transform: translateX(-50%);
  }
  
  .slider-dot {
    width: 10px;
    height: 10px;
  
    padding: 0;
    border: 0;
    border-radius: 50%;
  
    background: rgba(255, 255, 255, 0.58);
    cursor: pointer;
  }
  
  .slider-dot.active {
    background: #ffffff;
  }
  
  
  /* =========================================================
     GODZINY PRACY BIURA
     ========================================================= */
  
  .office-hours {
    margin-top: 26px;
    padding-top: 22px;
  
    display: flex;
    flex-direction: column;
    gap: 4px;
  
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  
  .office-hours strong {
    margin-bottom: 4px;
    color: #ffffff;
  }
  
  .office-hours span {
    color: #cfe5d7;
  }
  
  
  /* =========================================================
     HERO RESPONSYWNY
     ========================================================= */
  
  @media (max-width: 950px) {
    .hero-inner {
      grid-template-columns: 1fr;
    }
  
    .hero-content {
      max-width: 760px;
    }
  
    .hero-slider,
    .slides,
    .slide-placeholder {
      min-height: 390px;
    }
  }
  
  @media (max-width: 650px) {
    .hero {
      text-align: center;
    }
  
    .hero-actions {
      justify-content: center;
    }
  
    .hero-slider,
    .slides,
    .slide-placeholder {
      min-height: 300px;
    }
  }
  
  
  /* =========================================================
     HERO - SLIDER NAD TEKSTEM
     ========================================================= */
  
  .hero {
    text-align: center;
  }
  
  .hero-inner {
    width: 100%;
    max-width: 1200px;
  
    display: flex;
    flex-direction: column;
    gap: 42px;
    align-items: center;
  }
  
  .hero-slider {
    width: 100%;
    min-height: 430px;
  }
  
  .slides,
  .slide-placeholder {
    min-height: 430px;
  }
  
  .hero-content {
    max-width: 850px;
  }
  
  .hero p {
    margin: 0 auto 32px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  
  /* =========================================================
     PASEK Z LOGOTYPAMI MAREK
     ========================================================= */
  
  .brands-section {
    margin-top: 70px;
    padding-top: 40px;
  
    border-top: 1px solid rgba(47, 107, 79, 0.16);
  }
  
  .brands-slider {
    position: relative;
    width: 100%;
    margin-top: 22px;
  
    overflow: hidden;
  }
  
  .brands-slider::before,
  .brands-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
  
    width: 90px;
  
    pointer-events: none;
  }
  
  .brands-slider::before {
    left: 0;
    background: linear-gradient(
      to right,
      #ffffff,
      rgba(255, 255, 255, 0)
    );
  }
  
  .brands-slider::after {
    right: 0;
    background: linear-gradient(
      to left,
      #ffffff,
      rgba(255, 255, 255, 0)
    );
  }
  
  .brands-track {
    width: max-content;
  
    display: flex;
    align-items: center;
    gap: 24px;
  
    animation: brands-scroll 24s linear infinite;
  }
  
  .brand-item {
    width: 180px;
    height: 90px;
    flex: 0 0 auto;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    border: 1px solid #e0ebe4;
    border-radius: 14px;
  
    background: #f8fbf9;
    color: #2f6b4f;
  
    font-size: 18px;
    font-weight: 800;
  }
  
  .brands-slider:hover .brands-track {
    animation-play-state: paused;
  }
  
  @keyframes brands-scroll {
    from {
      transform: translateX(0);
    }
  
    to {
      transform: translateX(calc(-50% - 12px));
    }
  }
  
  
  /* =========================================================
     RESPONSYWNOŚĆ HERO I LOGOTYPÓW
     ========================================================= */
  
  @media (max-width: 950px) {
    .hero-slider,
    .slides,
    .slide-placeholder {
      min-height: 360px;
    }
  }
  
  @media (max-width: 650px) {
    .hero-slider,
    .slides,
    .slide-placeholder {
      min-height: 280px;
    }
  
    .brand-item {
      width: 145px;
      height: 75px;
    }
  
    .brands-slider::before,
    .brands-slider::after {
      width: 45px;
    }
  }
  
  
  /* =========================================================
     WYŁĄCZONY PRZYCISK SERWIS DEYE
     ========================================================= */
  
  .disabled-nav-link {
    display: inline-block;
  
    color: #9aa49e;
    font-weight: 700;
  
    cursor: not-allowed;
    user-select: none;
  
    opacity: 0.72;
  }
  
  
  /* =========================================================
     DODATKOWY TEKST W SEKCJI O NAS
     ========================================================= */
  
  .about-extra {
    margin-top: 18px;
  }
  