@charset "UTF-8";

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-size: cover;
  background-position: center;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(74,111,165,0.3) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(197,213,228,0.15) 0%, transparent 50%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content { padding: 40px 0; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(197,213,228,0.15);
  border-radius: 50px;
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 24px;
  border: 1px solid rgba(197,213,228,0.25);
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--primary);
  position: relative;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

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

.hero-stats {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  overflow: hidden;
}

.stat-item {
  padding: 24px 36px;
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  display: block;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

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

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

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-hover);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(74,111,165,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--secondary);
}

.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover { gap: 10px; }

/* About Section */
.about-section { padding: 80px 0; background: #F8FAFC; }

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

.about-images { position: relative; }

.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-img-sub {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 240px;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-img-sub img { width: 100%; height: 160px; object-fit: cover; }

.about-content .section-label { margin-bottom: 16px; }

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

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

.data-box {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.data-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary);
}

.data-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

/* Process Section */
.process-section { padding: 80px 0; background: var(--white); }

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--border);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 3px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary);
  margin: 0 auto 20px;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-light);
  max-width: 160px;
  margin: 0 auto;
}

/* News Section */
.news-section { padding: 80px 0; background: #F8FAFC; }

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

.news-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px var(--shadow-hover);
}

.news-img { height: 180px; overflow: hidden; }

.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }

.news-card:hover .news-img img { transform: scale(1.05); }

.news-body { padding: 24px; }

.news-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(74,111,165,0.1);
  color: var(--secondary);
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.news-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-meta {
  font-size: 13px;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-hero);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(197,213,228,0.1) 0%, transparent 60%);
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-title { font-size: 34px; }
  .hero-stats { position: relative; bottom: 0; left: 0; transform: none; margin-top: 24px; flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-sub { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 40px; }
  .process-steps::before { display: none; }
  .hero-image img { height: 280px; }
}
