@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');
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #1a2332;
  --secondary-color: #e8530f;
  --accent-color: #f4a261;
  --dark-gray: #2d3748;
  --medium-gray: #4a5568;
  --light-gray: #e2e8f0;
  --steel-blue: #4a6fa5;
  --metallic-silver: #c0c5ce;
  --industrial-orange: #ff6f3c;
  --deep-navy: #0f1419;
  --copper-tone: #b87333;
  --white: #ffffff;
  --off-white: #f7fafc;
  --header-height: 80px;
  --transition-speed: 0.3s;
  --box-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --box-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --box-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
}

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

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

body {
  font-family: 'Exo 2', sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-navy) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all var(--transition-speed) ease;
  border-bottom: 3px solid var(--secondary-color);
}

.header.scrolled {
  height: 70px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.98) 0%, rgba(15, 20, 25, 0.98) 100%);
  backdrop-filter: blur(10px);
}

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

.logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-speed) ease;
  text-transform: uppercase;
}

.logo i {
  font-size: 2rem;
  color: var(--secondary-color);
  animation: rotateCog 8s linear infinite;
}

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

.logo:hover {
  transform: translateY(-2px);
  color: var(--accent-color);
}

.logo:hover i {
  animation-duration: 2s;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  color: var(--metallic-silver);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-speed) ease;
  position: relative;
  padding: 0.5rem 0;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--industrial-orange));
  transform: translateX(-50%);
  transition: width var(--transition-speed) ease;
}

.nav-menu a:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.nav-menu a:hover::before {
  width: 100%;
}

.nav-menu a.active {
  color: var(--secondary-color);
}

.nav-menu a.active::before {
  width: 100%;
}

.mobile-toggle {
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  padding: 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--deep-navy) 100%);
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-top: 3px solid var(--secondary-color);
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-list a {
  color: var(--metallic-silver);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
  display: block;
  border-radius: 8px;
  transition: all var(--transition-speed) ease;
  border-left: 4px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-left-color: var(--secondary-color);
  transform: translateX(8px);
}

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 999;
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid var(--secondary-color);
  backdrop-filter: blur(10px);
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-banner-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--light-gray);
}

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

.btn {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Rajdhani', sans-serif;
  position: relative;
  overflow: hidden;
}

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

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--industrial-orange) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 83, 15, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(232, 83, 15, 0.6);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--metallic-silver);
}

.btn-secondary:hover {
  background: var(--metallic-silver);
  color: var(--primary-color);
  border-color: var(--metallic-silver);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(192, 197, 206, 0.4);
}

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

.btn-outline:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(232, 83, 15, 0.4);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

.btn-small {
  padding: 0.625rem 1.5rem;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  transition: all var(--transition-speed) ease;
  font-family: 'Exo 2', sans-serif;
  background: var(--white);
  color: var(--dark-gray);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(232, 83, 15, 0.1);
  transform: translateY(-2px);
}

.form-control::placeholder {
  color: var(--medium-gray);
  opacity: 0.6;
}

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

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d3748' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form-control.error {
  border-color: #e53e3e;
}

.form-control.success {
  border-color: #48bb78;
}

.form-error {
  color: #e53e3e;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-success {
  color: #48bb78;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: 2px;
  accent-color: var(--secondary-color);
}

.checkbox-wrapper label {
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--dark-gray);
}

.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--box-shadow-md);
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  border: 1px solid var(--light-gray);
}

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

.card-header {
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--steel-blue) 100%);
  color: var(--white);
  border-bottom: 4px solid var(--secondary-color);
}

.card-body {
  padding: 2rem;
}

.card-footer {
  padding: 1.5rem 2rem;
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-image-wrapper {
  overflow: hidden;
  position: relative;
}

.card-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
}

.card:hover .card-image-wrapper::after {
  opacity: 1;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.accordion-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 2px solid var(--light-gray);
  transition: all var(--transition-speed) ease;
}

.accordion-item:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--box-shadow-md);
}

.accordion-header {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
  transition: all var(--transition-speed) ease;
  font-family: 'Rajdhani', sans-serif;
}

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

.accordion-header.active {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--industrial-orange) 100%);
  color: var(--white);
}

.accordion-icon {
  font-size: 1.25rem;
  transition: transform var(--transition-speed) ease;
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 2rem;
}

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

.accordion-content-inner {
  color: var(--medium-gray);
  line-height: 1.8;
}

.loading-spinner {
  border: 4px solid var(--light-gray);
  border-top: 4px solid var(--secondary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner-large {
  width: 80px;
  height: 80px;
  border-width: 6px;
}

.loading-spinner-small {
  width: 30px;
  height: 30px;
  border-width: 3px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Rajdhani', sans-serif;
}

.badge-primary {
  background: var(--secondary-color);
  color: var(--white);
}

.badge-secondary {
  background: var(--steel-blue);
  color: var(--white);
}

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

.icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--industrial-orange) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  transition: all var(--transition-speed) ease;
  box-shadow: var(--box-shadow-md);
  position: relative;
  overflow: hidden;
}

.icon-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: iconShine 3s infinite;
}

@keyframes iconShine {
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.icon-box:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: var(--box-shadow-lg);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
}

.section-dark {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-navy) 100%);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.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(--industrial-orange));
  border-radius: 2px;
}

.section-subtitle {
  color: var(--medium-gray);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-dark .section-subtitle {
  color: var(--metallic-silver);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-fluid {
  padding: 0 2rem;
}

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

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--industrial-orange) 100%);
  border-radius: 6px;
  border: 2px solid var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--industrial-orange) 0%, var(--secondary-color) 100%);
}

.stats-box {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--box-shadow-md);
  transition: all var(--transition-speed) ease;
  border-top: 4px solid var(--secondary-color);
}

.stats-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-lg);
  border-top-width: 6px;
}

.stats-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-color);
  font-family: 'Rajdhani', sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-label {
  font-size: 1rem;
  color: var(--medium-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.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) 0%, var(--industrial-orange) 100%);
  transform: translateX(-50%);
}

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

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--box-shadow-md);
  width: calc(50% - 3rem);
  position: relative;
  border: 2px solid var(--light-gray);
  transition: all var(--transition-speed) ease;
}

.timeline-content:hover {
  transform: scale(1.03);
  box-shadow: var(--box-shadow-lg);
  border-color: var(--secondary-color);
}

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

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: var(--secondary-color);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--secondary-color);
  z-index: 1;
}

.testimonial {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--box-shadow-md);
  position: relative;
  border-left: 6px solid var(--secondary-color);
  transition: all var(--transition-speed) ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-lg);
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--medium-gray);
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--secondary-color);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

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

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

.testimonial-name {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.testimonial-role {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--dark-gray);
  font-size: 1rem;
  line-height: 1.6;
}

.feature-list li::before {
  content: '\ea5f';
  font-family: 'remixicon';
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-list li:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
  transition: all var(--transition-speed) ease;
}

.pricing-table {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: var(--box-shadow-md);
  text-align: center;
  transition: all var(--transition-speed) ease;
  border: 2px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.pricing-table::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--secondary-color), var(--industrial-orange));
}

.pricing-table:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--box-shadow-xl);
  border-color: var(--secondary-color);
}

.pricing-table.featured {
  border-color: var(--secondary-color);
  border-width: 3px;
  box-shadow: var(--box-shadow-lg);
}

.pricing-table.featured::before {
  height: 8px;
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  font-family: 'Rajdhani', sans-serif;
  line-height: 1;
}

.pricing-currency {
  font-size: 1.75rem;
  vertical-align: super;
}

.pricing-period {
  font-size: 1.2rem;
  color: var(--medium-gray);
  font-weight: 400;
}

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

.pricing-features li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-navy) 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 83, 15, 0.1) 0%, transparent 70%);
  animation: ctaPulse 10s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

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

.cta-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: var(--metallic-silver);
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: var(--steel-blue);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.breadcrumb a:hover {
  color: var(--secondary-color);
}

.breadcrumb-separator {
  color: var(--medium-gray);
}

.breadcrumb-current {
  color: var(--medium-gray);
}

.alert {
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  border-left: 5px solid;
}

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

.alert-info {
  background: #e6f7ff;
  border-color: #1890ff;
  color: #096dd9;
}

.alert-success {
  background: #f6ffed;
  border-color: #52c41a;
  color: #389e0d;
}

.alert-warning {
  background: #fffbe6;
  border-color: #faad14;
  color: #d48806;
}

.alert-error {
  background: #fff1f0;
  border-color: #ff4d4f;
  color: #cf1322;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-color), var(--industrial-orange));
  border-radius: 10px;
  transition: width 1s ease;
  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: progressShine 2s infinite;
}

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

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
  padding: 2rem;
  border-bottom: 2px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--steel-blue) 100%);
  color: var(--white);
  border-radius: 16px 16px 0 0;
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--white);
  transition: all var(--transition-speed) ease;
  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;
}

.modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--light-gray);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  background: var(--off-white);
  border-radius: 0 0 16px 16px;
}

.tabs {
  border-bottom: 2px solid var(--light-gray);
  margin-bottom: 2rem;
}

.tab-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  flex-wrap: wrap;
}

.tab-button {
  padding: 1rem 2rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--medium-gray);
  transition: all var(--transition-speed) ease;
  position: relative;
  border-bottom: 3px solid transparent;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab-button:hover {
  color: var(--secondary-color);
}

.tab-button.active {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

.tab-content {
  animation: fadeIn 0.5s ease;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--light-gray);
  color: var(--dark-gray);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0.25rem;
  transition: all var(--transition-speed) ease;
}

.tag:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  margin: 3rem 0;
}

.divider-vertical {
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--secondary-color), transparent);
  height: 100%;
}

.text-gradient {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--industrial-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease;
}

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

.slide-in-left {
  animation: slideInLeft 0.8s ease;
}

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

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

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

.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--deep-navy) 100%);
  color: var(--metallic-silver);
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--secondary-color);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

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

.footer-links a {
  color: var(--metallic-silver);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: all var(--transition-speed) ease;
  position: relative;
  padding-left: 1.5rem;
}

.footer-links a::before {
  content: '\ea6e';
  font-family: 'remixicon';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all var(--transition-speed) ease;
}

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

.footer-links a:hover::before {
  opacity: 1;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--metallic-silver);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
}

.social-link:hover {
  background: var(--secondary-color);
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 8px 20px rgba(232, 83, 15, 0.4);
  border-color: var(--industrial-orange);
}

@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.75rem; }
  
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 6rem);
    margin-left: 4rem !important;
  }
  
  .timeline-marker {
    left: 30px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.5rem; }
  
  .header-container { padding: 0 1rem; }
  
  .nav-menu { display: none; }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.5rem;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .container,
  .container-fluid {
    padding: 0 1rem;
  }
  
  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .stats-number {
    font-size: 2.5rem;
  }
  
  .timeline-content {
    width: calc(100% - 4rem);
    margin-left: 3rem !important;
  }
  
  .modal {
    margin: 1rem;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-subtitle {
    font-size: 1.1rem;
  }
  
  .tab-list {
    gap: 0.5rem;
  }
  
  .tab-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.625rem; }
  
  .logo {
    font-size: 1.25rem;
  }
  
  .logo i {
    font-size: 1.5rem;
  }
  
  .pricing-price {
    font-size: 2.5rem;
  }
  
  .stats-number {
    font-size: 2rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
}