@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');

:root {
  --primary-color: #1a1a2e;
  --secondary-color: #e94560;
  --accent-color: #0f3460;
  --accent-light: #16213e;
  --highlight-color: #f39c12;
  --surface-color: #f8f9fa;
  --surface-dark: #2d2d44;
  --text-primary: #1a1a2e;
  --text-secondary: #6c757d;
  --text-light: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.2);
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
  background-color: var(--surface-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-light) 100%);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-base);
  letter-spacing: -0.5px;
}

.logo:hover {
  transform: translateY(-2px);
  text-shadow: 0 4px 12px rgba(233, 69, 96, 0.5);
}

.logo i {
  font-size: 2rem;
  color: var(--secondary-color);
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transition: var(--transition-base);
  z-index: -1;
  border-radius: 8px;
}

.main-nav a:hover::before {
  left: 0;
}

.main-nav a:hover {
  transform: translateY(-2px);
  color: var(--text-light);
}

.cta-button {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--highlight-color) 100%);
  color: var(--text-light);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition-base);
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg);
  color: var(--secondary-color);
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-light) 100%);
  color: var(--text-light);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  max-width: 420px;
  z-index: 9999;
  animation: slideInUp 0.5s ease-out;
  border: 2px solid var(--secondary-color);
}

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

.cookie-banner p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  font-size: 0.9rem;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--highlight-color) 100%);
  color: var(--text-light);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cookie-decline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.cookie-decline:hover {
  background: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.form-container {
  background: var(--text-light);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 2rem auto;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--highlight-color), var(--secondary-color));
  background-size: 200% 100%;
  animation: gradientSlide 3s ease infinite;
}

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

.form-group {
  margin-bottom: 1.75rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-base);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.95rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition-base);
  background: var(--surface-color);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1);
  background: var(--text-light);
  transform: translateY(-2px);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.form-group.has-icon {
  position: relative;
}

.form-group.has-icon i {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 1.25rem;
  pointer-events: none;
  margin-top: 0.75rem;
}

.form-submit {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--highlight-color) 100%);
  color: var(--text-light);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-base);
  width: 100%;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.form-submit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.form-submit:hover::after {
  width: 400px;
  height: 400px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.form-submit:active {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--highlight-color) 100%);
  color: var(--text-light);
  padding: 0.95rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-base);
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.button-secondary {
  background: transparent;
  color: var(--primary-color);
  padding: 0.95rem 2rem;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-base);
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}

.button-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.button-outline {
  background: transparent;
  color: var(--secondary-color);
  padding: 0.95rem 2rem;
  border: 2px solid var(--secondary-color);
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-base);
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}

.button-outline:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.accordion {
  background: var(--text-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.accordion-header {
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-light) 100%);
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.accordion-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: var(--transition-slow);
}

.accordion-header:hover::before {
  left: 100%;
}

.accordion-header:hover {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
}

.accordion-header i {
  font-size: 1.5rem;
  transition: var(--transition-base);
  color: var(--secondary-color);
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--surface-color);
}

.accordion-content.active {
  max-height: 1000px;
}

.accordion-body {
  padding: 2rem;
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 1rem;
}

.card {
  background: var(--text-light);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-base);
  border: 1px solid var(--border-color);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--highlight-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-base);
}

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

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-base);
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-content {
  padding: 2rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
  transition: var(--transition-base);
}

.card:hover .card-title {
  color: var(--secondary-color);
}

.card-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.loading-spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 4px solid rgba(233, 69, 96, 0.1);
  border-radius: 50%;
  border-top-color: var(--secondary-color);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
}

.loading-dots {
  display: flex;
  gap: 0.75rem;
}

.loading-dots span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--secondary-color);
  animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
  animation-delay: -0.16s;
  background: var(--highlight-color);
}

.loading-dots span:nth-child(3) {
  background: var(--accent-color);
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--surface-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--secondary-color), var(--highlight-color));
  border-radius: 10px;
  border: 2px solid var(--surface-color);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--highlight-color), var(--secondary-color));
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 6rem 2rem;
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.section {
  padding: 5rem 2rem;
}

.section-dark {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-light) 100%);
  color: var(--text-light);
}

.section-light {
  background: var(--surface-color);
}

.section-white {
  background: var(--text-light);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-dark .section-title {
  color: var(--text-light);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--highlight-color));
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.feature-box {
  background: var(--text-light);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--highlight-color) 100%);
  opacity: 0;
  transition: var(--transition-base);
  z-index: 0;
}

.feature-box:hover::before {
  opacity: 0.95;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  color: var(--text-light);
}

.feature-box > * {
  position: relative;
  z-index: 1;
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: var(--transition-base);
}

.feature-box:hover .feature-icon {
  color: var(--text-light);
  transform: scale(1.15) rotateY(360deg);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
  transition: var(--transition-base);
}

.feature-box:hover .feature-title {
  color: var(--text-light);
}

.feature-text {
  color: var(--text-secondary);
  line-height: 1.7;
  transition: var(--transition-base);
}

.feature-box:hover .feature-text {
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-card {
  background: var(--text-light);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--secondary-color);
  transition: var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  color: var(--secondary-color);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-left-width: 6px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

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

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary-color);
}

.author-info h4 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-box {
  text-align: center;
  padding: 2rem;
  background: var(--text-light);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-xl);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--text-light);
  padding: 3rem 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--highlight-color), var(--secondary-color));
  background-size: 200% 100%;
  animation: gradientSlide 3s ease infinite;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-weight: 700;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition-base);
  display: inline-block;
}

.footer-section a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-base);
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.price-card {
  background: var(--text-light);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border: 2px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--secondary-color), var(--highlight-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-base);
}

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

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color);
}

.price-card.featured {
  border-color: var(--secondary-color);
  transform: scale(1.05);
}

.price-badge {
  background: linear-gradient(135deg, var(--secondary-color), var(--highlight-color));
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.price-period {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.price-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.price-features li {
  padding: 0.75rem 0;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

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

.price-features i {
  color: var(--success-color);
  font-size: 1.25rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--highlight-color));
  color: var(--text-light);
}

.badge-success {
  background: var(--success-color);
  color: var(--text-light);
}

.badge-warning {
  background: var(--warning-color);
  color: var(--text-light);
}

.badge-danger {
  background: var(--danger-color);
  color: var(--text-light);
}

.alert {
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slideInRight 0.4s ease-out;
}

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

.alert i {
  font-size: 1.5rem;
}

.alert-success {
  background: rgba(39, 174, 96, 0.1);
  border-left-color: var(--success-color);
  color: var(--success-color);
}

.alert-warning {
  background: rgba(243, 156, 18, 0.1);
  border-left-color: var(--warning-color);
  color: var(--warning-color);
}

.alert-danger {
  background: rgba(231, 76, 60, 0.1);
  border-left-color: var(--danger-color);
  color: var(--danger-color);
}

.alert-info {
  background: rgba(233, 69, 96, 0.1);
  border-left-color: var(--secondary-color);
  color: var(--secondary-color);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--border-color);
  border-radius: 50px;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-color), var(--highlight-color));
  border-radius: 50px;
  transition: width 1s ease-out;
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--secondary-color), var(--highlight-color));
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border: 4px solid var(--text-light);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-md);
}

.timeline-content {
  background: var(--text-light);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  width: 45%;
  position: relative;
  transition: var(--transition-base);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(8px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: var(--text-light);
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease-out;
  box-shadow: var(--shadow-xl);
}

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

.modal-header {
  padding: 2rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-light));
  color: var(--text-light);
  border-radius: 20px 20px 0 0;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition-base);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
}

@media (max-width: 1024px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item::before {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 80px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-light) 100%);
    padding: 2rem;
    transform: translateX(-100%);
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav a {
    display: block;
    padding: 1rem;
    border-radius: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.25rem;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

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

  .section-subtitle {
    font-size: 1.1rem;
  }

  .cookie-banner {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: 100%;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

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

  .price-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 1rem;
  }

  .logo {
    font-size: 1.35rem;
  }

  .hero-section {
    padding: 4rem 1rem;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .card-content,
  .feature-box,
  .testimonial-card {
    padding: 1.5rem;
  }

  .modal-content {
    width: 95%;
  }

  .modal-header,
  .modal-body {
    padding: 1.5rem;
  }
}

.job-listing {
  background: var(--text-light);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border-left: 4px solid var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.job-listing:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-xl);
  border-left-width: 6px;
}

.job-info h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.job-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-meta i {
  color: var(--secondary-color);
}

.job-actions {
  display: flex;
  gap: 1rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(233, 69, 96, 0.1);
  color: var(--secondary-color);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0.25rem;
}

.search-box {
  position: relative;
  margin: 2rem 0;
}

.search-box input {
  width: 100%;
  padding: 1.25rem 1.5rem 1.25rem 3.5rem;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  font-size: 1.05rem;
  transition: var(--transition-base);
  background: var(--text-light);
}

.search-box input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.1);
}

.search-box i {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 1.35rem;
}

.filter-bar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--text-light);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.filter-bar select {
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--surface-color);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-base);
  min-width: 180px;
}

.filter-bar select:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: var(--text-light);
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  height: 350px;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-item:hover .service-image {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
  color: var(--text-light);
  padding: 2rem;
  transform: translateY(60%);
  transition: var(--transition-base);
}

.service-item:hover .service-overlay {
  transform: translateY(0);
}

.service-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.service-overlay p {
  opacity: 0;
  transition: var(--transition-base);
  transition-delay: 0.1s;
}

.service-item:hover .service-overlay p {
  opacity: 1;
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--highlight-color) 100%);
  color: var(--text-light);
  padding: 5rem 2rem;
  text-align: center;
  border-radius: 24px;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-section h2 {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-section .button-primary {
  background: var(--text-light);
  color: var(--secondary-color);
  position: relative;
  z-index: 1;
}

.cta-section .button-primary:hover {
  background: var(--primary-color);
  color: var(--text-light);
}