/* Reset i podstawowe style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-navy: #1e3a8a;
  --secondary-navy: #3730a3;
  --light-blue: #60a5fa;
  --dark-gray: #374151;
  --light-gray: #f3f4f6;
  --white: #ffffff;
  --accent: #2563eb;
  --text-dark: #111827;
  --text-gray: #6b7280;
  --success: #10b981;
  --shadow: rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-accent: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: var(--white);
}

/* Floating shapes background */
.floating-shapes {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  opacity: 0.03;
}

.shape {
  position: absolute;
  background: var(--gradient-accent);
  animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 10%;
  left: -150px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 50%;
  right: -100px;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  bottom: 20%;
  left: 10%;
  animation-delay: 10s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  top: 70%;
  right: 20%;
  animation-delay: 15s;
}

.shape-5 {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  top: 30%;
  left: 50%;
  animation-delay: 8s;
}

@keyframes float-shape {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(-30px, 50px) rotate(180deg);
  }
  75% {
    transform: translate(30px, -50px) rotate(270deg);
  }
}

/* Nawigacja */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  display: flex;
  align-items: center;
}

.logo-icon svg {
  fill: var(--accent);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--accent);
}

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

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

.phone-link a {
  background: var(--gradient-accent);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.phone-link a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.phone-link a::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-navy);
  transition: all 0.3s ease;
  border-radius: 3px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #5b21b6 100%);
  color: var(--white);
  text-align: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-pattern {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(96, 165, 250, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(124, 58, 237, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  animation: pulse 10s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.title-line {
  display: block;
  animation: slideInFromLeft 1s ease-out;
}

.title-line:nth-child(2) {
  animation: slideInFromRight 1s ease-out 0.2s both;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-out 0.4s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.95;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-button.primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.5s ease;
}

.cta-button.primary:hover::before {
  left: 100%;
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.cta-button.secondary {
  background: var(--white);
  color: var(--primary-navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Sekcja Procesu (przeniesiona nad korzyści) */
.process {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  transition: all 0.4s ease;
}

.step-number span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  z-index: 2;
}

.step-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient-accent);
  z-index: -1;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.process-step h3 {
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  font-weight: 700;
}

.process-step p {
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 350px;
  margin: 0 auto;
}

.process-note {
  max-width: 800px;
  margin: 3rem auto 0;
  background: var(--white);
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.note-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.note-icon svg {
  fill: var(--accent);
}

.process-note p {
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
}

/* Linia łącząca kroki - desktop */
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50px;
    left: 60%;
    width: calc(100% - 20%);
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    opacity: 0.3;
    z-index: -1;
  }
}

/* Sekcja Korzyści */
.benefits {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-accent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.benefit-card:hover::before {
  transform: translateX(0);
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  position: relative;
}

.icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 50%;
  opacity: 0.1;
  transition: all 0.4s ease;
}

.benefit-card:hover .icon-bg {
  transform: scale(1.2);
  opacity: 0.15;
}

.benefit-icon svg {
  position: relative;
  width: 100%;
  height: 100%;
  stroke: var(--accent);
  stroke-width: 1.5;
}

.benefit-card h3 {
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  font-weight: 700;
}

.benefit-card p {
  color: var(--text-gray);
  line-height: 1.8;
}

/* Sekcja Pakiety */
.packages {
  padding: 5rem 2rem;
  background: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.1) 0%,
    transparent 70%
  );
  transition: all 0.5s ease;
  transform: translate(-50%, -50%);
}

.package-card:hover::before {
  width: 150%;
  height: 150%;
}

.package-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.package-card.featured {
  transform: scale(1.05);
  border-color: var(--accent);
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    rgba(37, 99, 235, 0.02) 100%
  );
}

.package-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gradient-accent);
  color: var(--white);
  padding: 0.5rem 2rem;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.package-header {
  margin-bottom: 1.5rem;
}

.package-name {
  font-size: 1.8rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  font-weight: 700;
}

.package-icon {
  display: inline-block;
  margin-bottom: 1rem;
}

.package-icon svg {
  stroke: var(--accent);
  transition: all 0.4s ease;
}

.package-card:hover .package-icon svg {
  stroke: var(--primary-navy);
  transform: scale(1.1);
}

.package-price {
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.price-currency {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-left: 0.5rem;
}

.package-period {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.package-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-dark);
}

.package-features li.highlight strong {
  color: var(--accent);
}

.package-features svg {
  flex-shrink: 0;
  fill: var(--success);
  margin-top: 2px;
}

.package-button {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--primary-navy);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.package-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.package-button:hover::before {
  width: 300px;
  height: 300px;
}

.package-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.package-button.featured {
  background: var(--gradient-accent);
}

.extra-offer {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: center;
}

.offer-content {
  background: linear-gradient(
    135deg,
    var(--light-gray) 0%,
    rgba(37, 99, 235, 0.05) 100%
  );
  padding: 2rem;
  border-radius: 15px;
  border: 2px dashed var(--accent);
}

.offer-content p {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.offer-content strong {
  color: var(--accent);
  font-size: 1.3rem;
}

.offer-note {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-gray);
}

/* Sekcja Kontakt */
.contact {
  padding: 5rem 2rem;
  background: var(--white);
}

.survey-cta {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    var(--light-gray) 0%,
    rgba(37, 99, 235, 0.05) 100%
  );
  border-radius: 15px;
}

.survey-cta p {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.survey-trigger-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.survey-trigger-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 99, 235, 0.4);
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info {
  background: linear-gradient(
    135deg,
    var(--primary-navy) 0%,
    var(--secondary-navy) 100%
  );
  border-radius: 20px;
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.contact-direct h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  position: relative;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon-wrapper {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.contact-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.phone-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-number:hover {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.contact-item a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  opacity: 0.8;
}

.quick-call-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.quick-call-cta h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.quick-call-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-radius: 50px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.quick-call-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Formularz kontaktowy */
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  color: var(--primary-navy);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: rgba(37, 99, 235, 0.02);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  padding: 1.2rem;
  background: var(--gradient-accent);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.submit-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.submit-button:hover::before {
  width: 400px;
  height: 400px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.submit-button:active {
  transform: translateY(0);
}

.error-message {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.success-message {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  display: none;
  align-items: center;
  gap: 1rem;
  animation: slideInFromBottom 0.5s ease;
  margin-top: 1rem;
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal ankiety */
.survey-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: none;
}

.survey-modal.active {
  display: block;
}

.survey-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease;
}

.survey-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInModal 0.4s ease;
}

@keyframes slideInModal {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.survey-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.survey-close:hover {
  background: var(--light-gray);
  transform: rotate(90deg);
}

.survey-header {
  padding: 3rem 3rem 0;
  text-align: center;
}

.survey-header h2 {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.survey-header p {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.survey-progress {
  height: 6px;
  background: var(--light-gray);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-accent);
  width: 33.33%;
  transition: width 0.5s ease;
}

.survey-form {
  padding: 0 3rem 3rem;
}

.survey-step {
  display: none;
}

.survey-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.survey-step h3 {
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-label:hover,
.checkbox-label:hover {
  background: rgba(37, 99, 235, 0.1);
  transform: translateX(5px);
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.survey-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

.survey-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.survey-btn-prev {
  background: var(--light-gray);
  color: var(--text-dark);
}

.survey-btn-prev:hover {
  background: #e5e7eb;
}

.survey-btn-next,
.survey-btn-submit {
  background: var(--gradient-accent);
  color: var(--white);
}

.survey-btn-next:hover,
.survey-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.survey-success {
  padding: 3rem;
  text-align: center;
}

.success-icon {
  fill: var(--success);
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background: var(--primary-navy);
  color: var(--white);
  padding: 4rem 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  opacity: 0.1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  color: var(--light-blue);
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--light-blue);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  display: inline-block;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-blue);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-bottom p {
  opacity: 0.7;
}

/* Responsywność */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px var(--shadow);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 3rem;
  }

  .cta-button {
    width: 100%;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .packages-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: scale(1);
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .survey-modal-content {
    width: 95%;
    margin: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .survey-form {
    padding: 0 1.5rem 1.5rem;
  }

  .survey-header {
    padding: 2rem 1.5rem 0;
  }
}

/* Animacje przy scrollowaniu */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay] {
  transition-delay: calc(var(--delay) * 1ms);
}

/* Utility classes */
.gradient-border {
  position: relative;
  background: linear-gradient(var(--white), var(--white)) padding-box,
    var(--gradient-accent) border-box;
  border: 2px solid transparent;
  border-radius: 20px;
}
