: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;
}

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: 2;
  transition: var(--transition);
}

.logo span {
  color: var(--primary-light);
  font-weight: 600;
}

.logo:hover {
  color: var(--primary-light);
}

.nav-links {
  list-style-type: none;
  display: flex;
  align-items: center;
}

.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;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 2;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--light-color);
  margin: 5px 0;
  transition: var(--transition);
}

.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);
}

.services-more {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.services-more .service-box {
  width: 400px;
}

.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 {
  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-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  color: var(--light-color);
  font-size: 1.2rem;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: var(--primary-light);
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.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::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -3px;
  left: 0;
  background-color: var(--primary-light);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--medium-gray);
}

.footer-bottom a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: white;
  text-decoration: underline;
}

.fade-in-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.lazy-load {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy-load.loaded {
  opacity: 1;
}

.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;
}

.contact-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--dark-color), var(--primary-dark));
  text-align: center;
  color: var(--light-color);
  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 h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-cta .cta-button {
  padding: 15px 40px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.contact-cta .cta-button i {
  font-size: 1.2rem;
}

.contact-page {
  padding: 120px 20px;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.contact-page::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
  z-index: 0;
}

.contact-page h1, 
.contact-page h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: var(--dark-color);
  text-align: center;
  position: relative;
}

.contact-page h1::after,
.contact-page h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.contact-page .contact-container {
  max-width: 1200px;
  margin: 50px auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-form-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background-color: var(--light-gray);
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.08);
  position: relative;
  z-index: 1;
}

.contact-form-section h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.contact-form-section p {
  margin-bottom: 30px;
  color: #4B5563;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 250px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}

.form-group .required {
  color: #EF4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.form-checkbox label {
  flex: 1;
  font-size: 0.9rem;
}

.submit-button {
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: auto;
  align-self: flex-start;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.25);
}

.form-group.error-group input,
.form-group.error-group select,
.form-group.error-group textarea {
  border-color: #EF4444;
}

.form-success {
  text-align: center;
  padding: 40px;
}

.form-success i {
  font-size: 4rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 50px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
  position: relative;
  z-index: 1;
  height: 450px;
}

.map {
  width: 100%;
  height: 100%;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
  background-color: var(--light-gray);
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.08);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-text::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);
}

.contact-text:hover::before {
  width: 100%;
  opacity: 0.05;
}

.contact-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.contact-text h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.contact-text p {
  margin-bottom: 20px;
  color: #4B5563;
  font-size: 1.1rem;
}

.contact-text .btn {
  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);
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-text .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
}

.contact-faq {
  max-width: 800px;
  margin: 60px auto;
}

.contact-faq h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--dark-color);
  text-align: center;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.08);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.12);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: white;
  transition: var(--transition);
}

.faq-question h4 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin: 0;
  transition: var(--transition);
}

.faq-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  color: #4B5563;
  margin: 0 0 20px;
}

.faq-item.active .faq-question {
  background-color: rgba(37, 99, 235, 0.05);
}

.faq-item.active .faq-question h4 {
  color: var(--primary-color);
}

.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-container {
  max-width: 1200px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.portfolio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.08);
  transition: var(--transition);
}

.portfolio-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.9) 0%, rgba(37, 99, 235, 0.7) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: var(--transition);
}

.overlay-content h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.portfolio-btn {
  display: inline-block;
  background-color: white;
  color: var(--dark-color);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.portfolio-btn i {
  font-size: 0.8rem;
}

.portfolio-btn:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .overlay-content {
  transform: translateY(0);
}

.counter-section {
  background: linear-gradient(rgba(17, 24, 39, 0.8), rgba(37, 99, 235, 0.8)), url('wroclaw-strony-internetowe.jpg');
  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;
}

@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%);
  }
  
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-container::before {
    display: none;
  }
  
  .contact-form-section {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  
  header.scrolled {
    padding: 10px 20px;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, var(--dark-color), rgba(37, 99, 235, 0.95));
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
    opacity: 0;
  }

  .nav-links li.fade {
    opacity: 1;
    transition: opacity 0.5s ease 0.3s;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -5px);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .service-box,
  .services-more .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-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-cta {
    padding: 40px 30px;
  }
  
  .contact-cta h3 {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .contact-page .contact-container {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-page .map {
    height: 350px;
  }
}

@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;
  }
  
  .faq-question h4 {
    font-size: 1rem;
  }
  
  .contact-form-section h3,
  .contact-text h3 {
    font-size: 1.6rem;
  }
  
  .submit-button {
    width: 100%;
  }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4); }
  100% { transform: scale(1); box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes scale-in {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes slide-up {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fade-in-right {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes rotate-in {
  0% { transform: rotate(-180deg) scale(0); opacity: 0; }
  100% { transform: rotate(0) scale(1); opacity: 1; }
}

.pulse {
  animation: pulse 2s infinite;
}

.float {
  animation: float 6s ease-in-out infinite;
}

.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;
  }
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.text-gradient {
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }

.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15); }

.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }