:root {
  --black: #0a0a0a;
  --dark: #111213;
  --gray: #c9c9c9;
  --silver: #bdbdbd;
  --gold: #d4af37;
  --white: #f7f7f7;
  --blue: #007bff;
  --green: #148f80;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: #103631;
  color: #f7f7f7;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}
a { text-decoration: none; }

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #1f2022;
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border: 2px solid var(--blue);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--silver);
  font-weight: 700;
}
.domain { color: var(--silver); }
.menu { display: flex; gap: 22px; }
.menu a {
  padding: 8px 0;
  color: var(--silver);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.menu a.cta {
  color: var(--silver);
  background: var(--blue);
  padding: 8px 14px;
  border-radius: 6px;
}

.menu a.cta:hover{
  background: #0056b3;   /* ciemniejszy niebieski przy hover */
  color: #ffffff;
}

/* Hamburger button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--silver);
  cursor: pointer;
}

/* Hero section with background */
.hero {
  position: relative;
  height: 55vh;              /* hero zajmuje ~55% wysokości okna */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centrowanie filmu */
  width: 80%;
  height: auto%;
  object-fit: cover;                 /* film wypełnia ramkę */
  z-index: -1;
}

.hero-text {
  position: relative;
  z-index: 1;
  color: var(--white);
  background: rgba(0,0,0,0.5); /* ciemne półprzezroczyste tło */
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
}



.hero h1, .hero p {
  text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: var(--blue);   /* niebieski Jetfoil */
  color: #ffffff;        /* biały tekst */
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0056b3;   /* ciemniejszy niebieski przy hover */
  color: #ffffff;
}


/* Highlights cards */
.highlights {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--dark);   /* jednolite niebieskie tło */
  border: none;          /* opcjonalnie usuń ciemną ramkę */
  border-radius: 12px;
  padding: 20px;
  color: #ffffff;        /* biały tekst dla kontrastu */
}

.card h3 { margin-bottom: 8px; font-size: 18px; color: var(--blue); }
.card p { color: var(--silver); }

/* Section headers */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
}
.section h2 {
  margin-bottom: 18px;
  font-size: 28px;
  color: var(--white);
}
.section p.lead { color: var(--silver); margin-bottom: 24px; }


/* Grid for models */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.section .card img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* Forms (kontakt, usługi) */
input, select, textarea {
  background: #121314;
  color: var(--white);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  margin-bottom: 12px;
}
button, .btn {
  cursor: pointer;
}

/* Footer */
.footer {
  border-top: 1px solid #1f2022;
  color: var(--silver);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer .copy { font-size: 14px; }
.footer .social { display: flex; gap: 12px; }
.footer .social a { color: var(--silver); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { padding: 60px 20px; }
  .highlights { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .menu { display: none; }
  .menu-toggle { display: block; }
  .hero { text-align: center; justify-content: center; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }
  .actions { flex-direction: column; gap: 10px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .menu {
    flex-direction: column;
    background: #111213;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border-radius: 8px;
  }
  .menu a { padding: 10px; color: var(--white); }
}

/* Logo w nawigacji */
.brand .logo img {
  height: 58px;       /* wysokość logo */
  width: auto;        /* proporcje zachowane */
  display: block;
}

/* Logo – wersja mobilna */
@media (max-width: 700px) {
  .brand .logo img {
    max-width: 100px;   /* zmniejsza szerokość logo */
    height: auto;       /* zachowuje proporcje */
  }
}

/* jeszcze mniejsze ekrany */
@media (max-width: 480px) {
  .brand .logo img {
    max-width: 60px;   /* jeszcze mniejsze logo */
  }
}

/* Sekcja usług – desktop */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.service-box {
  flex: 1 1 300px; /* minimalna szerokość 300px */
  background: #111;
  color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

/* Mobile/tablet */
@media (max-width: 768px) {
  .services {
    flex-direction: column; /* układ pionowy */
  }
  .service-box {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}


/* Mobile – zwiększamy wysokość hero */
@media (max-width: 768px) {
  .hero {
    height: 70vh;             /* np. 70% wysokości ekranu zamiast małego boxa */
  }

  .background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 80vh;             /* na bardzo małych ekranach jeszcze wyższe */
  }
}

  .iaqua-xjet-summary .grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 24px;
  }
  .iaqua-xjet-summary .card {
    padding: 20px;
    border-radius: 10px;
    background: var(--dark);
    color: var(--white, #ffffff);
    border: none;
  }
  .iaqua-xjet-summary .card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--white, #ffffff);
  }
  .iaqua-xjet-summary .card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .iaqua-xjet-summary .card li {
    margin: 6px 0;
    color: var(--silver, #d0d0d0);
  }
  .iaqua-xjet-summary .pricing {
    margin-top: 0px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .iaqua-xjet-summary .pricing h3 {
    margin: 0 0 12px;
    color: var(--blue);
  }
  .iaqua-xjet-summary .pricing ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--silver, #d0d0d0);
  }
  .iaqua-xjet-summary .cta-row {
    margin-top: 24px;
    display: flex;
    justify-content: flex-start;
  }
  .iaqua-xjet-summary .btn.gold {
    background: var(--gold, #d4af37);
    color: var(--black, #0a0a0a);
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
  }
  @media (max-width: 600px) {
    .iaqua-xjet-summary .card { padding: 16px; }
    .iaqua-xjet-summary .btn.gold { width: 100%; text-align: center; }
  }

.pricing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing li {
  display: flex;              /* opis + cena obok siebie */
  justify-content: space-between; /* rozstawienie na boki */
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1); /* opcjonalna linia */
}

.pricing .label {
  font-weight: 600;
  color: var(--white);
}

.pricing .price {
  color: var(--white);
  font-weight: 600;
  min-width: 80px;            /* stała szerokość kolumny dla wyrównania */
  text-align: right;
}

