            :root {
            --primary: #000A23;
            --text: #000A23;
            --light: #ffffff;
        }
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
     }
        
        body {
     font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            background: white;
      }
        
        h1, h2 {
            font-weight: 700;
            line-height: 1.2;
        }
          header{
  display: flex;
  justify-content: space-between;
  padding: 12px;
  position: sticky;
  top:0;
  z-index:99999;
  border:2px solid #ddd;
  align-content: center;
  background:#fff;
}


.brand{
  font-size: 22px;
  font-weight: 900;
  align-self: center;
  filter:blur(0.5px);
}
.cta{
  display: inline-block;
background: var(--primary);
color: #fff;
font-size: 14px;
font-weight: 700;
border-radius: 12px;
padding:10px 14px;
text-decoration: none;
transition: all 0.3s ease;
border:none;
margin-bottom: 12px;
align-self: center;
}
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes avatarPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }
        
        .section {
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }
        
 .about-c, .problem-c, .solution-c, .offer-c, .for-c, .vision-c, .mission-c, .team-c {
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .about {
            background: white;
            padding: 100px 20px 80px;
            text-align: center;
            display: flex;
        }
        
        .about h1 {
            font-size: clamp(2.8rem, 8vw, 4.5rem);
            color: var(--primary);
            margin-bottom: 24px;
        }
        
        .about-c p {
            font-size: 1.35rem;
            max-width: 780px;
            margin: 0 auto;
            color: #334155;
        }
        
        .problem, .solution, .offers, .for, .vision, .mission, .teams {
            padding: 80px 20px;
            background: white;
        }
        h2{
            justify-content: center;
        }
        .problem-c h2, .solution-c h2, .offers h2, .for-c h2, .vision-c h2, .mission-c h2, .teams h2 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
        }
        
        .problem-c h2:after, .solution-c h2:after, .offers h2:after, .for-c h2:after, .vision-c h2:after, .mission-c h2:after, .teams h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--primary);
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 9999px;
        }
        
        .problem-c p, .solution-c p, .for-c p, .vision-c p, .mission-c p {
            font-size: 1.25rem;
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
            color: #334155;
        }
        
        .offer-c {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }
        
        .offer {
            background: white;
            border: 2px solid #f1f5f9;
            border-radius: 24px;
            padding: 40px 24px;
            text-align: center;
            box-shadow: 0 10px 15px rgba(0, 10, 35, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .offer:hover {
            transform: translateY(-12px);
            border-color: var(--primary);
            box-shadow: 0 20px 25px rgba(0, 10, 35, 0.12);
        }
        
        .team-c {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 12px;
            margin-top: 40px;
        }
        
        .team {
            text-align: center;
            transition: all 0.3s ease;
            margin-bottom: 12px;
        }
        
        .team:hover {
            transform: translateY(-8px);
        }
        
        .avatar {
            width: 110px;
            height: 110px;
            margin: 0 auto 20px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 42px;
            font-weight: 700;
            color: white;
            background: var(--primary);
            box-shadow: 0 10px 20px rgba(0, 10, 35, 0.25);
            animation: avatarPulse 3s infinite ease-in-out;
        }
        
        .team p.name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text);
        }
        
        .team span.role {
            color: var(--primary);
            font-weight: 500;
            display: block;
        }
        
        .vision, .mission {
            background: white;
        }
        
        .vision-c, .mission-c {
            display: grid;
            grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
            margin: 0 auto;
            background: white;
            padding: 48px 36px;
            border-radius: 28px;
            border: 2px solid #f1f5f9;
            box-shadow: 0 15px 30px rgba(0, 10, 35, 0.08);
            transition: all 0.3s ease;
        }
        
        .vision-c:hover, .mission-c:hover {
            transform: scale(1.03);
        }
        
        footer {
            background: var(--primary);
            color: white;
            padding: 80px 20px 40px;
            text-align: center;
        }
        
        footer p {
            font-size: 1.25rem;
            max-width: 620px;
            margin: 0 auto 40px;
            color: #e0f2ff;
        }
        
        .contact {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.15);
            padding: 18px 36px;
            border-radius: 9999px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.3);
        }
        
        .contact a {
            color: white;
        }
        
        @media (max-width: 768px) {
            .about {
                padding: 80px 20px 60px;
            }
            
            .problem, .solution, .offers, .for, .vision, .mission, .teams {
                padding: 60px 20px;
            }
            
            .problem-c h2, .solution-c h2, .offers h2, .for-c h2, .vision-c h2, .mission-c h2, .teams h2 {
                font-size: 2.4rem;
            }
            
            .about h1 {
                font-size: 2.8rem;
            }
            
            .offer-c {
                grid-template-columns: 1fr;
            }
            
            .team-c {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }
        }
