:root {
  --primary-color: #6366f1; /* Indigo */
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;
  --secondary-color: #ec4899; /* Pink */
  --secondary-light: #f472b6;
  --secondary-dark: #db2777;
  --accent-color: #eab308; /* Yellow */
  --accent-light: #facc15;
  --accent-dark: #ca8a04;
  --cta-color: #6366f1; /* Zmienione z pomarańczowego na fiolet */
  --cta-hover: #818cf8;
  --cta-dark: #4f46e5;
  --success-color: #22c55e;
  --warning-color: #eab308;
  --danger-color: #ef4444;
  --dark-color: #111827;
  --gray-color: #6b7280;
  --light-color: #f9fafb;
  --border-color: #e5e7eb;
  --bg-color: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --transition-base: all 0.3s ease;
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Zmiana gradientów z pomarańczowych na fioletowe */
  --gradient-primary: linear-gradient(135deg, #818cf8, #6366f1);
  --gradient-secondary: linear-gradient(135deg, #a5b4fc, #818cf8);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  font-size: 16px;
  color: var(--dark-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden {
  display: none !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
  position: relative;
}

.section-title span {
  background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-base);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn--cta {
  background-color: var(--cta-color);
  color: white;
  padding: 16px 36px;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
}

.btn--cta:hover {
  background-color: var(--cta-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn--small {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn--full {
  display: block;
  width: 100%;
}

.btn--text {
  background: none;
  border: none;
  padding: 4px;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: underline;
}

.btn--text:hover {
  color: var(--primary-dark);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 16px 0;
  transition: var(--transition-base);
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 40px;
}

.logo h1 {
  font-size: 1.5rem;
  color: var(--dark-color);
}

.logo span {
  color: var(--primary-color);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: var(--transition-base);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background-color: var(--cta-color);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.nav__link--cta:hover {
  background-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav__link--cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  background-color: transparent;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  position: relative;
  background-color: var(--bg-color);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23" + primaryColor.substring(1) + "' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero__content {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero__text {
  flex: 1;
}

.hero__title {
  font-size: 3.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero__title span {
  background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: block;
}

.hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: var(--gray-color);
}

.hero__cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero__image img {
  max-width: 100%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero__stats {
  display: flex;
  gap: 24px;
}

.stat {
  background-color: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-md);
  flex: 1;
  text-align: center;
}

.stat__number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--gray-color);
}

/* Benefits Section */
.benefits {
  padding: 100px 0;
  background-color: var(--light-color);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 32px;
}

.benefit {
  background-color: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  z-index: 2;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(to bottom right, var(--primary-light), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  font-size: 24px;
  box-shadow: var(--shadow);
}

.benefit__title {
  margin-bottom: 16px;
}

.benefit__text {
  color: var(--gray-color);
}

/* Services Section */
.services {
  padding: 100px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card--featured {
  border-color: var(--primary-light);
  box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.2);
}

.service-card__label {
  position: absolute;
  top: 12px;
  right: -30px;
  padding: 5px 40px;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(to bottom right, var(--primary-light), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  font-size: 20px;
  box-shadow: var(--shadow);
}

.service-card__title {
  margin-bottom: 16px;
}

.service-card p {
  color: var(--gray-color);
  margin-bottom: 24px;
}

.service-card__list {
  margin-bottom: 24px;
}

.service-card__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background-color: var(--light-color);
}

.pricing__controls {
  margin-bottom: 40px;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.tab {
  padding: 12px 24px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
}

.tab:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.tab:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.tab.active {
  background-color: var(--primary-color);
  color: white;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter label {
  font-weight: 500;
}

.filter select {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: white;
  cursor: pointer;
}

/* Pricing Table */
.pricing-table {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pricing-table__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 2fr;
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.pricing-table__cell {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pricing-table__cell--courier {
  justify-content: flex-start;
  padding-left: 24px;
}

.pricing-table__body {
  display: flex;
  flex-direction: column;
}

.pricing-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 2fr;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
  transition: var(--transition-base);
}

.pricing-table__row:hover {
  background-color: rgba(99, 102, 241, 0.04);
}

.pricing-table__row:last-child {
  border-bottom: none;
}

.courier-logo {
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
}

.courier-details {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.delivery-time {
  font-size: 0.875rem;
  color: var(--gray-color);
  margin-bottom: 4px;
}

.toggle-details {
  font-size: 0.8125rem;
  color: var(--primary-color);
  text-decoration: underline;
  cursor: pointer;
}

.price {
  font-weight: 700;
  color: var(--dark-color);
  font-size: 1.125rem;
}

.promo-price {
  color: var(--secondary-color);
}

.regular-price {
  font-size: 0.875rem;
  color: var(--gray-color);
  text-decoration: line-through;
  margin-left: 6px;
}

.pricing-table__cell--action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pricing-table__details {
  grid-column: 1 / -1;
  background-color: var(--light-color);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.pricing-table__details.active {
  padding: 24px;
  max-height: 400px;
}

.details-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.details-section h4 {
  margin-bottom: 16px;
  color: var(--primary-color);
}

.details-section ul {
  padding-left: 20px;
}

.details-section ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.details-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary-light) 2px, transparent 2px);
  background-size: 40px 40px;
  opacity: 0.1;
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.steps::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-light);
  z-index: -1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.step__number {
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step__icon {
  width: 84px;
  height: 84px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--primary-light);
  z-index: 2;
}

.step__title {
  margin-bottom: 12px;
}

.step__description {
  font-size: 0.9375rem;
  color: var(--gray-color);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--light-color);
}

.testimonials__slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial {
  padding: 16px;
}

.testimonial__content {
  background-color: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial__content::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 5rem;
  line-height: 1;
  color: rgba(99, 102, 241, 0.1);
  font-family: Georgia, serif;
}

.testimonial__rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--accent-color);
}

.testimonial__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial__author-image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial__author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__author-info h4 {
  margin-bottom: 4px;
}

.testimonial__author-info p {
  font-size: 0.875rem;
  color: var(--gray-color);
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonials__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition-base);
  color: var(--primary-color);
}

.testimonials__nav-btn:hover {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background-color: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq__question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq__question h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.faq__icon {
  color: var(--primary-color);
  transition: var(--transition-base);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-base);
}

.faq__item.active .faq__answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq__answer p {
  margin-bottom: 16px;
}

.faq__answer ul, .faq__answer ol {
  padding-left: 24px;
}

.faq__answer li {
  margin-bottom: 8px;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta__content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta__title {
  font-size: 3rem;
  margin-bottom: 24px;
}

.cta__title span {
  background: linear-gradient(to right, var(--accent-light), white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.cta__text {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta__badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.cta__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.cta__badge i {
  font-size: 24px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--light-color);
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact__wrapper--centered {
  display: flex;
  justify-content: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact__text {
  font-size: 1.125rem;
  margin-bottom: 32px;
  color: var(--gray-color);
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact__info--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__info-item--centered {
  flex-direction: column;
  text-align: center;
}

.contact__info-item i {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 10px 15px rgba(99, 102, 241, 0.2);
}

.contact__info-item h4 {
  margin-bottom: 4px;
  color: var(--dark-color);
}

.contact__info-item p {
  color: var(--gray-color);
}

.contact__form-container {
  background-color: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 12px;
  margin-top: 6px;
}

.form-group.checkbox label {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gray-color);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 80px 0 40px;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer__logo img {
  height: 40px;
}

.footer__logo h3 {
  font-size: 1.5rem;
}

.footer__column p {
  margin-bottom: 24px;
  opacity: 0.8;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer__column h3 {
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer__column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer__list li {
  margin-bottom: 12px;
}

.footer__list a {
  opacity: 0.8;
  transition: var(--transition-base);
}

.footer__list a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  opacity: 0.6;
}

.footer__bottom a {
  color: var(--primary-light);
}

/* Media Queries */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 3rem;
  }

  .cta__title {
    font-size: 2.5rem;
  }

  .steps {
    flex-wrap: wrap;
  }

  .step {
    flex-basis: 33.333%;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 160px 0 80px;
  }

  .hero__content {
    flex-direction: column-reverse;
  }

  .hero__image {
    margin-bottom: 40px;
  }

  .nav__list {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .section-title {
    font-size: 2rem;
  }

  .tab {
    padding: 10px 16px;
    font-size: 0.875rem;
  }

  .contact__wrapper {
    grid-template-columns: 1fr;
  }

  .filter {
    flex-direction: column;
    align-items: flex-start;
  }

  .step {
    flex-basis: 50%;
  }

  .pricing-table__header,
  .pricing-table__row {
    grid-template-columns: 2fr repeat(4, 1fr);
  }

  .pricing-table__cell--action {
    display: none;
  }

  .pricing-table__row {
    position: relative;
  }

  .pricing-table__row::after {
    content: '>';
    position: absolute;
    right: 16px;
    color: var(--primary-color);
  }
}

@media (max-width: 576px) {
  .hero__title {
    font-size: 2.25rem;
  }

  .hero__subtitle {
    font-size: 1.125rem;
  }

  .hero__stats {
    flex-direction: column;
  }

  .hero__cta {
    flex-direction: column;
  }

  .tabs {
    flex-direction: column;
    gap: 8px;
  }

  .tab {
    width: 100%;
    border-radius: 8px !important;
  }

  .pricing-table__header,
  .pricing-table__row {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .pricing-table__header div:nth-child(4),
  .pricing-table__header div:nth-child(5),
  .pricing-table__row div:nth-child(4),
  .pricing-table__row div:nth-child(5) {
    display: none;
  }

  .step {
    flex-basis: 100%;
  }

  .steps::before {
    display: none;
  }

  .details-content {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* Ikony i gradienty w fioletowej kolorystyce */
.benefit__icon,
.service-card__icon,
.step__icon,
.contact__info-item i {
  background: var(--gradient-primary);
  box-shadow: 0 10px 15px rgba(99, 102, 241, 0.2);
}

/* Logo ikona w nagłówku */
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  margin-right: 12px;
  box-shadow: 0 6px 12px rgba(99, 102, 241, 0.2);
}

/* Kalkulator */
.calculator {
    background-color: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
}

.calculator__title {
    text-align: center;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.calculator__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calculator__row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.calculator__field {
    flex: 1;
    min-width: 150px;
}

.calculator__field label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.calculator__field input,
.calculator__field select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.calculator__options {
    align-items: flex-end;
}

.calculator__result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.calculator__price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.875rem;
    color: var(--gray-color);
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-service {
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .calculator__result {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Navigacja mobilna */
.nav-toggle {
    width: 40px;
    height: 40px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    position: absolute;
    width: 30px;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-color);
    transition: 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

.hamburger::before {
    top: -10px;
}

.hamburger::after {
    top: 10px;
}

.hamburger.active {
    background-color: transparent;
}

.hamburger.active::before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger.active::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav__list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    animation: slideDown 0.3s ease-out forwards;
}

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

.nav__list.active .nav__item {
    margin: 10px 0;
}

/* Pasek śledzenia przesyłek */
.tracking-bar {
    background-color: var(--light-color);
    padding: 15px 0;
    box-shadow: var(--shadow);
    margin-top: 80px;
}

.tracking-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.tracking-form h3 {
    font-size: 1.125rem;
    margin: 0;
}

.tracking-form__group {
    display: flex;
    flex-grow: 1;
    max-width: 500px;
}

.tracking-form__group input {
    flex-grow: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-right: none;
}

.tracking-form__group button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

@media (max-width: 768px) {
    .tracking-form {
        flex-direction: column;
        align-items: stretch;
    }

    .tracking-form h3 {
        text-align: center;
    }

    .tracking-form__group {
        max-width: 100%;
    }
}

/* Dodaj klasę dla wyświetlania nazw kurierów zamiast obrazków */
.courier-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
    display: block;
    margin-bottom: 8px;
}

/* Klasa do wyświetlania inicjałów zamiast zdjęć w opiniiach */
.author-initials {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}
/* Dodaj ten kod CSS do style.css */
.step__icon i {
    color: white; /* Zmiana koloru ikon na biały */
}

/* Możesz również dodać cień tekstu, aby ikony były jeszcze bardziej widoczne */
.step__icon i {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}