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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 100;
}

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

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0066ff;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #0066ff;
}

.hero {
  padding: 80px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.hero-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 15px;
}

.btn-primary {
  background: #0066ff;
  color: #ffffff;
}

.btn-primary:hover {
  background: #0052cc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.btn-secondary {
  background: #f5f5f5;
  color: #1a1a1a;
}

.btn-secondary:hover {
  background: #e5e5e5;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.trusted {
  padding: 40px 0;
  background: #fafafa;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.trusted-label {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 24px;
  font-weight: 600;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-img {
  height: 32px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.2s;
}

.logo-img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.features {
  padding: 80px 0;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #1a1a1a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 32px;
  background: #fafafa;
  border-radius: 12px;
  transition: all 0.2s;
}

.feature-card:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.feature-text {
  color: #666;
  line-height: 1.7;
}

.work {
  padding: 80px 0;
  background: #fafafa;
}

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

.work-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.work-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.work-content {
  padding: 24px;
}

.work-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.work-description {
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.work-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 4px 12px;
  background: #f0f0f0;
  border-radius: 4px;
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  color: #ffffff;
}

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

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta .btn-primary {
  background: #ffffff;
  color: #0066ff;
}

.cta .btn-primary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.footer {
  padding: 32px 0;
  background: #1a1a1a;
  color: #999;
  text-align: center;
}

.footer-text {
  font-size: 14px;
}

.page-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.page-subtitle {
  font-size: 18px;
  color: #666;
}

.capabilities-detail {
  padding: 60px 0;
}

.capability-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.capability-block.reverse {
  direction: rtl;
}

.capability-block.reverse > * {
  direction: ltr;
}

.capability-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

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

.capability-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: #666;
}

.capability-list li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #0066ff;
  font-weight: 700;
}

.capability-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.tech-stack {
  padding: 60px 0;
  background: #fafafa;
}

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

.stack-category {
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
}

.stack-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.stack-items {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.process-steps {
  padding: 60px 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e5e5e5;
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0066ff;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.step-description {
  color: #666;
  margin-bottom: 16px;
  line-height: 1.7;
}

.step-deliverables {
  font-size: 14px;
  color: #999;
}

.timeline {
  padding: 60px 0;
  background: #fafafa;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.timeline-item {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
}

.timeline-duration {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0066ff;
  margin-bottom: 8px;
}

.timeline-label {
  font-size: 13px;
  color: #666;
}

.timeline-note {
  text-align: center;
  color: #999;
  font-size: 14px;
  font-style: italic;
}

.communication {
  padding: 60px 0;
}

.comm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.comm-card {
  padding: 28px;
  background: #fafafa;
  border-radius: 8px;
}

.comm-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.comm-text {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero .container,
  .capability-block,
  .features-grid,
  .work-grid,
  .stack-grid,
  .timeline-grid,
  .comm-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title,
  .page-title {
    font-size: 32px;
  }
  
  .section-title,
  .cta-title {
    font-size: 28px;
  }
  
  .nav {
    gap: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    text-align: center;
  }
}