
:root {
  --primary: #2E5BFF;
  --secondary: #00C2FF;
  --accent: #FF6B6B;
  --metallic-light: #E8ECEF;
  --metallic-dark: #374151;
  --bg-light: #F5F7FA;
  --bg-dark: #1F2937;
  --text-primary: #1A202C;
  --text-secondary: #4A5568;
  --success: #10B981;
  --warning: #FBBF24;
  --error: #EF4444;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  color: var(--metallic-dark);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
  text-decoration: none;
}

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-accent { background-color: var(--accent) !important; }
.bg-metallic-light { background-color: var(--metallic-light) !important; }
.bg-metallic-dark { background-color: var(--metallic-dark) !important; }


.metallic-surface {
  background: linear-gradient(135deg, var(--metallic-light), #D1D9E6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius);
}

.chrome-effect {
  background: linear-gradient(135deg, #F5F7FA, #C3CFE2);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.chrome-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

.brushed-steel {
  background: repeating-linear-gradient(
    45deg,
    var(--metallic-light),
    var(--metallic-light) 1px,
    #D1D9E6 1px,
    #D1D9E6 2px
  );
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}


.header {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(31, 41, 55, 0.9) 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.logo-container img,
.logo-container svg {
  height: 40px;
  width: auto;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: white;
  font-size: 1.5rem;
  margin-right: 2rem;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: white;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius);
  margin: 0 0.25rem;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: white !important;
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-request {
  background-color: var(--accent);
  color: white !important;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  border: none;
  transition: var(--transition);
}

.btn-request:hover {
  background-color: #ff5252;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-dark), #2d3748);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: url('../images/hero-integration.jpg') center center/cover no-repeat;
  opacity: 0.4;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 650px;
}


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

.workspace-panel {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--metallic-light);
}

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

.panel-header {
  padding: 1rem;
  background: linear-gradient(90deg, var(--metallic-light), #D1D9E6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: move;
}

.panel-body {
  padding: 1.5rem;
}

.panel-actions {
  display: flex;
  gap: 0.5rem;
}

.panel-action {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
}

.panel-action.close { background-color: var(--error); }
.panel-action.minimize { background-color: var(--warning); }
.panel-action.expand { background-color: var(--success); }


.card {
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

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

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}


.features-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.feature-card {
  padding: 2rem;
  border-radius: var(--border-radius);
  background: white;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--metallic-light);
}

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}


.services-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--metallic-light), #f0f4f8);
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--metallic-light);
}

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

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--bg-dark), var(--metallic-dark));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}


.process-section {
  padding: 5rem 0;
  background: white;
  position: relative;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.process-content {
  flex-grow: 1;
}

.process-title {
  margin-bottom: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}


.contact-form-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-light), white);
}

.form-container {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--metallic-light);
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--metallic-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
  background-color: #f8fafc;
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 91, 255, 0.2);
  border-color: var(--primary);
}

.form-control::placeholder {
  color: #a0aec0;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  border: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #2347d1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


.faq-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa, white);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  padding: 1.25rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  background: white;
}

.accordion-button:not(.collapsed) {
  background-color: var(--metallic-light);
  color: var(--primary);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(46, 91, 255, 0.2);
}

.accordion-body {
  padding: 1.5rem;
  background: white;
}


.footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-title {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

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

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.contact-info {
  margin-bottom: 1.5rem;
}

.contact-info i {
  width: 20px;
  margin-right: 10px;
  color: var(--primary);
}


.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s ease forwards;
}

.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.cookie-settings-content {
  background: white;
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--metallic-light);
}

.cookie-category:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.form-switch {
  padding-left: 2.5em;
}

.cookie-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--metallic-light);
}


.modal {
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  border-radius: var(--border-radius);
  border: none;
}

.modal-header {
  border-bottom: none;
  padding: 1.5rem 1.5rem 0.5rem;
}

.modal-title {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  border-top: none;
  padding: 0.5rem 1.5rem 1.5rem;
}


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

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


.iti {
  width: 100%;
}


.policy-content {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
}

.policy-date {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}


.thank-you-container {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--success);
  margin-bottom: 2rem;
}


@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .workspace-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .navbar-collapse {
    background: var(--bg-dark);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
  }
  
  .nav-link {
    padding: 0.75rem !important;
  }
  
  .process-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
  
  .cookie-consent {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  
  .cookie-footer {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-footer .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .feature-card,
  .service-card {
    padding: 1.5rem;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .footer {
    padding: 3rem 0 2rem;
  }
  
  .form-container::before {
    height: 3px;
  }
}