.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(
      to right,
      rgba(33, 35, 40, 0.85) 55%,
      rgba(33, 35, 40, 0.4) 100%
    ),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80")
      center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-badge {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.6;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.check-item svg {
  flex-shrink: 0;
}
.h2-title h2 {
  font-size: 22px;
}
.features-strip {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.feature-item {
  padding: 28px 20px;
  border-right: 1px solid #e8ecf0;
  text-align: center;
}

.feature-item:last-child {
  border-right: none;
}

.feature-item h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  margin: 10px 0 4px;
}

.feature-item p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}

.section-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card-body {
  padding: 16px;
}

.service-card-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -36px;
  position: relative;
  z-index: 5;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  margin: 10px 0 6px;
}

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

.service-card .service-card-body a {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
}

.service-card a:hover {
  color: var(--accent2);
}

.about-section {
  background: var(--light-bg);
}

/* About Section Company Image */
.about-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 4px solid #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  aspect-ratio: 4 / 3;
}
.about-image-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.about-company-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.project-slide-body {
  padding: 12px 14px 16px;
  background: #fff;
  border-radius: 0 0 8px 8px;
}

.project-slide-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.project-slide-body p {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 36px !important;
  height: 36px !important;
  background: var(--primary);
  border-radius: 50%;
  color: #fff !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 900;
}

.swiper-pagination-bullet-active {
  background: var(--accent) !important;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.2s;
}

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

@media (max-width: 768px) {
  .feature-item {
    border-right: none;
    border-bottom: 1px solid #e8ecf0;
  }

  .feature-item:last-child {
    border-bottom: none;
  }
}
