* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1A1F36;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 100;
  padding: 16px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #1A2C5B 0%, #2E4A8A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}
.logo span {
  color: #2E4A8A;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.logo-footer {
  padding-bottom: 34px;
}
.phone-link {
  font-weight: 600;
  font-size: 1.4rem;
  color: #1A2C5B;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.phone-icon {
  display: inline-flex;
  background: #EFF3FC;
  padding: 8px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.phone-svg {
  width: 18px;
  height: 18px;
  color: #1A2C5B;
}
.phone-number-prefix {
  font-size: 0.9rem;
  font-weight: 500;
}
.phone-link:hover {
  color: #4066b3;
}

/* Hero */
.hero {
  padding: 80px 0 70px;
  background: linear-gradient(135deg, #F8FAFF 0%, #F0F4FE 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #1D4A8B, #0F2B4F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 80px;
}
.hero-desc {
  font-size: 1.2rem;
  color: #2D3A5E;
  margin-bottom: 32px;
  max-width: 90%;
}
.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: #1E3A6F;
  color: white;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.btn-primary:hover {
  background: #0F2A4F;
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -8px rgba(30,58,111,0.3);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid #1E3A6F;
  color: #1E3A6F;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}
.btn-outline:hover {
  background: #1E3A6F;
  color: white;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}
.stat-item h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1E3A6F;
}
.stat-item p {
  color: #4A5B7A;
  font-weight: 500;
}

/* Cards Grid */
/* Services */
.services {
  padding: 80px 0;
  background: white;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-sub {
  text-align: center;
  color: #5A6C8A;
  max-width: 700px;
  margin: 0 auto 56px;
  font-size: 1.1rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FC 100%);
  border-radius: 28px;
  padding: 32px 24px;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(30,58,111,0.1);
  text-align: center;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 45px -15px rgba(30,58,111,0.15);
  border-color: rgba(30,58,111,0.1);
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F7FE 100%);
}
.card-icon {
  background: #EFF3FC;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  margin: 0 auto 24px;
  color: #1A2C5B;
}
.card-icon svg {
  width: 32px;
  height: 32px;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.service-card p {
  color: #4A5B7A;
  font-size: 0.95rem;
}

@media (max-width: 880px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title {
    font-size: 2rem;
  }
  
  .service-card {
	margin-top: 30px;
  }

}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
	margin-top: 20px;
  }
}

/* platform banner */
.platform-banner {
  background: linear-gradient(110deg, #1e3a6f 0%, #11223b 100%);
  border-radius: 48px;
  padding: 48px 40px;
  color: white;
  margin: 40px 0 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.platform-text h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.platform-text p {
  opacity: 0.85;
  max-width: 550px;
}
.btn-light {
  background: white;
  color: #1E3A6F;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
}
.btn-light:hover {
  background: #eef3ff;
  transform: scale(1.02);
}

/* about */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0 80px;
}
.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
}
.about-stats div {
  text-align: left;
}
.big-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1E3A6F;
}

/* cta bottom */
.cta-section {
  background: #F5F8FF;
  border-radius: 48px;
  padding: 60px 48px;
  text-align: center;
  margin: 40px 0 80px;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.cta-section .btn-primary {
  margin-top: 24px;
  font-size: 1.1rem;
  padding: 16px 40px;
}

/* footer */
.footer {
  border-top: 1px solid #E9EDF2;
  padding: 48px 0 32px;
  background: #FFFFFF;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.footer-col h4 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #2D3A5E;
}
.footer-col p, .footer-col a {
  color: #5A6C8A;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #1E3A6F;
}
.copyright {
  text-align: center;
  margin-top: 48px;
  color: #7C8BA0;
  font-size: 0.85rem;
}

@media (max-width: 880px) {
  .hero-grid {
	grid-template-columns: 1fr;
	gap: 40px;
  }
  .hero-title {
	font-size: 2.5rem;
  }
  .about {
	grid-template-columns: 1fr;
  }
  .platform-banner {
	flex-direction: column;
	text-align: center;
  }
  .section-title {
	font-size: 2rem;
  }
  .hero-image {
    display: none;
  }
  .about-image {
    display: none;
  }
}
@media (max-width: 640px) {
  .container {
	padding: 0 20px;
  }
  .hero-stats {
	flex-wrap: wrap;
	gap: 24px;
  }
  .cta-section {
	padding: 40px 24px;
  }
  .phone-link {
	font-size: 1.1rem;
  }
}
.about-image svg {
  width: 100%;
  height: auto;
  border-radius: 32px;
  display: block;
}
.logo-svg {
  display: block;
  width: auto;
  height: 28px;
}
.logo-footer-svg {
  display: block;
  width: auto;
  height: 70px; 
}
.logo svg,
.logo-footer svg {
  fill: currentColor; 
}
@media (max-width: 640px) {
  .logo-svg {
	height: 24px;
  }
  .logo-footer-svg {
	height: 42px;
  }
}