:root {
  --primary-color: #2563EB; 
  --primary-dark: #1E40AF; 
  --primary-light: #60A5FA;
  --secondary-color: #10B981; 
  --dark-color: #111827;
  --light-color: #F9FAFB;
  --light-gray: #F3F4F6;
  --medium-gray: #9CA3AF;
  --box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--light-color);
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-family: 'Open Sans', sans-serif;
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #4B5563;
  font-size: 1.2rem;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  box-shadow: var(--box-shadow);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

header {
  background-color: rgba(17, 24, 39, 0.9);
  padding: 15px 50px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

header.scrolled {
  padding: 10px 50px;
  background-color: rgba(17, 24, 39, 0.98);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  color: var(--light-color);
  font-size: 24px;
  font-weight: bold;
  z-index: 1001;
  transition: var(--transition);
}

.logo span {
  color: var(--primary-light);
  font-weight: 600;
}

.logo:hover {
  color: var(--primary-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  background: none;
  border: none;
  transition: var(--transition);
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: var(--light-color);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background-color: var(--primary-light);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background-color: var(--primary-light);
}

.nav-links {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links li {
  margin-left: 30px;
  position: relative;
}

.nav-links a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  font-size: 1.1rem;
  position: relative;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-light);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-light);
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

.nav-links a i {
  font-size: 0.9rem;
}

.process h2,
.services h2,
.features h2,
.contact h2,
.about h2,
.pricing h2 {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.process h2::after,
.services h2::after,
.features h2::after,
.contact h2::after,
.about h2::after,
.pricing h2::after {
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
}

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--dark-color);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.hero-content {
  z-index: 2;
  color: var(--light-color);
  max-width: 800px;
  padding: 20px;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: fade-in 1s ease-out forwards;
}

.hero h1 span {
  color: var(--primary-light);
  display: inline-block;
}

@keyframes fade-in {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: slide-up 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: slide-up 1s ease 0.6s forwards;
  opacity: 0;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(17, 24, 39, 0.8), rgba(37, 99, 235, 0.4));
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-color), transparent 70%);
  top: 10%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--secondary-color), transparent 70%);
  bottom: 15%;
  right: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--primary-light), transparent 70%);
  top: 40%;
  right: 20%;
  animation: float 7s ease-in-out infinite 1s;
}

.cta-button {
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: var(--transition);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
  overflow: hidden;
  position: relative;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid var(--light-color);
  color: var(--light-color);
  box-shadow: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.cta-button.secondary:hover {
  background-color: var(--light-color);
  color: var(--primary-dark);
}

.about {
  padding: 120px 20px;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
  z-index: 0;
}

.about::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent 70%);
  z-index: 0;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.about-text {
  flex: 1;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.about h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.about p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #4B5563;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--light-gray);
  padding: 10px 15px;
  border-radius: 50px;
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
  background-color: white;
}

.feature i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.feature span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-color);
}

.about-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  position: relative;
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, rgba(37, 99, 235, 0.1), transparent);
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 24, 39, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.overlay-content {
  color: white;
  text-align: center;
  transform: translateY(20px);
  transition: var(--transition);
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--primary-light);
}

.overlay-content span {
  font-size: 1.5rem;
  font-weight: bold;
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.about-image:hover .overlay-content {
  transform: translateY(0);
}

.services {
  padding: 120px 20px;
  text-align: center;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.services h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.services > p {
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #4B5563;
}

.service-boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-box {
  background-color: white;
  border-radius: 20px;
  padding: 40px 30px;
  width: 300px;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
  z-index: -1;
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.service-box i {
  font-size: 2rem;
  color: white;
  transition: var(--transition);
}

.service-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-box p {
  font-size: 1rem;
  color: #4B5563;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
  width: 100%;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #4B5563;
  transition: var(--transition);
}

.service-features li i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.service-features li:hover {
  transform: translateX(5px);
  color: var(--dark-color);
}

.service-button {
  background-color: var(--light-gray);
  color: var(--dark-color);
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

.service-box:hover::before {
  height: 10px;
}

.service-box:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.service-button:hover {
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.contact {
  padding: 120px 20px;
  background-color: white;
  position: relative;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  text-align: center;
  position: relative;
  display: inline-block;
}

.contact h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.contact-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #4B5563;
  max-width: 800px;
  margin: 0 auto 50px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.08);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 280px;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
  z-index: -1;
}

.contact-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}

.contact-card:hover::before {
  width: 100%;
  opacity: 0.05;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(120deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
}

.contact-icon i {
  font-size: 32px;
  color: white;
  transition: var(--transition);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(10deg);
}

.contact-card h4 {
  color: var(--dark-color);
  font-size: 1.4rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.contact-card p {
  color: #4B5563;
  margin: 10px 0;
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-card a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  position: relative;
}

.contact-card a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: var(--transition);
}

.contact-card a:hover {
  color: var(--primary-dark);
}

.contact-card a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.contact-cta {
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--dark-color), var(--primary-dark));
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(17, 24, 39, 0.2);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-cta::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="%23ffffff" fill-opacity="0.05" fill-rule="evenodd"/%3E%3C/svg%3E');
  z-index: 0;
}

.contact-cta h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

footer {
  background: linear-gradient(135deg, var(--dark-color), #2C3E50);
  color: var(--light-color);
  padding: 80px 20px 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.footer-section p {
  margin-bottom: 10px;
  color: var(--medium-gray);
}

.footer-section p a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section p a:hover {
  color: white;
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--medium-gray);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  position: relative;
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--medium-gray);
}

.pricing {
  padding: 120px 20px;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
  z-index: 0;
}

.pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.pricing h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-box {
  background-color: white;
  border-radius: 20px;
  padding: 50px 40px;
  width: 320px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.08);
  z-index: 1;
  overflow: hidden;
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  opacity: 0.03;
  transition: var(--transition);
  z-index: -1;
}

.pricing-box.featured {
  background-color: var(--dark-color);
  color: var(--light-color);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  z-index: 2;
}

.featured-label {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.pricing-box h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.pricing-box h3::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: 0 auto;
  width: 50px;
  border-radius: 2px;
}

.monthly {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-top: 5px;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 30px 0 10px;
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.featured .price {
  background: white;
  -webkit-background-clip: text;
  background-clip: text;
}

.pricing-box ul {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.pricing-box ul li {
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.pricing-box ul li:hover {
  transform: translateX(5px);
}

.pricing-box ul li i {
  color: var(--primary-color);
}

.featured ul li i {
  color: var(--primary-light);
}

.pricing-button {
  display: inline-block;
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.featured .pricing-button {
  background: white;
  color: var(--dark-color);
}

.pricing-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.25);
}

.pricing-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.12);
}

.pricing-box:hover::before {
  height: 100%;
}

.featured:hover {
  transform: scale(1.08) translateY(-15px);
}

.process {
  padding: 120px 20px;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.process::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent 70%);
  z-index: 0;
}

.process h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.process h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}

.process-container::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  z-index: 0;
  opacity: 0.3;
}

.process-step {
  flex: 1;
  min-width: 250px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-icon {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: var(--transition);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
  border: 5px solid rgba(37, 99, 235, 0.1);
  position: relative;
}

.process-icon::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  opacity: 0.1;
  transition: var(--transition);
}

.process-icon i {
  font-size: 40px;
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: var(--transition);
}

.process-step:hover .process-icon {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.process-step:hover .process-icon::before {
  opacity: 0.15;
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.process-step p {
  color: #4B5563;
  font-size: 1.1rem;
}

.features {
  padding: 120px 20px;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
  z-index: 0;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.features h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.feature-box {
  text-align: center;
  padding: 40px 30px;
  background-color: var(--light-gray);
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0.05;
  transition: var(--transition);
  z-index: -1;
}

.feature-box i {
  font-size: 50px;
  margin-bottom: 25px;
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: var(--transition);
}

.feature-box h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.feature-box h3::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: 0 auto;
  width: 0;
  transition: var(--transition);
}

.feature-box p {
  color: #4B5563;
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
  background-color: white;
}

.feature-box:hover::before {
  height: 100%;
}

.feature-box:hover i {
  transform: scale(1.1) rotate(5deg);
}

.feature-box:hover h3::after {
  width: 50px;
}

.counter-section {
  background: linear-gradient(rgba(17, 24, 39, 0.8), rgba(37, 99, 235, 0.8)), url('wroclaw-strony-internetowe.webp');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.counter-section::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="%23ffffff" fill-opacity="0.1" fill-rule="evenodd"/%3E%3C/svg%3E');
  z-index: 0;
}

.counter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.counter-item {
  padding: 40px;
  flex: 1;
  min-width: 250px;
  margin: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.counter-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.15);
}

.counter-value {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(120deg, white, var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.counter-title {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
}

.portfolio {
  padding: 120px 20px;
  text-align: center;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.portfolio h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.portfolio h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.portfolio > p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #4B5563;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
  background-color: #fff;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.portfolio-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-content {
  padding: 20px;
  text-align: left;
}

.portfolio-category {
  display: inline-block;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .8rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.portfolio-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
  font-weight: 700;
}

.portfolio-desc {
  color: #4B5563;
  margin-bottom: 20px;
  font-size: .95rem;
  line-height: 1.5;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.8), rgba(37, 99, 235, 0.5));
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: var(--transition);
  padding: 20px;
}

.portfolio-item:hover .overlay-content {
  transform: translateY(0);
}

.overlay-title {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.overlay-category {
  color: var(--primary-light);
  margin-bottom: 15px;
  font-size: 1rem;
}

.view-project {
  display: inline-block;
  background-color: #fff;
  color: var(--dark-color);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  font-size: .9rem;
}

.view-project:hover {
  background-color: var(--primary-light);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-cta {
  padding: 60px 20px;
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  color: #fff;
  text-align: center;
}

.portfolio-cta h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.portfolio-cta p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  opacity: .9;
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  
  .about-features {
    justify-content: center;
  }
  
  .about h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .process-container::before {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: rgba(17, 24, 39, 0.98);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    justify-content: center;
    padding: 80px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s forwards;
  }
  
  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }
  
  .nav-links.active li:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .nav-links.active li:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .nav-links.active li:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  .nav-links.active li:nth-child(4) {
    animation-delay: 0.4s;
  }
  
  .nav-links.active li:nth-child(5) {
    animation-delay: 0.5s;
  }
  
  .nav-links a {
    font-size: 1.5rem;
    padding: 20px 30px;
    border-radius: 10px;
    margin: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .nav-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    left: 0;
    top: 0;
    border-radius: 10px;
    transition: width 0.4s ease;
    z-index: -1;
    opacity: 0.2;
  }
  
  .nav-links a:hover::before,
  .nav-links a.active::before {
    width: 100%;
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .nav-links a i {
    font-size: 1.3rem;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  
  header.scrolled {
    padding: 10px 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .service-box {
    width: 100%;
    max-width: 400px;
  }

  .contact h2,
  .about h2,
  .services h2,
  .process h2,
  .features h2,
  .portfolio h2,
  .pricing h2 {
    font-size: 2.2rem;
  }
  
  .contact-subtitle,
  .services > p,
  .section-description {
    font-size: 1.1rem;
  }
  
  .contact-cta {
    padding: 40px 30px;
  }
  
  .contact-cta h3 {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .portfolio-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
  
  .about-image {
    transform: none;
  }
  
  .service-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .service-box i {
    font-size: 1.8rem;
  }
  
  .contact-icon {
    width: 70px;
    height: 70px;
  }
  
  .contact-icon i {
    font-size: 28px;
  }
  
  .counter-value {
    font-size: 3rem;
  }
  
  .counter-item {
    padding: 30px 20px;
  }
  
  .process-icon {
    width: 80px;
    height: 80px;
  }
  
  .process-icon i {
    font-size: 30px;
  }

  .portfolio-container {
    grid-template-columns: 1fr;
  }

  .portfolio h2 {
    font-size: 2rem;
  }

  .portfolio-cta h3 {
    font-size: 1.8rem;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 15px 20px;
    margin: 8px 15px;
  }
  
  .nav-links a i {
    font-size: 1.1rem;
  }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes slide-up {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.typing-effect {
  visibility: visible; 
}

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 0.8s ease-out;
}

@keyframes ripple {
  to {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}