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

body {
  font-family: 'Montserrat', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  overflow-x: hidden;
}

.sidebar-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
  border-right: 1px solid #2a2a2a;
  padding: 40px 30px;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.sidebar-menu.open {
  transform: translateX(0);
}

.sidebar-logo {
  width: 120px;
  margin-bottom: 50px;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  margin-bottom: 25px;
}

.menu-list a {
  color: #888;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.menu-list a:hover {
  color: #00ffcc;
}

.sidebar-footer {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 20px;
}

.sidebar-footer span {
  cursor: pointer;
  color: #666;
  font-size: 14px;
}

.main-content {
  margin-left: 0;
  min-height: 100vh;
}

.menu-trigger {
  position: fixed;
  top: 30px;
  left: 30px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 999;
  font-size: 20px;
}

.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 80px;
}

.hero-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid #00ffcc;
  border-radius: 30px;
  color: #00ffcc;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.hero-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
}

.text-gradient {
  background: linear-gradient(90deg, #00ffcc, #00aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 18px;
  color: #999;
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.btn-primary {
  padding: 15px 35px;
  background: linear-gradient(90deg, #00ffcc, #00aaff);
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  padding: 15px 35px;
  background: transparent;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.3s;
}

.btn-secondary:hover {
  border-color: #00ffcc;
}

.metrics-row {
  display: flex;
  gap: 50px;
}

.metric-item strong {
  display: block;
  font-size: 32px;
  color: #00ffcc;
  margin-bottom: 5px;
}

.metric-item span {
  font-size: 13px;
  color: #666;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 200px;
  opacity: 0.8;
  filter: hue-rotate(180deg);
}

.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-card {
  position: absolute;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 13px;
  color: #888;
}

.float-card:nth-child(1) {
  top: 20%;
  right: 10%;
  animation: float 3s ease-in-out infinite;
}

.float-card:nth-child(2) {
  bottom: 30%;
  left: 10%;
  animation: float 3s ease-in-out infinite 1s;
}

.float-card:nth-child(3) {
  top: 50%;
  right: 30%;
  animation: float 3s ease-in-out infinite 2s;
}

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

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  margin-bottom: 60px;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.about-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #222;
  border-radius: 16px;
  padding: 40px;
  transition: transform 0.3s, border-color 0.3s;
}

.about-card:hover {
  transform: translateY(-10px);
  border-color: #00ffcc;
}

.card-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #00ffcc;
  color: #000;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.about-card p {
  color: #777;
  line-height: 1.5;
}

.tech-section {
  background: #050505;
}

.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 30px;
  background: transparent;
  border: 1px solid #333;
  border-radius: 30px;
  color: #888;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn.active {
  background: #00ffcc;
  color: #000;
  border-color: #00ffcc;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.tech-badge {
  padding: 10px 25px;
  background: rgba(0, 255, 204, 0.1);
  border: 1px solid #00ffcc33;
  border-radius: 25px;
  font-size: 14px;
  color: #00ffcc;
}

.cases-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-slide {
  background: #111;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #222;
}

.case-tag {
  display: inline-block;
  padding: 5px 15px;
  background: #00aaff22;
  color: #00aaff;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

.case-slide h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.case-slide p {
  color: #777;
  margin-bottom: 25px;
}

.case-stats {
  display: flex;
  gap: 20px;
}

.case-stats span {
  padding: 8px 16px;
  background: #1a1a1a;
  border-radius: 8px;
  font-size: 13px;
  color: #00ffcc;
}

.team-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.stat-block {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #00ffcc;
  margin-bottom: 10px;
}

.stat-text {
  font-size: 14px;
  color: #666;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.tech-form {
  background: #111;
  border-radius: 20px;
  padding: 50px;
  border: 1px solid #222;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.tech-form input,
.tech-form select,
.tech-form textarea {
  background: #0a0a0a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 15px;
  color: #fff;
  font-size: 14px;
  transition: border-color 0.3s;
}

.tech-form input:focus,
.tech-form select:focus,
.tech-form textarea:focus {
  outline: none;
  border-color: #00ffcc;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888;
  font-size: 14px;
}

.submit-btn {
  padding: 15px 40px;
  background: linear-gradient(90deg, #00ffcc, #00aaff);
  border: none;
  border-radius: 10px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.submit-btn:hover {
  transform: scale(1.05);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item strong {
  display: block;
  color: #666;
  font-size: 13px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-item a {
  color: #00ffcc;
  text-decoration: none;
}

.success-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: radial-gradient(circle at center, #111, #000);
}

.success-container {
  text-align: center;
  padding: 60px;
  background: #111;
  border-radius: 30px;
  border: 1px solid #333;
  max-width: 500px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ffcc, #00aaff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #000;
  margin: 0 auto 30px;
}

.success-container h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

.success-container p {
  color: #888;
  margin-bottom: 40px;
}

.back-btn {
  display: inline-block;
  padding: 15px 40px;
  background: transparent;
  border: 1px solid #00ffcc;
  border-radius: 10px;
  color: #00ffcc;
  text-decoration: none;
  transition: background 0.3s;
}

.back-btn:hover {
  background: rgba(0, 255, 204, 0.1);
}

@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    padding: 80px 40px;
  }
  
  .hero-image {
    display: none;
  }
  
  .about-grid,
  .cases-carousel {
    grid-template-columns: 1fr;
  }
  
  .form-wrapper {
    grid-template-columns: 1fr;
  }
  
  .sidebar-menu {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .tech-tabs {
    flex-wrap: wrap;
  }
  
  .metrics-row {
    flex-direction: column;
    gap: 20px;
  }
}