.cta-row {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
}

:root {
  --bg: #0b1220;
  --bg-secondary: #0f172a;
  --panel: #0f172a;
  --panel-hover: #1a2332;
  --text: #e5e7eb;
  --text-secondary: #cbd5e1;
  --muted: #94a3b8;
  --brand: #34d399;
  --brand-hover: #10b981;
  --brand-700: #059669;
  --border: #1f2937;
  --border-light: #374151;
  --success: #22c55e;
  --error: #ef4444;
  --warning: #f59e0b;
  --shadow: rgba(0, 0, 0, 0.3);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, var(--bg-secondary) 0%, rgba(15, 23, 42, 0.98) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(52, 211, 153, 0.1);
  z-index: 1000;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  color: var(--brand);
  text-decoration: none;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  height: 50px;
  transition: all 0.3s ease;
  text-shadow: 0 2px 10px rgba(52, 211, 153, 0.3);
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 2px 20px rgba(52, 211, 153, 0.5);
}

.motto {
  display: none;
  color: var(--text-secondary);
  font-size: 14px;
  margin-left: 16px;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (min-width: 900px) {
  .motto {
    display: inline;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  height: 42px;
}

.nav-links a:hover {
  background: rgba(52, 211, 153, 0.1);
  color: var(--brand);
  transform: translateY(-1px);
}

.nav-links .btn-cta {
  background: var(--brand);
  color: #062e26;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(52, 211, 153, 0.3);
}

.nav-links .btn-cta:hover {
  background: var(--brand-hover);
  box-shadow: 0 6px 25px rgba(52, 211, 153, 0.4);
  transform: translateY(-2px);
}

main {
  padding-top: 70px;
  min-height: calc(100vh - 70px);
}

.hero {
  padding: 80px 0;
  background: radial-gradient(ellipse at top, rgba(52, 211, 153, 0.1), transparent),
              linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
  background: linear-gradient(135deg, #fff 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  color: var(--text-secondary);
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  line-height: 20px;
}

.btn-primary {
  background: var(--brand);
  color: #062e26;
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52, 211, 153, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-secondary:hover {
  background: var(--brand);
  color: #062e26;
  transform: translateY(-2px);
}

.btn-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
  color: #062e26;
  font-weight: 700;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52, 211, 153, 0.4);
}

.hero-stats {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 24px 0 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--border);
}

.hero-stats li {
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: 28px;
  color: var(--brand);
  font-weight: 700;
}

.hero-stats span {
  color: var(--text-secondary);
  font-size: 14px;
}

.hero-card {
  background: var(--panel);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 2px var(--shadow);
  cursor: pointer;
}

.hero-card h3 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 15px;
}

.hero-card li:last-child {
  border-bottom: none;
}

.trust {
  padding: 40px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  text-align: center;
}

.trust-item {
  padding: 12px 20px;
  background: var(--panel);
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.2s;
  cursor: pointer;
}

.trust-item:hover {
  background: var(--panel-hover);
  transform: translateY(-1px);
}

.section {
  padding: 40px 0;
}

.mt {
  margin-top: 16px;
}

.mb {
  margin-bottom: 32px;
}

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

.text-secondary {
  color: var(--text-secondary);
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-hover));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
  border-color: var(--brand);
}

.card-highlight {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.05), transparent);
  border: 2px solid var(--brand);
}

.card-negative {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.card-negative::before {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.card-negative:hover {
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
  border-color: #ef4444;
}

.card-negative h4 {
  color: #ef4444;
}

.card-positive {
  border-color: var(--brand);
  background: rgba(52, 211, 153, 0.05);
}

.card-positive h4 {
  color: var(--brand);
}

.list-plain {
  list-style: none;
  padding: 0;
}

.list-plain li {
  padding: 8px 0;
}

.card h3 {
  margin-bottom: 16px;
  color: var(--brand);
  font-size: 22px;
  font-weight: 600;
}

.card h4 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

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

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Package Tabs/Filters */
.package-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 32px 0;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  background: var(--panel);
  border: 2px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(52, 211, 153, 0.05);
}

.tab-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #062e26;
}

/* Package Section Title */
.package-section-title {
  margin-top: 60px;
  margin-bottom: 24px;
  color: var(--text);
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}

.package-section-title:first-of-type {
  margin-top: 40px;
}

/* Pricing Grid - 3 pakiety obok siebie */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 60px 0;
  align-items: stretch;
}

.pricing {
  background: var(--panel);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  min-height: 580px;
  overflow: visible;
}

/* Wyłącz wszystkie stare ::before */
.pricing::before {
  display: none;
}

.pricing:hover::before {
  display: none;
}

/* Środkowy pakiet (Standard) - wyróżniony ramką */
.pricing.recommended {
  border: 3px solid var(--brand);
  box-shadow: 0 0 30px rgba(52, 211, 153, 0.2);
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.03), transparent);
  position: relative;
  overflow: visible;
}

/* Poprawiony dymek - nie wystaje za ramkę */
.pricing.recommended::after {
  content: '⭐ Najpopularniejszy';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #062e26;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(52, 211, 153, 0.4);
  z-index: 10;
}

.pricing:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow);
  border-color: var(--brand);
}

.pricing.recommended:hover {
  box-shadow: 0 15px 40px rgba(52, 211, 153, 0.3);
  border-color: var(--brand-hover);
}

.pricing h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 600;
}

.pricing.recommended h3 {
  color: var(--brand);
  font-size: 26px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: var(--brand);
  margin: 20px 0;
}

.pricing.recommended .price {
  font-size: 40px;
}

.price small {
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
}

.price-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: -10px;
  margin-bottom: 20px;
}

/* Price Block */
.price-block {
  margin: 20px 0;
  padding: 16px;
  background: rgba(52, 211, 153, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.monthly-price {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 500;
}

.description {
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0;
  color: var(--text-secondary);
}

.features {
  list-style: none;
  margin: 30px 0;
  padding: 0;
  text-align: left;
  flex: 1;
}

.features li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(31, 41, 55, 0.3);
}

.features li:last-child {
  border-bottom: none;
}

.features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
  font-size: 16px;
}

.expandable-info {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-bottom: 12px;
}

.ideal-for {
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-bottom: 28px;
}

.ideal-for p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.ideal-for strong {
  color: var(--text);
  font-size: 14px;
}

.pricing .btn {
  width: 100%;
  margin-top: auto;
}

/* Hide/Show with filter */
.pricing-grid.hidden {
  display: none;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.addon {
  background: var(--panel);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid var(--border);
}

.addon:hover {
  background: var(--panel-hover);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.addon .icon {
  font-size: 24px;
  flex-shrink: 0;
}

.addon h4 {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.addon p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Comparison Title */
.comparison-title {
  margin-top: 48px;
  margin-bottom: 24px;
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.table-responsive {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 8px;
}

.compare {
  width: 100%;
  background: var(--panel);
  border-radius: 8px;
  overflow: hidden;
  border-collapse: collapse;
}

.compare th,
.compare td {
  padding: 12px;
  text-align: center;
  border: 1px solid var(--border);
}

.compare th {
  background: var(--bg-secondary);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}

.compare td {
  color: var(--text-secondary);
  font-size: 14px;
}

.compare .yes {
  color: var(--success);
  font-weight: 600;
}

.compare .no {
  color: var(--muted);
  opacity: 0.5;
}

/* Contact Form - Dark Theme */
.form.card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 32px;
}

.form.card::before {
  display: none;
}

.form label {
  display: block;
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--muted);
  font-style: italic;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.1);
  background: var(--bg-secondary);
}

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

.form .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 0;
}

.form .grid-2 label {
  margin-bottom: 16px;
}

.form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 16px;
}

.form select {
  cursor: pointer;
}

.form select option {
  background: var(--bg-secondary);
  color: var(--text);
  padding: 8px;
}

.form input:hover,
.form select:hover,
.form textarea:hover {
  border-color: var(--border-light);
}

.form input:disabled,
.form select:disabled,
.form textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Selected Package Card */
.card[style*="gradient"] {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), transparent);
  border: 2px solid var(--brand);
  border-left: 4px solid var(--brand);
  margin-bottom: 32px;
  cursor: default;
}

.card[style*="gradient"]::before {
  display: none;
}

.card[style*="gradient"]:hover {
  transform: none;
}

.card[style*="gradient"] p:first-child {
  font-size: 17px;
  margin-bottom: 8px;
}

.card[style*="gradient"] .small {
  font-size: 14px;
}

/* Flash Messages - Dark Theme */
.alert {
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  animation: slideDown 0.4s ease;
  border: 1px solid;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border-color: var(--success);
  color: var(--text);
}

.alert-success::before {
  content: "✓";
  font-size: 20px;
  font-weight: bold;
  color: var(--success);
  flex-shrink: 0;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: var(--error);
  color: var(--text);
}

.alert-error::before {
  content: "⚠";
  font-size: 20px;
  color: var(--error);
  flex-shrink: 0;
}

.alert-info {
  background: rgba(52, 211, 153, 0.1);
  border-color: var(--brand);
  color: var(--text);
}

.alert-info::before {
  content: "ℹ";
  font-size: 20px;
  color: var(--brand);
  flex-shrink: 0;
}

/* Contact Info Cards */
.contact-info {
  margin-top: 48px;
}

.contact-info .card {
  text-align: center;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.contact-info .card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
}

.contact-info .card h3 {
  margin-bottom: 16px;
  font-size: 20px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-info .card p {
  margin: 8px 0;
  color: var(--text-secondary);
}

.contact-info .card p strong {
  color: var(--text);
}

.contact-info h2 {
  margin-bottom: 24px;
  color: var(--text);
}

.flashes {
  position: fixed;
  top: 70px;
  right: 16px;
  z-index: 2000;
  max-width: 360px;
}

.flash {
  background: var(--panel);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px var(--shadow);
  animation: slideIn 0.3s ease;
  border-left: 3px solid var(--brand);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

.flash.success {
  border-left-color: var(--success);
}

.flash.error {
  border-left-color: var(--error);
}

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 48px;
    align-items: start;
    justify-items: center;
  }
}

.site-footer h4 {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  padding: 4px 0;
}

.site-footer .footer-grid > div {
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
}

.footer-links li {
  padding: 0;
}

.site-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--brand);
}

.site-footer p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.center {
  text-align: center;
  padding: 48px 0;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

/* CTA Wide - dopasowana szerokość do contentu */
.cta-wide {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), rgba(16, 185, 129, 0.05));
  border: 2px solid var(--brand);
  border-radius: 16px;
  padding: 56px 32px;
  text-align: center;
  margin: 0 0 56px 0;
  position: relative;
  overflow: hidden;
}

.cta-wide::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1), transparent);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-wide h2 {
  font-size: 36px;
  margin-bottom: 12px;
  color: var(--text);
  position: relative;
}

.cta-wide p {
  font-size: 18px;
  margin-bottom: 28px;
  color: var(--text-secondary);
  position: relative;
}

.cta-wide .btn {
  position: relative;
  z-index: 1;
}

.blog-card,
.portfolio-card {
  background: var(--panel);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px var(--shadow);
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover,
.portfolio-card:hover {
  box-shadow: 0 4px 12px var(--shadow);
  transform: translateY(-2px);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.service-card {
  text-align: center;
  padding: 32px 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  margin: 16px 0;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
}

/* Mobile Navigation */
@media (min-width: 901px) {
  .nav-toggle {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 56px;
    height: 40px;
    border-radius: 12px;
    background: transparent;
    border: 2px solid var(--brand);
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--panel) 0%, rgba(15, 23, 42, 0.98) 100%);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 16px;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--brand);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav-toggle .bar {
    display: block;
    width: 40px;
    height: 3px;
    background: var(--brand);
    border-radius: 3px;
    margin: 4px 0;
  }

  .nav-toggle:hover {
    background: rgba(52, 211, 153, 0.08);
    border-color: var(--brand-hover);
  }

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

  .nav-links a {
    width: 100%;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(15, 23, 42, 0.5);
  }
  
  .nav-links a:hover {
    background: rgba(52, 211, 153, 0.15);
    border-color: var(--brand);
  }
}

/* Responsive - Tablets */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .pricing {
    min-height: 600px;
  }
}

/* Responsive - Mobile and Form */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .pricing {
    min-height: auto;
  }
  
  .pricing.recommended::after {
    font-size: 10px;
    padding: 4px 12px;
    top: -14px;
  }
  
  .package-section-title {
    font-size: 22px;
  }
  
  .form .grid-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form.card {
    padding: 24px 20px;
  }
  
  .card[style*="gradient"] {
    padding: 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

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

  .cta-row {
    flex-direction: column;
  }

  .cta-row .btn {
    width: 100%;
  }
  
  .site-header {
    height: 60px;
  }
  
  .nav {
    height: 60px;
  }
  
  .logo {
    font-size: 28px;
  }
  
  main {
    padding-top: 60px;
  }
  
  .nav-links {
    top: 60px;
  }
  
  .package-tabs {
    flex-direction: column;
  }
  
  .tab-btn {
    width: 100%;
  }
  
  .cta-wide {
    padding: 40px 24px;
  }
  
  .cta-wide h2 {
    font-size: 28px;
  }
  
  .cta-wide p {
    font-size: 16px;
  }
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
/* Tech Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.tech-card {
  padding: 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.tech-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
}

.tech-name {
  margin: 8px 0;
}

.tech-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid var(--brand);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.3px;
}

.tech-alternative {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.tech-benefit {
  font-size: 13px;
  color: var(--success);
  font-weight: 500;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
/* Cost Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 32px 0;
}

.cost-comparison {
  width: 100%;
  background: var(--bg);
  border-radius: 8px;
  border-collapse: collapse;
  font-size: 14px;
}

.cost-comparison thead {
  background: var(--bg-secondary);
}

.cost-comparison th {
  padding: 16px 12px;
  text-align: left;
  color: var(--text);
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}

.cost-comparison td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.cost-comparison tbody tr:hover {
  background: rgba(52, 211, 153, 0.05);
}

.cost-negative {
  color: var(--error);
  font-weight: 600;
  font-size: 15px;
}

.cost-positive {
  color: var(--success);
  font-weight: 700;
  font-size: 16px;
}

.total-row {
  background: var(--panel-hover);
  border-top: 2px solid var(--border);
}

.total-row td {
  padding: 16px 12px;
  font-size: 16px;
}

.cost-total-negative {
  color: var(--error);
  font-weight: 700;
  font-size: 18px;
}

.cost-total-positive {
  color: var(--success);
  font-weight: 700;
  font-size: 20px;
}
/* Savings CTA Section */
.savings-cta {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), rgba(16, 185, 129, 0.05));
  border: 2px solid var(--brand);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.savings-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.08), transparent);
  animation: pulse 4s ease-in-out infinite;
}

.savings-cta h2 {
  color: var(--text);
  position: relative;
  z-index: 1;
}

.savings-cta p {
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.savings-cta .btn {
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3);
}

.savings-cta .btn:hover {
  box-shadow: 0 6px 30px rgba(52, 211, 153, 0.5);
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .savings-cta {
    padding: 32px 24px;
  }
  
  .savings-cta h2 {
    font-size: 24px;
  }
  
  .savings-cta p {
    font-size: 16px;
  }
  
  .savings-cta .btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}
/* Savings Banner - zamiast trust section */
.savings-banner {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(16, 185, 129, 0.08));
  border: 2px solid var(--brand);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.savings-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1), transparent);
  animation: pulse 4s ease-in-out infinite;
}

.savings-banner h2 {
  font-size: 32px;
  color: var(--text);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.savings-banner p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.savings-banner p strong {
  color: var(--brand);
  font-weight: 700;
  font-size: 20px;
}

.savings-banner .btn {
  position: relative;
  z-index: 1;
  font-size: 18px;
  padding: 14px 32px;
  box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3);
}

.savings-banner .btn:hover {
  box-shadow: 0 6px 30px rgba(52, 211, 153, 0.5);
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .savings-banner {
    padding: 32px 24px;
  }
  
  .savings-banner h2 {
    font-size: 24px;
  }
  
  .savings-banner p {
    font-size: 16px;
  }
  
  .savings-banner p strong {
    font-size: 18px;
  }
  
  .savings-banner .btn {
    font-size: 16px;
    padding: 12px 24px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cost-comparison {
    font-size: 12px;
  }
  
  .cost-comparison th,
  .cost-comparison td {
    padding: 8px 6px;
  }
  
  .cost-comparison th:nth-child(2),
  .cost-comparison td:nth-child(2) {
    display: none;
  }
}
@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-color-scheme: light) {
  /* Light theme - do implementacji później */
}