* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}

.hero {
  position: relative;
  padding: 120px 40px;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  overflow: hidden;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.hero-orbs .orb {
  position: absolute;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.15;
  filter: blur(40px);
}

.orb1 {
  width: 180px;
  height: 180px;
  top: 15%;
  left: 10%;
}
.orb2 {
  width: 260px;
  height: 260px;
  bottom: 10%;
  right: 15%;
}
.orb3 {
  width: 150px;
  height: 150px;
  bottom: 45%;
  left: 40%;
}

.intro {
  padding: 60px 20px;
  background: var(--primary-light);
}

.glass {
  max-width: 800px;
  margin: auto;
  padding: 30px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--primary-light-2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* .zigzag {
  margin-top: 80px;
} */

.zigzag-item {
  display: flex;
  align-items: stretch;
  /* margin-bottom: 80px; */
  position: relative;
}

.zigzag-item .text {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 2;
}

.zigzag-item .text h2 {
  color: var(--primary);
}
.zigzag-item .text p {
  font-size: 1.1rem;
  line-height: var(--line-height);
  color: var(--text-dark);
  margin-bottom: 5px;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.9;
}
.zigzag-item .text ul li {
  margin-bottom: 14px;
  line-height: var(--line-height);
}

.cover-image {
  width: 50%;
  /* height: 400px; */
  position: relative;
}

.cover-image img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  /* border-radius: 18px; */
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.circle-bg {
  width: 300px;
  height: 300px;
  background: var(--primary-light-3);
  border-radius: 50%;
  position: absolute;
  left: -40px;
  z-index: 1;
}

.circle-bg.alt {
  background: var(--primary-light-2);
  right: -40px;
  left: auto;
}

.industries {
  padding: 100px 20px;
  background: var(--white);
  text-align: center;
}

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

.industry-card {
  position: relative;
  padding: 40px 20px;
  background: var(--primary-light);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.industry-card .shape {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.12;
  top: -35px;
  right: -35px;
}

.features {
  padding: 80px 20px;
  text-align: center;
  background: var(--primary-light-2);
}

.features h2 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 50px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  padding: 40px 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.feature-card p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: var(--line-height);
}
