*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Public Sans',sans-serif;
color:#222;
background:#fff;
overflow-x:hidden;
}

img{
max-width:100%;
display:block;
}

.container{
max-width:1180px;
margin:auto;
padding:0 20px;
}

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

nav a{
margin:0 15px;
text-decoration:none;
color:#333;
transition:0.3s;
}

nav a:hover{
color:#3b5cff;
}

.btn-primary{
background:#3b5cff;
color:white;
border:none;
padding:12px 24px;
border-radius:2px;
cursor:pointer;
transition:0.3s;
}

.btn-primary:hover{
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.btn-outline{
border:1px solid #3b5cff;
background:transparent;
padding:12px 24px;
border-radius:6px;
cursor:pointer;
margin-left:10px;
}

.hero{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
padding-top:80px;
}

.hero-left{
flex:1;
max-width:520px;
}

.hero-subtitle{
font-size:14px;
color:#6b7280;
display:block;
margin-bottom:16px;
}

.hero h1{
font-family:'Plus Jakarta Sans',sans-serif;
font-size:60px;
font-weight:700;
line-height:1.1;
margin-bottom:20px;
}

.hero p{
font-size:16px;
color:#6b7280;
line-height:1.6;
margin-bottom:30px;
}

.hero-form{
display:flex;
background:#f3f4f6;
border-radius:6px;
overflow:hidden;
width:420px;
}

.hero-form input{
flex:1;
border:none;
padding:14px;
font-size:14px;
outline:none;
background:transparent;
}

.hero-form button{
border-radius:0;
}

.hero-benefits{
margin-top:14px;
font-size:13px;
color:#6b7280;
display:flex;
gap:20px;
}

.hero-right{
flex:1;
display:flex;
justify-content:center;
}

.hero-right img{
max-width:550px;
width:100%;
height:auto;
}

.features{
padding:120px 0;
text-align:center;
}

.features-title{
font-size:36px;
font-weight:700;
margin-bottom:70px;
line-height:1.3;
}

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

.feature-item{
text-align:center;
}

.feature-item img{
width:100%;
max-width:320px;
margin:auto;
margin-bottom:30px;
}

.feature-item h3{
font-size:18px;
font-weight:600;
margin-bottom:10px;
}

.feature-item p{
font-size:14px;
color:#6b7280;
line-height:1.6;
}

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

.card:hover{
transform:translateY(-6px);
}

.highlight {
  background: #fafafa;
  padding: 100px 0;
}

.highlight-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.highlight-image {
  flex: 1;
  max-width: 450px;
}

.highlight-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.highlight-text {
  flex: 1;
  max-width: 450px;
}

.highlight-text h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #222;
}

.highlight-text p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
}

.stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 100px 20px;
}

.stats-left {
  flex: 1;
  max-width: 450px;
}

.stats-left h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #222;
}

.stats-left p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
}

.stats-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chart {
  max-width: 500px;
  width: 100%;
  background: transparent;
  border-radius: 0;
}

.chart img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blue-section {
  background: #3557ff;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.blue-section h2 {
  font-size: 40px;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.2;
}

.blue-card-single {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.blue-card-single:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.2);
}

.blue-card-single img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 30px;
  border-radius: 12px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.blue-card-single p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

.blog {
  padding: 100px 20px;
  text-align: center;
}

.blog h2 {
  font-size: 42px;
  font-weight: 700;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.2;
  color: #222;
}

.blog-single {
  max-width: 900px;
  margin: 0 auto;
}

.blog-single img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-single img:hover {
  transform: scale(1.02);
}

.community{
background:#f6c24a;
text-align:center;
padding:80px 0;
}

.community-form{
margin-top:20px;
}

.community input{
padding:12px;
border:none;
border-radius:6px;
width:250px;
margin-right:10px;
}

.footer {
  background: #f8f9fa;
  padding: 70px 0 30px;
  border-top: 1px solid #e9ecef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.footer-description {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  max-width: 280px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  text-decoration: none;
  color: #6b7280;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #3557ff;
}

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
}

.footer-copyright p {
  font-size: 14px;
  color: #8a8f99;
}

/* animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
}

/* responsive */

@media (max-width: 1024px) {
  .highlight-content,
  .stats {
    gap: 40px;
  }
  
  .highlight-text h2,
  .stats-left h2,
  .blue-section h2 {
    font-size: 36px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .footer-col:first-child {
    grid-column: span 3;
  }
  
  .footer-description {
    max-width: 100%;
  }
  
  .blue-section h2,
  .blog h2 {
    font-size: 36px;
  }
  
  .blue-card-single p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-col:first-child {
    grid-column: span 2;
  }
  
  .blue-section h2,
  .blog h2 {
    font-size: 32px;
  }
  
  .blue-card-single {
    padding: 20px;
  }
  
  .blue-card-single p {
    font-size: 16px;
  }
  
  .blog {
    padding: 60px 20px;
  }
}

@media(max-width:900px){

.hero{
flex-direction:column;
text-align:center;
}

.features-grid{
grid-template-columns:1fr;
}

.highlight-content{
flex-direction:column;
}

.stats{
flex-direction:column;
}

.features-grid{
grid-template-columns:1fr;
gap:40px;
}

.highlight-content {
  flex-direction: column;
  text-align: center;
  gap: 40px;
}
  
.highlight-text,
.highlight-image {
  max-width: 100%;
}
  
.stats {
  flex-direction: column;
  text-align: center;
}
  
.stats-left {
  max-width: 100%;
}
  
.highlight-text h2,
.stats-left h2 {
  font-size: 32px;
}
  
.highlight-text p,
.stats-left p {
  font-size: 16px;
}

}

@media (max-width: 480px) {
.highlight,
.stats {
  padding: 60px 0;
}

.footer-grid {
  grid-template-columns: 1fr;
  gap: 30px;
}
  
.footer-col:first-child {
  grid-column: span 1;
}
  
.blue-section {
  padding: 60px 0;
}
  
.blue-section h2,
.blog h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

}