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

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #fff;
}

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

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

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #0066cc;
}

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

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

.nav a:hover,
.nav a.active {
  color: #0066cc;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,102,204,0.85), rgba(0,51,102,0.75));
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  color: #fff;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  max-width: 600px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.btn-primary {
  display: inline-block;
  background: #ff6b35;
  color: #fff;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,53,0.3);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #0066cc;
  padding: 14px 28px;
  text-decoration: none;
  border: 2px solid #0066cc;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #0066cc;
  color: #fff;
}

.stats {
  background: #f8f9fa;
  padding: 64px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-showcase {
  padding: 96px 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  font-size: 18px;
  color: #666;
}

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

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

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

.work-image {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.work-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,102,204,0.9);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.work-meta {
  padding: 24px;
}

.work-meta h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.work-meta p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.work-stats {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #999;
}

.approach {
  background: #f8f9fa;
  padding: 96px 0;
}

.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.approach-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.approach-text p {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  margin-bottom: 32px;
}

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

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: 700;
}

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

.platforms {
  padding: 96px 0;
}

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

.platform-card {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #e5e5e5;
  transition: border-color 0.2s;
}

.platform-card:hover {
  border-color: #0066cc;
}

.platform-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0066cc;
}

.platform-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

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

.footer p {
  margin-bottom: 8px;
}

.footer-note {
  font-size: 14px;
  color: #999;
}

.page-hero {
  padding: 96px 0 64px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.page-subtitle {
  font-size: 20px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.process-flow {
  padding: 64px 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 96px;
}

.process-step.reverse {
  grid-template-columns: 80px 1fr 1fr;
}

.process-step.reverse .step-content {
  order: 2;
}

.process-step.reverse .step-visual {
  order: 1;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: #e5e5e5;
}

.step-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.step-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.step-detail {
  font-size: 14px;
  color: #0066cc;
  font-weight: 600;
}

.step-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.deliverables {
  background: #f8f9fa;
  padding: 96px 0;
}

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

.deliverable-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.deliverable-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 12px;
}

.deliverable-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.deliverable-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.commitment-box {
  background: #fff;
  padding: 48px;
  border-radius: 8px;
  border-left: 4px solid #0066cc;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.commitment-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.commitment-box p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
}

.tools {
  padding: 96px 0;
}

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

.tool-item {
  padding: 32px;
  background: #f8f9fa;
  border-radius: 8px;
}

.tool-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0066cc;
}

.tool-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
  }
  .stat-grid,
  .work-grid,
  .platform-grid,
  .deliverable-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .approach-content,
  .process-step,
  .process-step.reverse {
    grid-template-columns: 1fr;
  }
  .step-number {
    font-size: 40px;
  }
  .process-step.reverse .step-content,
  .process-step.reverse .step-visual {
    order: initial;
  }
}