/* General Styles */
:root {
  --yellow: #FFE500;
  --cyan: #00D9E5;
  --dark: #1a1a1a;
  --gray: #666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

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

.btn-primary:hover {
  background: #333;
}

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

.btn-secondary:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
}

.btn-yellow:hover {
  background: #f0d600;
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  font-weight: 600;
}

.btn-white:hover {
  background: var(--light-gray);
}

.link-arrow {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

/* Hero Section */
.hero {
  padding: 80px 0 60px;
}

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

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-description {
  margin-bottom: 30px;
  color: var(--gray);
  font-size: 16px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-illustration img {
  width: 100%;
  height: auto;
}

/* Services Section */
.services {
  padding: 60px 0;
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  padding: 0;
}

.service-card h2 {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 500;
}

.service-card > p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 14px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-size: 14px;
}

.checkmark {
  position: absolute;
  left: 0;
  color: var(--dark);
  font-weight: bold;
}

/* Side Content */
.side-content {
  padding: 40px 0;
  border-left: 4px solid var(--yellow);
  margin-left: 20px;
}

.side-item {
  margin-bottom: 32px;
}

.side-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 500;
}

.side-item p {
  font-size: 14px;
  color: var(--gray);
}

/* Values Section */
.values {
  padding: 80px 0;
  position: relative;
}

.values h2 {
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 500;
}

.values > .container > p {
  color: var(--gray);
  margin-bottom: 24px;
  max-width: 600px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
  max-width: 700px;
}

.value-card {
  display: flex;
  gap: 16px;
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.value-icon img {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 500;
}

.value-card p {
  font-size: 14px;
  color: var(--gray);
}

.values-illustration {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
}

.values-illustration img {
  width: 100%;
  height: auto;
}

/* Projects Section */
.projects {
  padding: 80px 0;
  background: var(--light-gray);
}

.projects h2 {
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 500;
}

.projects > .container > p {
  color: var(--gray);
  margin-bottom: 24px;
}

.projects-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

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

.project-content {
  padding: 32px 32px 32px 0;
}

.project-logo {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.project-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 500;
}

.project-content p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 14px;
}

.project-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
}

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

/* CTA Banner */
.cta-banner {
  background: var(--yellow);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 600px;
}

.cta-banner h2 {
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.cta-banner p {
  margin-bottom: 32px;
  font-size: 16px;
  color: var(--dark);
}

/* Insights Section */
.insights {
  padding: 80px 0;
}

.insights h2 {
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 500;
}

.insights > .container > p {
  color: var(--gray);
  margin-bottom: 24px;
}

.insights-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.insight-card {
  display: flex;
  gap: 24px;
}

.insight-image {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
}

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

.insight-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 500;
}

.insight-content p {
  color: var(--gray);
  margin-bottom: 12px;
  font-size: 14px;
}

.insight-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

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

/* Final CTA */
.final-cta {
  padding: 60px 0 80px;
}

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

.cta-card {
  background: var(--light-gray);
  padding: 32px;
  border-radius: 8px;
}

.cta-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 500;
}

.cta-card p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 14px;
}

.cta-card-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .services .container {
    grid-template-columns: 1fr;
  }
  
  .values-illustration {
    position: static;
    transform: none;
    width: 100%;
    max-width: 400px;
    margin-top: 40px;
  }
  
  .project-card {
    grid-template-columns: 1fr;
  }
  
  .insights-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .cta-banner h2 {
    font-size: 36px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .insight-card {
    flex-direction: column;
  }
  
  .insight-image {
    width: 100%;
    height: 200px;
  }
}
