<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --primary-color: #4a8eaa;
  --secondary-color: #5cb5d7;
  --accent-color: #b897d8;
  --dark-color: #2d6b8d;
  --light-color: #e5f0f5;
  --text-color: #446a7c;
  --gradient-bg: linear-gradient(135deg, #40b1e5, #9e71c8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

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

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

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

.logo-icon {
  margin-right: 15px;
  height: 40px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
}

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

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

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

.nav-links a:hover {
  color: var(--primary-color);
}

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

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

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("./img/tlo.png") center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--light-color), transparent);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-block;
  background: var(--gradient-bg);
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 120, 215, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 120, 215, 0.4);
}

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

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

/* Services Section */
.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

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

.section-title p {
  color: var(--text-color);
  max-width: 700px;
  margin: 25px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  padding: 35px 0;
  text-align: center;
  background-color: rgba(0, 120, 215, 0.05);
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature-list {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.feature-icon {
  color: white;
  background: var(--gradient-bg);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(76, 177, 229, 0.3);
}

/* Portfolio Section */
.portfolio {
  background-color: var(--light-color);
  position: relative;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.comparison-item {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.comparison-item:hover {
  transform: translateY(-8px);
}

.comparison-images {
  display: flex;
  position: relative;
}

.comparison-before,
.comparison-after {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.comparison-before::after,
.comparison-after::after {
  content: "PRZED";
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 5px;
  font-weight: bold;
}

.comparison-after::after {
  content: "PO";
  background-color: var(--primary-color);
}

.comparison-line {
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: var(--accent-color);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.comparison-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.comparison-content {
  padding: 25px;
}

.comparison-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

/* Pricing Section */
.pricing {
  background-color: white;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.pricing-card {
  background-color: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: none;
  background: linear-gradient(
    to bottom right,
    rgba(0, 120, 215, 0.05),
    rgba(0, 120, 215, 0.1)
  );
  box-shadow: 0 10px 30px rgba(0, 120, 215, 0.15);
}

.pricing-card.featured::before {
  content: "Polecany";
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  color: white;
  padding: 8px 25px;
  font-size: 0.85rem;
  font-weight: bold;
  border-bottom-left-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  margin-bottom: 30px;
  position: relative;
}

.pricing-name {
  font-size: 1.7rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.pricing-price {
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
}

.pricing-price::before {
  content: "od";
  position: absolute;
  top: 0;
  left: -30px;
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 400;
}

.pricing-price span {
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 400;
}

.pricing-description {
  color: #777;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 28px;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--light-color);
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: white;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-card::before {
  content: '"';
  font-size: 6rem;
  color: rgba(0, 120, 215, 0.1);
  position: absolute;
  top: -15px;
  left: 25px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  position: relative;
  font-style: italic;
  margin-bottom: 25px;
  z-index: 1;
  color: #555;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--light-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.author-info p {
  font-size: 0.9rem;
  color: #777;
}

/* Contact Section */
.contact {
  background-color: white;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  display: flex;
  background-color: var(--light-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 20px;
  min-width: 40px;
  text-align: center;
}

.contact-card-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.contact-form {
  background-color: var(--light-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
  background-color: white;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 120, 215, 0.1);
  outline: none;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.file-upload {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background-color: white;
  border: 1px dashed var(--primary-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.file-upload-label:hover {
  background-color: rgba(0, 120, 215, 0.05);
}

.file-upload-icon {
  margin-right: 10px;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.file-upload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 70px 0 20px;
  position: relative;
}

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

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  color: #fff;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-bg);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #bbb;
  transition: all 0.3s;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.footer-links a:hover {
  color: white;
  padding-left: 20px;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-contact-icon {
  margin-right: 12px;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 3px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s;
  text-decoration: none;
}

.social-link:hover {
  background: var(--gradient-bg);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #bbb;
}

/* Responsive Design */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

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

  .about-image {
    order: -1;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

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

  .about-content h3 {
    font-size: 1.8rem;
  }
}

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

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

  .btn {
    padding: 12px 25px;
  }

  .contact-form {
    padding: 25px;
  }

  .comparison-images {
    flex-direction: column;
  }

  .comparison-before,
  .comparison-after {
    width: 100%;
  }

  .comparison-line {
    display: none;
  }
}
</pre></body></html>