@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

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

.post-1044 body { 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important; 
  line-height: 1.6; 
  color: #1a1a1a;
}

.post-1044 .hero { 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  color: white; 
  padding: 100px 20px 120px; 
  text-align: center; 
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
}

.post-1044 .hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }

.post-1044 .hero h1 { 
  font-size: clamp(2em, 5vw, 3.5em) !important;
  margin-bottom: 25px; 
  line-height: 1.2; 
  font-weight: 800 !important;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: fadeInUp 0.8s ease-out;
  color: white !important;
}

.post-1044 .hero h2 { 
  font-size: clamp(1.1em, 2.5vw, 1.4em) !important;
  font-weight: 300 !important; 
  margin-bottom: 40px;
  opacity: 0.95;
  color: white !important;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.post-1044 .container { 
  max-width: 1100px; 
  margin: 0 auto; 
  padding: 80px 20px; 
}

.post-1044 .problem { 
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 20px; 
  margin: 0 -20px;
}

.post-1044 .problem h2 { 
  color: #1a1a1a !important; 
  font-size: clamp(2em, 4vw, 2.8em) !important;
  text-align: center; 
  margin-bottom: 50px;
  font-weight: 700 !important;
}

.post-1044 .checkmark-container {
  display: grid;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.post-1044 .checkmark { 
  background: white;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  font-size: 1.15em;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.post-1044 .checkmark:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.post-1044 .checkmark::before {
  content: '✓';
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.post-1044 .cta-text {
  text-align: center;
  margin-top: 50px;
  font-size: 1.5em;
  font-weight: 600;
  color: #667eea;
}

.post-1044 .solution { 
  padding: 80px 20px; 
  background: white; 
}

.post-1044 .solution h2 { 
  color: #667eea !important; 
  font-size: clamp(2em, 4vw, 2.8em) !important;
  text-align: center; 
  margin-bottom: 60px;
  font-weight: 700 !important;
}

.post-1044 .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.post-1044 .feature { 
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 35px; 
  border-radius: 20px; 
  border-left: 5px solid #667eea;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.post-1044 .feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
}

.post-1044 .feature h3 { 
  color: #1a1a1a !important; 
  margin-bottom: 15px; 
  font-size: 1.6em !important;
}

.post-1044 .feature p {
  color: #555;
  font-size: 1.05em;
  line-height: 1.7;
}

.post-1044 .proof { 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white; 
  padding: 80px 20px; 
  text-align: center; 
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
}

.post-1044 .proof h2 { 
  font-size: clamp(2em, 4vw, 2.8em) !important;
  margin-bottom: 50px;
  font-weight: 700 !important;
  color: white !important;
}

.post-1044 .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.post-1044 .stat { 
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  font-size: 2em;
  font-weight: 700;
  transition: transform 0.3s;
}

.post-1044 .stat:hover {
  transform: scale(1.05);
  background: rgba(255,255,255,0.15);
}

.post-1044 .cta { 
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  padding: 90px 20px; 
  text-align: center; 
  color: white; 
  margin: 0 -20px;
}

.post-1044 .cta h2 { 
  font-size: clamp(2em, 4vw, 2.8em) !important;
  margin-bottom: 25px;
  font-weight: 700 !important;
  color: white !important;
}

.post-1044 .form-section { 
  max-width: 650px; 
  margin: 50px auto; 
  background: white; 
  padding: 50px; 
  border-radius: 25px; 
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.post-1044 .form-group { 
  margin-bottom: 25px;
  text-align: left;
}

.post-1044 .form-group label { 
  display: block; 
  margin-bottom: 10px; 
  font-weight: 600; 
  color: #1a1a1a;
  font-size: 1.05em;
}

.post-1044 .form-group input, 
.post-1044 .form-group select { 
  width: 100%; 
  padding: 16px 20px; 
  border: 2px solid #e0e0e0; 
  border-radius: 12px; 
  font-size: 1.05em;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.post-1044 .form-group input:focus, 
.post-1044 .form-group select:focus { 
  outline: none; 
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.post-1044 .btn-cta { 
  background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
  color: #1a1a1a !important; 
  padding: 20px 50px; 
  font-size: 1.4em; 
  font-weight: 700; 
  border: none; 
  border-radius: 50px; 
  cursor: pointer; 
  box-shadow: 0 10px 30px rgba(255, 183, 77, 0.4);
  transition: all 0.3s; 
  width: 100%;
}

.post-1044 .btn-cta:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 15px 40px rgba(255, 183, 77, 0.5);
}

@media (max-width: 768px) {
  .post-1044 .hero { padding: 60px 15px 80px; }
  .post-1044 .container { padding: 50px 15px; }
  .post-1044 .problem, 
  .post-1044 .solution, 
  .post-1044 .proof, 
  .post-1044 .cta { padding: 50px 15px; }
  .post-1044 .form-section { padding: 30px 20px; }
}