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

body{
  font-family:'Inter',sans-serif;
  background:#fff;
  color:#111;
  overflow-x:hidden;
}

section{
  padding:100px 0;
}

img{
  max-width:100%;
  display:block;
}

.section{
  width:min(1180px,92%);
  margin:auto;
}

.section-light{
  background:#fafafa;
  border-radius:40px;
}

.section-header{
  text-align:center;
  margin-bottom:60px;
}

.section-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  border: 1px solid #d3d3d3;
  font-size:0.9rem;
  font-weight:600;
  margin-bottom:22px;
}

.dark-tag{
  color:#ffe600;
  border: none;
}

.section-header h2{
  font-size:3rem;
  line-height:1.1;
  margin-bottom:18px;
}

.section-header p{
  max-width:720px;
  margin:auto;
  color:#666;
  line-height:1.8;
}

/* HERO */

.hero{
  padding:60px 0 100px;
}

.hero-container{
  width:min(1180px,92%);
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.hero-badge{
  display:inline-flex;
  padding:10px 18px;
  border-radius:999px;
border: 1px solid #d3d3d3;
  font-size:0.9rem;
  font-weight:600;
  margin-bottom:24px;
}

.hero-content h1{
  font-size:3.5rem;
  line-height:1;
  letter-spacing:-2px;
  margin-bottom:24px;
}

.hero-content p{
  color:#666;
  line-height:1.9;
  margin-bottom:34px;
  font-size:1.05rem;
}

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

.hero-image img{
  border-radius:34px;
  height:650px;
  width:100%;
  object-fit:cover;
}

/* CONTENT */

.content-grid,
.mission-grid,
.operations-grid,
.market-grid,
.swot-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  width: 92%;
margin: auto;
}

.content-card,
.mission-card,
.operation-card,
.market-card,
.swot-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:30px;
  padding:38px;
}

.content-card h3,
.mission-card h3,
.operation-card h3,
.market-card h3,
.swot-card h3{
  margin-bottom:16px;
  font-size:1.4rem;
}

.content-card p,
.mission-card p,
.operation-card p,
.market-card p,
.swot-card p{
  color:#666;
  line-height:1.9;
}

.icon-box{
  width:64px;
  height:64px;
  border-radius:20px;
  background:#ffe600;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  margin-bottom:24px;
}

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

.value-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:30px;
  padding:34px;
}

.value-card i{
  font-size:2rem;
  margin-bottom:22px;
}

.value-card h3{
  margin-bottom:14px;
}

.value-card p{
  color:#666;
  line-height:1.8;
}

.text-content{
  max-width:900px;
  margin:auto;
}

.text-content p{
  color:#666;
  line-height:2;
  margin-bottom:24px;
  text-align:center;
}

/* CTA */

.cta{
  padding:120px 20px;
}

.cta-content{
  width:min(1180px,92%);
  margin:auto;
  background:#111;
  color:#fff;
  border-radius:40px;
  padding:80px 40px;
  text-align:center;
}

.cta-content h2{
  font-size:3rem;
  margin-bottom:20px;
}

.cta-content p{
  max-width:700px;
  margin:auto;
  color:#d1d5db;
  line-height:1.9;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:34px;
  flex-wrap:wrap;
}

/* RESPONSIVE */

@media(max-width:1000px){

  .hero-container,
  .content-grid,
  .mission-grid,
  .operations-grid,
  .market-grid,
  .swot-grid,
  .values-grid{
    grid-template-columns:1fr;
  }

  .hero-content h1{
    font-size:3.5rem;
  }

  .hero-image img{
    height:500px;
  }
}

@media(max-width:700px){

  section{
    padding:80px 0;
  }

  .hero-content h1,
  .section-header h2,
  .cta-content h2{
    font-size:2.4rem;
  }

  .hero-buttons,
  .cta-buttons{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }
}