@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary-blue: #1e40af;
  --secondary-blue: #3b82f6;
  --accent-orange: #f97316;
  --accent-teal: #14b8a6;
  --accent-purple: #8b5cf6;
  --light-gray: #f3f4f6;
  --dark-gray: #374151;
  --text-dark: #111827;
  --text-light: #f9fafb;
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --card-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.18);
}

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

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Global animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounceIn {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Enhanced transition classes */
.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.bounce-in {
  animation: bounceIn 0.8s ease-out forwards;
}

.pulse-effect {
  animation: pulse 2s infinite;
}

.float-effect {
  animation: float 3s ease-in-out infinite;
}

.shimmer-effect {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 2s infinite;
}

/* Enhanced button effects */
.btn-hover-scale {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hover-scale:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--card-shadow-hover);
}

.btn-hover-tilt {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hover-tilt:hover {
  transform: translateY(-2px) rotate(2deg);
  box-shadow: var(--card-shadow-hover);
}

/* Gradient backgrounds */
.gradient-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
}

.gradient-accent {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-teal));
}

.gradient-rainbow {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-teal), var(--accent-purple));
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}


[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
  color: inherit;
}


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


.header {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-light);
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-orange);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
}


.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.95);
  z-index: 1001;
}

.mobile-menu.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-content {
  text-align: center;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.mobile-nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
  color: var(--accent-orange);
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 32px;
  cursor: pointer;
}


.hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-main {
  min-height: 80vh;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.particle-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.particle-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.particle-4 {
  width: 40px;
  height: 40px;
  top: 40%;
  right: 10%;
  animation-delay: 3s;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  max-width: 600px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

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

.hero-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  text-align: center;
  min-width: 160px;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.hero-btn:hover::before {
  width: 300px;
  height: 300px;
  opacity: 0;
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), #ea580c);
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, #ea580c, #d9480f);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.hero-btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border-color: var(--text-light);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: var(--accent-orange);
  color: var(--text-light);
  border-color: var(--text-light);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}


.section {
  padding: 80px 0;
  position: relative;
}

.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--text-dark), var(--dark-gray));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--dark-gray);
  margin-bottom: 48px;
  opacity: 0.9;
}


.features {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(59,130,246,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(249,115,22,0.1)"/><circle cx="40" cy="80" r="0.8" fill="rgba(20,184,166,0.1)"/></svg>');
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal), var(--accent-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(0, 0, 0, 0.05);
}

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

.feature-card:nth-child(1) {
  animation: slideInLeft 0.8s ease-out 0.1s forwards;
}

.feature-card:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.feature-card:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.feature-card:nth-child(4) {
  animation: slideInRight 0.8s ease-out 0.4s forwards;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-description {
  color: var(--dark-gray);
}


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

.service-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(0, 0, 0, 0.05);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:nth-child(odd) {
  animation: slideInLeft 0.8s ease-out forwards;
}

.service-card:nth-child(even) {
  animation: slideInRight 0.8s ease-out forwards;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image {
  transform: scale(1.1) rotate(1deg);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 24px;
}

.service-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-description {
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.service-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 16px;
}

.service-link {
  color: var(--secondary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--primary-blue);
}


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

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

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 4px solid var(--light-gray);
}

.team-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.team-position {
  color: var(--accent-orange);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-bio {
  color: var(--dark-gray);
  font-size: 14px;
}


.testimonials {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(59,130,246,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249,115,22,0.05) 0%, transparent 50%);
  animation: float 10s ease-in-out infinite;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-orange), var(--accent-teal));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover::before {
  transform: scaleY(1);
}

.testimonial-card:nth-child(1) {
  animation: bounceIn 0.8s ease-out 0.1s forwards;
}

.testimonial-card:nth-child(2) {
  animation: bounceIn 0.8s ease-out 0.2s forwards;
}

.testimonial-card:nth-child(3) {
  animation: bounceIn 0.8s ease-out 0.3s forwards;
}

.testimonial-text {
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-dark);
}


.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.contact-item {
  text-align: center;
  padding: 32px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.contact-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(0, 0, 0, 0.05);
}

.contact-item:hover::before {
  transform: scaleX(1);
}

.contact-item:nth-child(1) {
  animation: slideInLeft 0.8s ease-out 0.1s forwards;
}

.contact-item:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.contact-item:nth-child(3) {
  animation: slideInRight 0.8s ease-out 0.3s forwards;
}

.contact-icon {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--accent-orange);
}

.contact-label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-value {
  color: var(--dark-gray);
}

.contact-form {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.1s forwards;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal), var(--accent-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.contact-form:hover::before {
  transform: scaleX(1);
}

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

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

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--secondary-blue);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.submit-btn {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-teal));
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
  opacity: 0;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #ea580c, #11a899);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}


.footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 48px 0 24px;
}

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

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

.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

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

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

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #374151;
  font-size: 14px;
  color: #9ca3af;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.92) 100%);
  color: white;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1002;
  flex-wrap: wrap;
  gap: 20px;
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  animation: slideInCookie 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInCookie {
  to {
    transform: translateY(0);
  }
}

.cookie-consent-banner.cookie-hidden {
  transform: translateY(100%);
  animation: slideOutCookie 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideOutCookie {
  to {
    transform: translateY(100%);
  }
}

.cookie-icon {
  font-size: 20px;
  margin-right: 8px;
  animation: float 3s ease-in-out infinite;
}

.cookie-content {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-text {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.95;
  display: flex;
  align-items: center;
}

.cookie-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cookie-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.cookie-links a:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.cookie-btn-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.cookie-btn:hover::before {
  width: 300px;
  height: 300px;
  opacity: 0;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--accent-orange), #ea580c);
  color: white;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #ea580c, #d9480f);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.cookie-btn-decline {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cookie-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cookie-close:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}


@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .burger-menu {
    display: block;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .cookie-consent-banner {
    padding: 16px 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    order: 1;
  }
  
  .cookie-btn-wrapper {
    order: 2;
  }
  
  .cookie-links {
    justify-content: center;
  }
  
  .cookie-links a {
    font-size: 13px;
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}


.cookie-hidden {
   display: none !important;
}

/* Enhanced content styling for service pages */
.content-section {
   margin-bottom: 60px;
   position: relative;
}

.content-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 60px;
   height: 4px;
   background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal));
   border-radius: 2px;
   opacity: 0.8;
}

.content-card {
   background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
   border-radius: 20px;
   padding: 32px;
   box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
   border: 1px solid rgba(0, 0, 0, 0.03);
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   position: relative;
   overflow: hidden;
}

.content-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal), var(--accent-purple));
   transform: scaleX(0);
   transform-origin: left;
   transition: transform 0.6s ease;
}

.content-card:hover {
   transform: translateY(-8px) scale(1.01);
   box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
   border-color: rgba(0, 0, 0, 0.05);
}

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

.service-highlight {
   background: linear-gradient(135deg, #fff8f0 0%, #f0fdf4 100%);
   border-radius: 16px;
   padding: 24px;
   margin: 20px 0;
   border-left: 4px solid var(--accent-orange);
}

.service-comparison {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 20px;
   margin: 30px 0;
}

.comparison-item {
   background: white;
   padding: 20px;
   border-radius: 12px;
   box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
   text-align: center;
   transition: all 0.3s ease;
}

.comparison-item:hover {
   transform: translateY(-4px);
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.comparison-icon {
   font-size: 32px;
   margin-bottom: 12px;
   display: block;
}

.comparison-title {
   font-weight: 600;
   color: var(--text-dark);
   margin-bottom: 8px;
}

.comparison-desc {
   font-size: 14px;
   color: var(--dark-gray);
   line-height: 1.5;
}

.process-step {
   display: flex;
   align-items: flex-start;
   margin-bottom: 32px;
   position: relative;
}

.process-step::before {
   content: '';
   position: absolute;
   left: 20px;
   top: 40px;
   bottom: -16px;
   width: 2px;
   background: linear-gradient(to bottom, var(--accent-orange), transparent);
   z-index: 1;
}

.process-step:last-child::before {
   display: none;
}

.process-step-number {
   background: linear-gradient(135deg, var(--accent-orange), var(--accent-teal));
   color: white;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 16px;
   flex-shrink: 0;
   position: relative;
   z-index: 2;
   box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.process-step-content {
   margin-left: 24px;
   flex: 1;
}

.process-step-title {
   font-size: 20px;
   font-weight: 600;
   color: var(--text-dark);
   margin-bottom: 8px;
}

.process-step-desc {
   color: var(--dark-gray);
   line-height: 1.6;
}

.service-list {
   list-style: none;
   padding: 0;
   margin: 20px 0;
}

.service-list li {
   padding: 12px 0;
   border-bottom: 1px solid rgba(0, 0, 0, 0.05);
   display: flex;
   align-items: center;
}

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

.service-list li::before {
   content: '✓';
   color: var(--accent-orange);
   font-weight: 700;
   margin-right: 12px;
   font-size: 14px;
}

.service-list li strong {
   color: var(--text-dark);
   font-weight: 600;
}

.testimonial-section {
   background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
   border-radius: 20px;
   padding: 40px;
   margin: 40px 0;
   position: relative;
   overflow: hidden;
}

.testimonial-section::before {
   content: '';
   position: absolute;
   top: -50%;
   left: -50%;
   width: 200%;
   height: 200%;
   background: radial-gradient(circle, rgba(59,130,246,0.03) 0%, transparent 70%);
   animation: float 8s ease-in-out infinite;
}

.testimonial-quote {
   font-style: italic;
   font-size: 18px;
   line-height: 1.7;
   color: var(--dark-gray);
   margin-bottom: 20px;
   position: relative;
   padding-left: 20px;
}

.testimonial-quote::before {
   content: '"';
   position: absolute;
   left: 0;
   font-size: 32px;
   color: var(--accent-orange);
   opacity: 0.6;
}

.testimonial-author {
   font-weight: 600;
   color: var(--text-dark);
   text-align: right;
}

.pricing-card {
   background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
   border-radius: 16px;
   padding: 24px;
   text-align: center;
   box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
   border: 2px solid transparent;
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   position: relative;
   overflow: hidden;
}

.pricing-card.featured {
   border-color: var(--accent-orange);
   transform: scale(1.05);
   box-shadow: 0 16px 48px rgba(249, 115, 22, 0.15);
}

.pricing-card.featured::before {
   content: 'Рекомендуем';
   position: absolute;
   top: -10px;
   right: -40px;
   background: var(--accent-orange);
   color: white;
   padding: 4px 20px;
   font-size: 12px;
   font-weight: 600;
   transform: rotate(45deg);
   box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.pricing-title {
   font-size: 20px;
   font-weight: 600;
   color: var(--text-dark);
   margin-bottom: 12px;
}

.pricing-amount {
   font-size: 32px;
   font-weight: 700;
   color: var(--accent-orange);
   margin-bottom: 16px;
}

.pricing-features {
   list-style: none;
   padding: 0;
   margin: 20px 0;
   text-align: left;
}

.pricing-features li {
   padding: 8px 0;
   color: var(--dark-gray);
   border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.pricing-features li::before {
   content: '✓';
   color: var(--accent-orange);
   font-weight: 700;
   margin-right: 8px;
}

.pricing-button {
   background: linear-gradient(135deg, var(--accent-orange), #ea580c);
   color: white;
   border: none;
   padding: 12px 24px;
   border-radius: 8px;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s ease;
   display: inline-block;
}

.pricing-button:hover {
   background: linear-gradient(135deg, #ea580c, #d9480f);
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

/* Enhanced typography */
.display-title {
   font-size: 48px;
   font-weight: 700;
   background: linear-gradient(135deg, var(--text-dark), var(--dark-gray));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   line-height: 1.2;
   margin-bottom: 16px;
}

.section-intro {
   font-size: 18px;
   color: var(--dark-gray);
   line-height: 1.7;
   max-width: 700px;
   margin: 0 auto 40px;
   text-align: center;
}

/* Animation enhancements */
@keyframes slideInUp {
   from {
     opacity: 0;
     transform: translateY(40px);
   }
   to {
     opacity: 1;
     transform: translateY(0);
   }
}

.slide-in-up {
   animation: slideInUp 0.8s ease-out forwards;
}

@keyframes fadeInLeft {
   from {
     opacity: 0;
     transform: translateX(-30px);
   }
   to {
     opacity: 1;
     transform: translateX(0);
   }
}

.fade-in-left {
   animation: fadeInLeft 0.8s ease-out forwards;
}

@keyframes fadeInRight {
   from {
     opacity: 0;
     transform: translateX(30px);
   }
   to {
     opacity: 1;
     transform: translateX(0);
   }
}

.fade-in-right {
   animation: fadeInRight 0.8s ease-out forwards;
}

/* Responsive enhancements */
@media (max-width: 768px) {
   .display-title {
     font-size: 36px;
   }
   
   .content-card {
     padding: 20px;
   }
   
   .process-step {
     margin-bottom: 24px;
   }
   
   .process-step::before {
     left: 15px;
   }
   
   .process-step-number {
     width: 32px;
     height: 32px;
     font-size: 14px;
   }
   
   .process-step-content {
     margin-left: 20px;
   }
   
   .pricing-card {
     margin-bottom: 16px;
   }
   
   .pricing-card.featured {
     transform: scale(1);
   }
}