/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #0f0f0f;
  background-color: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Color Variables */
:root {
  --background: #fafafa;
  --foreground: #0f0f0f;
  --card: #ffffff;
  --card-foreground: #0f0f0f;
  --primary: #0f0f0f;
  --primary-foreground: #fafafa;
  --secondary: #f5f5f5;
  --secondary-foreground: #0f0f0f;
  --muted: #f5f5f5;
  --muted-foreground: #4b5563;
  --accent: #ebebeb;
  --accent-foreground: #0f0f0f;
  --border: #e5e5e5;
  --input: #f5f5f5;
  --ring: #0f0f0f;
  --radius: 0.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.text-gradient {
  background: linear-gradient(135deg, #1e2c3e, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: rgba(15, 15, 15, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

.btn-outline:hover {
  background-color: var(--muted);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon span {
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.025em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--foreground);
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: block;
  }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  width: 1.25rem;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--card);
  border-top: 1px solid var(--border);
  animation: fadeIn 0.3s ease;
}

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

.mobile-menu-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--foreground);
}

.mobile-cta {
  margin-top: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.products-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 5rem;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: var(--background);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease;
}



.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  margin-top: 2rem;
  line-height: 1.1;
  color: white;
  position: relative;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #1e2c3e 0%, #3b82f6 50%, #06b6d4 100%);
  box-shadow: 0 20px 40px rgba(30, 44, 62, 0.3);
  overflow: hidden;
}

.hero-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: #374151;
  margin-bottom: 4rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}



/* Sections */
.section-padding {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 8rem 0;
  }
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: var(--muted);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.section-badge span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #1e2c3e;
}

/* Page title backgrounds */
.page-title-bg {
  position: relative;
  padding: 4rem 2rem;
  text-align: center;
}

/* Full screen section backgrounds */
.section-with-bg {
  position: relative;
  background: linear-gradient(135deg, #1e2c3e 0%, #3b82f6 50%, #06b6d4 100%);
  overflow: hidden;
  margin-bottom: 0;
}

.section-with-bg .container {
  position: relative;
  z-index: 2;
}

.section-with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.section-with-bg .section-title {
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  color: white;
}

.section-with-bg .section-description {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
}

.section-with-bg .section-badge {
  position: relative;
  z-index: 2;
}

.section-with-bg .section-badge span {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-with-bg .text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Floating particles effect */
.section-with-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.3), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: float 20s linear infinite;
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}

@keyframes float {
  0% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-10px) translateX(10px); }
  66% { transform: translateY(5px) translateX(-5px); }
  100% { transform: translateY(0px) translateX(0px); }
}

.hero-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(2px 2px at 25px 35px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 45px 75px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 95px 45px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 135px 85px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(2px 2px at 165px 35px, rgba(255, 255, 255, 0.3), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: float 25s linear infinite reverse;
  pointer-events: none;
  opacity: 0.5;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: #374151;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Services Section */
.services {
  background-color: rgba(245, 245, 245, 0.3);
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .services {
    padding: 8rem 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-color: rgba(15, 15, 15, 0.2);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(15, 15, 15, 0.1);
  border-radius: calc(var(--radius) + 4px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: rgba(15, 15, 15, 0.15);
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.service-features li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

.service-link {
  display: flex;
  align-items: center;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: rgba(15, 15, 15, 0.8);
}

.service-link span {
  font-weight: 600;
  letter-spacing: 0.025em;
}

.service-link svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.75rem;
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(0.5rem);
}

/* CONSULSOFT Section */
.consulsoft {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .consulsoft {
    padding: 8rem 0;
  }
}

.consulsoft-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .consulsoft-content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.consulsoft-text {
  text-align: left;
}

.consulsoft-text .section-header {
  text-align: left;
  margin-bottom: 3rem;
}

.features-list {
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(15, 15, 15, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.feature-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.feature-item p {
  color: var(--muted-foreground);
  line-height: 1.5;
}

.consulsoft-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .consulsoft-actions {
    flex-direction: row;
  }
}

.consulsoft-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 3;
  background-color: var(--muted);
  border: 2px dashed var(--border);
  border-radius: calc(var(--radius) + 4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.image-placeholder svg {
  width: 4rem;
  height: 4rem;
  color: var(--muted-foreground);
}

.image-placeholder span {
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Why Choose Section */
.why-choose {
  background-color: rgba(245, 245, 245, 0.3);
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .why-choose {
    padding: 8rem 0;
  }
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-choose-item {
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

.why-choose-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(15, 15, 15, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.why-choose-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.why-choose-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.why-choose-item p {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 1.125rem;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .testimonials {
    padding: 8rem 0;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-content p {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 1.125rem;
  font-style: italic;
}

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

.author-avatar {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar span {
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 0.875rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Contact Section */
.contact {
  background-color: rgba(245, 245, 245, 0.3);
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .contact {
    padding: 8rem 0;
  }
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.contact-info {
  text-align: left;
}

.contact-info .section-header {
  text-align: left;
  margin-bottom: 3rem;
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(15, 15, 15, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Form Styles */
.contact-form {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--input);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(15, 15, 15, 0.1);
}

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

/* Products Page Styles */
.featured-products {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .featured-products {
    padding: 8rem 0;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.product-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-color: rgba(15, 15, 15, 0.2);
}

.product-card.featured {
  border-color: var(--primary);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.product-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(15, 15, 15, 0.1);
  border-radius: calc(var(--radius) + 4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.product-badge {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.product-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.product-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.product-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.product-features li {
  display: flex;
  align-items: center;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.product-features li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .product-actions {
    flex-direction: row;
  }
}

/* All Services Section */
.all-services {
  background-color: rgba(245, 245, 245, 0.3);
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .all-services {
    padding: 8rem 0;
  }
}

.services-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .services-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
  }
}

.category-section {
  animation: fadeInUp 0.8s ease;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-item .service-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(15, 15, 15, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0;
}

.service-item .service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.service-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.service-item p {
  color: var(--muted-foreground);
  line-height: 1.5;
  font-size: 0.875rem;
}

/* Support Section */
.support-section {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .support-section {
    padding: 8rem 0;
  }
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .support-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.support-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.support-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(15, 15, 15, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.support-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.support-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.support-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.support-card ul {
  list-style: none;
  text-align: left;
}

.support-card ul li {
  display: flex;
  align-items: center;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.support-card ul li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* Footer */
.footer {
  background-color: var(--foreground);
  color: var(--primary-foreground);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
  }
}

.footer-brand p {
  color: rgba(250, 250, 250, 0.7);
  line-height: 1.6;
  margin-top: 1rem;
}

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

@media (min-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-foreground);
}

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

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: rgba(250, 250, 250, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary-foreground);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 250, 250, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(250, 250, 250, 0.7);
  font-size: 0.875rem;
}

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

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

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  43% {
    transform: translateY(-15px);
  }
  70% {
    transform: translateY(-7px);
  }
  90% {
    transform: translateY(-3px);
  }
}

/* Utility Classes */
.animate-fade-in {
  animation: fadeIn 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

  .hero-description,
  .section-description {
    font-size: 1rem;
  }

  .service-card,
  .product-card,
  .testimonial-card,
  .support-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* CONSULSOFT Specific Styles */
.consulsoft-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #1e2c3e, #3b82f6);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e2c3e;
  margin-bottom: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: #3b82f6;
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

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

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e2c3e;
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 1rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #1e2c3e;
}

.period {
  font-size: 1rem;
  color: var(--muted-foreground);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

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

.cta {
  background: linear-gradient(135deg, #1e2c3e, #3b82f6);
  color: white;
}

.cta .section-title,
.cta .section-description {
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Contact Form Section */
.contact-form-container {
  max-width: 80rem;
  margin: 0 auto;
}

.contact-form-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
  height: fit-content;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e2c3e;
  margin-bottom: 2rem;
}

.contact-benefits {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #1e2c3e, #3b82f6);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.benefit-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e2c3e;
  margin-bottom: 0.25rem;
}

.benefit-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: #1e2c3e;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--background);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.checkbox-group {
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.link {
  color: #3b82f6;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }

  .pricing-card.featured {
    transform: scale(1.05);
  }
}

/* CONSULSOFT Preview Section */
.consulsoft-preview {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.consulsoft-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.section-with-bg .consulsoft-actions .btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.section-with-bg .consulsoft-actions .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.section-with-bg .consulsoft-actions .btn-primary {
  background: rgba(255, 255, 255, 0.9);
  color: #1e2c3e;
}

.section-with-bg .consulsoft-actions .btn-primary:hover {
  background: white;
}

@media (min-width: 640px) {
  .consulsoft-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact-form-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-card,
  .contact-form {
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
    padding: 3rem 1.5rem;
  }

  .page-title-bg {
    padding: 3rem 1.5rem;
    margin-bottom: 3rem;
  }

  .page-title-bg .section-description {
    font-size: 1rem;
  }

  .contact-form-content {
    gap: 1.5rem;
  }

  .contact-info-card,
  .contact-form {
    padding: 1.5rem;
  }

  .benefit-item {
    margin-bottom: 1rem;
  }

  .benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .benefit-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .feature-card,
  .pricing-card {
    padding: 1.5rem;
  }

  .cta-actions,
  .consulsoft-actions {
    flex-direction: column;
  }
}
