
/*
Theme Name: Fintech Landing Pro
*/

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  color: #1a1a1a;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1,h2,h3 {
  margin: 0;
}

.hero {
  background: #f5f7fb;
  padding: 80px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
}

.hero-text p {
  margin: 20px 0;
  color: #666;
}

.hero-buttons a {
  margin-right: 10px;
}

.btn-primary {
  background: #1f4fff;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid #ccc;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
}

.hero-image img {
  width: 450px;
  border-radius: 10px;
}

/* SERVICES */
.services {
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.services-grid {
  display: flex;
  gap: 20px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  flex:1;
}

.icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/* FEATURES */
.features {
  background: #f5f7fb;
  padding: 80px 0;
}

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

.feature span {
  color: #1f4fff;
  font-weight: bold;
}

/* STATS */
.stats {
  padding: 80px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  gap: 50px;
}

.circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #1f4fff;
  color: white;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.stats-list p {
  margin: 10px 0;
}
