:root {
  --orange: #ff8c1a;
  --dark: #1f1f1f;
  --gray: #f5f5f5;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--dark);
}

section { position: relative; z-index: 1; }

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.section { padding: 6rem 0; }
.section-alt { background: var(--gray); }

h1 { font-size: 3rem; font-weight: 800; line-height: 1.15; }
h2 { font-size: 2.1rem; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 700; }

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin-top: 0.8rem;
  border-radius: 2px;
}

p { margin-bottom: 1rem; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 10px 30px rgba(255,140,26,0.35);
}

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eee;
  z-index: 9999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo { font-weight: 800; }

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.nav-menu.open { display: flex; }

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  position: relative;
}

/* ===== AKTYWNY LINK W NAVBARZE (SCROLL SPY) ===== */

.nav-menu a.active {
  color: var(--orange);
  font-weight: 700;
}

.nav-menu a.active::after {
  width: 100%;
}


.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after { width: 100%; }

.hamburger {
  font-size: 1.6rem;
  background: none;
  border: none;
}

/* HERO */
.hero {
  padding: 7.5rem 0;
  background: linear-gradient(135deg, #fff, #ffe5cc);
}

.hero-grid {
  display: grid;
  gap: 3rem;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #777;
}

.highlight { color: var(--orange); }

.hero-lead {
  font-size: 1.15rem;
  max-width: 600px;
  margin-top: 1.4rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-benefits {
  display: grid;
  gap: 1rem;
}

.benefit {
  background: white;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  cursor: default;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(255,140,26,0.25);
  background: #fff7ef;
}


/* PROCESS */
.process {
  display: grid;
  gap: 1.5rem;
}

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: center;
}

.process-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 1.2rem; }
.faq-item {
  all: unset;
  display: block;
  background: white;
  border: 2px solid #ffd1a3;
  padding: 1.2rem 1.4rem;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
}
.faq-item::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 1.5rem;
  color: var(--orange);
}
.faq-item.active::after { transform: rotate(45deg); }
.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.3s ease;
  margin-top: 0.6rem;
}
.faq-item.active .faq-content { opacity: 1; }

/* TESTIMONIALS */
.testimonials { display: grid; gap: 1.5rem; }
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE CTA */
.mobile-cta {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--orange);
  color: white;
  text-align: center;
  padding: 1rem;
  font-weight: 800;
  text-decoration: none;
  z-index: 500;
}

@media (min-width: 768px) {
  .nav-menu { display: flex; flex-direction: row; align-items: center; }
  .hamburger { display: none; }
  .hero-grid { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
  .process { grid-template-columns: repeat(4, 1fr); }
  .testimonials { grid-template-columns: repeat(3, 1fr); }
  .mobile-cta { display: none; }
}

/* ================= OFERTA ================= */

.offer-grid {
  display: grid;
  gap: 2rem;
}

.offer-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.14);
}

.offer-card.featured:hover {
  border-color: var(--orange);
}



.offer-card.featured {
  border: 2px solid var(--orange);
}

.offer-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--orange);
  color: white;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
}

.offer-desc {
  color: #555;
  margin: 0.5rem 0 1rem;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.offer-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

.offer-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.offer-price {
  font-size: 2rem;
  font-weight: 800;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= FINAL CTA ================= */

.final-cta {
  background: linear-gradient(135deg, #ff8c1a, #ffb066);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.final-cta-inner {
  max-width: 700px;
}

.final-cta h2 {
  color: white;
}

.final-cta h2::after {
  background: white;
}

.final-cta-text {
  font-size: 1.15rem;
  margin: 1.5rem 0 2.5rem;
}

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

.btn-large {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: white;
  color: var(--orange);
}

.final-cta-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.offer-card .btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover .btn {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ===== OPINIE – SLIDER ===== */

.testimonials-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.testimonials-slider::-webkit-scrollbar {
  height: 6px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 10px;
}

.testimonial-card {
  min-width: 280px;
  max-width: 320px;
  background: white;
  padding: 1.8rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  scroll-snap-align: start;
}

.stars {
  color: #ffb400;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.map-wrapper {
  margin-top: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ===== OPINIE – SLIDER STRONAMI ===== */

.testimonials-wrapper {
  position: relative;
  margin-top: 2.5rem;
}

.testimonials-viewport {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s ease;
}

.testimonial-card {
  flex: 0 0 auto;
  width: calc((100% - 3rem) / 3);

  padding: 1.8rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}



.stars {
  color: #ffb400;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  z-index: 3;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-nav:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}


.testimonial-nav.prev { left: -70px; }
.testimonial-nav.next { right: -70px; }

@media (max-width: 768px) {
  .testimonial-card {
    width: 100%;
  }
}

/* ================= KONTAKT ================= */

.contact-box {
  max-width: 800px;
  text-align: center;
}

.contact-lead {
  margin: 1.2rem auto 2.5rem;
  font-size: 1.05rem;
  max-width: 520px;
  color: #444;
}

.contact-cards {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 18px;
  text-decoration: none;
  color: var(--dark);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

.contact-card.primary {
  border: 2px solid var(--orange);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.contact-title {
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.contact-value {
  font-weight: 800;
  color: var(--orange);
}

.contact-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.4rem;
}

.contact-footer {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: #555;
}

@media (min-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* About section – mobile vs desktop text */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

/* Hide bottom CTA on mobile */
@media (max-width: 768px) {
  .mobile-cta {
    display: none;
  }
}

/* Mobile hamburger improvements */
.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: #111;
  border-radius: 2px;
}

/* Offer list – better spacing for checkmarks */
.offer-list li {
  position: relative;
  padding-left: 1.6rem;
}

.offer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #ff8a00;
  font-weight: 700;
}
