body {
  font-family: 'Inter', sans-serif;
  margin:0;
  background:#f9fafb;
  color:#111827;
}

/* ===== NAVBAR ===== */
.navbar {
  position:fixed;
  top:0;
  width:100%;
  background:rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border-bottom:1px solid #e5e7eb;
  z-index:1000;
}

.nav-inner {
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 24px;
}

.nav-left {
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-icon {
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo-icon img {
  height:28px;
  width:auto;
  object-fit:contain;
}

.logo-text {
  font-weight:600;
  font-size:15px;
}

.nav-center {
  display:flex;
  gap:28px;
}

.nav-center a {
  font-size:14px;
  color:#6b7280;
  text-decoration:none;
  font-weight:500;
}

.nav-center a:hover {
  color:#111;
}

.nav-btn {
  background:#2563eb;
  color:white;
  padding:8px 16px;
  border-radius:8px;
  font-size:14px;
  text-decoration:none;
  font-weight:500;
}

/* ===== HERO ===== */
.hero {
  padding-top:120px;
}

.hero-inner {
  max-width:1100px;
  margin:auto;
  padding:80px 24px 40px 24px;
}

/* BADGE */
.badge {
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:#e8f0ff;
  color:#2563eb;
  padding:6px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:500;
  margin-bottom:20px;
}

/* TITLE */
.hero h1 {
  font-size:56px;
  line-height:1.1;
  font-weight:700;
  margin:0 0 24px 0;
}

.hero span {
  color:#2563eb;
}

/* DESC */
.hero-desc {
  font-size:18px;
  color:#6b7280;
  max-width:620px;
  line-height:1.6;
  margin-bottom:32px;
}

/* BUTTONS */
.hero-buttons {
  display:flex;
  gap:16px;
}

.hero-trust {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 14px;
  color: #64748b;
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 999px;
}

.btn-primary {
  background:#2563eb;
  color:white;
  padding:14px 22px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
}

.btn-outline {
  border:1px solid #e5e7eb;
  padding:14px 22px;
  border-radius:10px;
  text-decoration:none;
  color:#111;
  background:white;
}

.stats {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  background: #f8fafc;
  padding: 48px 16px;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 640px) {
  .stats-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}

.stat-text {
  font-size: 14px;
  color: #64748b;
}

.services {
  padding: 80px 16px;
  background: #ffffff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.services-header p {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CARD */
.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

/* HOVER jak Lovable */
.service-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-color: rgba(37, 99, 235, 0.2);
}

/* IKONA */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  transition: 0.3s;
}

/* hover jak Lovable */
.service-card:hover .icon-box {
  background: rgba(37, 99, 235, 0.15);
}

/* TEKSTY */
.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.card {
  background:white;
  padding:30px;
  border-radius:16px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.about {
  padding: 80px 16px;
  background: #f8fafc;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* LEWA */
.about-left h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-desc {
  color: #64748b;
  margin-bottom: 28px;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  font-size: 15px;
  color: #0f172a;
}

/* PRAWA */
.about-box {
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(59,130,246,0.05));
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 20px;
  padding: 32px;
}

.about-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ELEMENTY */
.about-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-item {
  background: rgba(255,255,255,0.6);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.projects {
  padding: 80px 16px;
}

.projects-header {
  text-align: center;
  margin-bottom: 56px;
}

.projects-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.projects-header p {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* GRID */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ITEM */
.project-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  height: 300px;
}

/* OBRAZ */
.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* HOVER ZOOM */
.project-item:hover img {
  transform: scale(1.05);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
}

/* HOVER */
.project-item:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

/* TEKST */
.overlay span {
  font-size: 12px;
  background: #2563eb;
  color: white;
  padding: 4px 8px;
  border-radius: 999px;
  width: fit-content;
}

.overlay p {
  color: white;
  font-weight: 600;
  margin-top: 6px;
}

.experience {
  padding: 80px 16px;
}

.experience-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.experience h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.experience p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact {
  background: #1d5bbf;
  color: white;
  padding: 80px 16px;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-header p {
  color: rgba(255,255,255,0.8);
}

/* BOXES */
.contact-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
}

@media (min-width: 640px) {
  .contact-boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.contact-card:hover {
  background: rgba(255,255,255,0.15);
}

/* IKONY */
.icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* MAPA */
.map {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}

.footer {
  border-top: 1px solid #e5e7eb;
  padding: 20px 16px;
  background: #ffffff;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .footer-container {
    flex-direction: row;
  }
}

/* LEWA */
.footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #0f172a;
}

.logo-box {
  width: 24px;
  height: 24px;
  background: #2563eb;
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* PRAWA */
.footer-right {
  font-size: 14px;
  color: #64748b;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 80px 16px;
  background: #ffffff;
}

.reviews-score {
  text-align: center;
  margin-bottom: 16px;
  color: #2563eb;
  font-weight: 600;
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.reviews-header p {
  color: #64748b;
}

.reviews-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  background: #ffffff;
  transition: 0.3s;
}

.review-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.stars {
  color: #facc15;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 14px;
  color: #374151;
  margin-bottom: 12px;
  line-height: 1.6;
}

.review-card span {
  font-size: 13px;
  color: #6b7280;
}

.call-fixed {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #f97316;
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  z-index: 999;
  text-decoration: none;
}

@media (min-width: 768px) {
  .call-fixed {
    display: none;
  }
}

.seo-text {
  padding: 60px 16px;
  background: #f8fafc;
}

.seo-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.seo-text p {
  max-width: 800px;
  margin: 0 auto 16px;
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
  text-align: center;
}

.project-item {
  cursor: pointer;
}

/* ===== SCROLL ANIMATIONS ===== */

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav-center {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-btn {
    padding: 10px 18px;
    font-size: 15px;
  }
}


@media (max-width: 768px) {
  .footer {
    margin-bottom: 80px;
  }
}

/* ===== BUTTON ANIMATIONS ===== */

.btn-primary,
.btn-outline {
  transition: all 0.25s ease;
}

/* 🔵 GŁÓWNY PRZYCISK */
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* 📞 PRZYCISK TELEFONU */
.btn-outline {
  border: 1px solid #e5e7eb;
  background: white;
  color: #111;
}

/* 🔥 HOVER TELEFONU (POMARAŃCZ) */
.btn-outline:hover {
  background: #f97316;
  color: white;
  border-color: #f97316;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

/* 📞 IKONA TEŻ SIĘ ZMIENIA */
.btn-outline:hover span {
  color: white;
}
