
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  /* position: relative; */
  font-weight: normal;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;   /* grow to fill available space */
}

footer {
  flex-shrink: 0;   /* always stick to the bottom */
}

a {
	text-decoration: none;	
}


html, main, body, #app {
    height: 100%;
}

body {
  height: 100%;
  color: #2c3e50;
  /* background: var(--color-background); */
 /* background-color: #f4f3ef;*/
  transition: color 0.5s, background-color 0.5s;
  line-height: 1.6;
  /* font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; */
  font-family: 'Inter', Roboto, sans-serif;
  font-size: 15px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
 /* background-color: #f9fafb;*/
  margin: 0;
  /*padding: 2rem;*/
  color: #2e2e2e;
}

.content-container, .checklist {
	z-index: 10;
}
.checklist {
	
}
.blur {
	opacity: 65%;

}
.blob {
	background-color: #f9731680;
	border-radius: 3.35544e+07px;
	width: 50%;
	height: 20%;
	position: absolute;
    left: 25%;
    top: 50%;
	filter: blur(40px);
	z-index: 0;
}

.task {
    border: 3px solid;
    width: 21rem;
    max-width: 23rem;
    position: relative;
    border-radius: 10px !important;
}

.task:not(:nth-last-child(1))::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 4px;
  height: 40px; /* This should match your margin-bottom */
  background: #333;
  transform: translateX(-50%);
  z-index: -1;
}

.task .due-soon {
	color: #fd7e14;      /* bootstrap orange */
    font-weight: 600;
}
.task .due-chip {
	background-color: #dcfff1;
	color: #3e8473;
	padding: 2px;
}

.task .due-overdue {
	background-color: #ffeceb;
	color: #be4b34;
	padding: 2px;
}

.btn-orange {
	background-color: #db6513;
	color: white;
}

.btn-orange:hover {
	background-color: #ff6800;
	color: white;
}

.code {
	font-family: 'Courier New'
}

h1 {
	font-size: 50px;
}
@media (min-width: 1024px) {
  body {
    /*display: flex;
    place-items: center;*/
    h1 {
		font-size: 80px;
	}
  }

}

/* swing animation */
@keyframes swing {
  20% { transform: rotate(5deg); }
  40% { transform: rotate(-3deg); }
  100% { transform: rotate(0deg); }
}

.swing {
  display: inline-block; /* so transform works nicely */
  animation: swing 0.2s ease;
  transform-origin: top center; /* pivot point */
}

/* Rounded Checkbox */
.custom-checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px; /* Adjust as needed */
    cursor: pointer;
    user-select: none;
}

.custom-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 4px;
	left: 4px;
    height: 25px; /* Adjust as needed */
    width: 25px;  /* Adjust as needed */
    background-color: #eee;
    border-radius: 50%; /* Makes it round */
    border: 1px solid #ccc;
}

/* Style when checked */
.custom-checkbox-container input:checked ~ .checkmark {
    background-color: #16cf11; /* Example checked color */
    border-color: #16cf11;
}

/* Add a custom checkmark inside the circle */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox-container input:checked ~ .checkmark:after {
    display: block;
    /* Add styles for your checkmark icon (e.g., using a background image, SVG, or CSS shapes) */
    left: 9px; /* Adjust position */
    top: 5px;  /* Adjust position */
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.gradient-border {
  border: 3px solid #0b5ed7 !important; /* Set a transparent border */
}

.text-gradient {
  background-image: linear-gradient(to right, #d247bf, #f97316); /* Pink to Orange gradient */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-gradient {
  	/* background: #D247BF;
	background: linear-gradient(88deg,rgba(210, 71, 191, 1) 0%, rgba(249, 115, 22, 0.35) 100%); */
	background: #D247BF;
background: linear-gradient(88deg,rgba(210, 71, 191, 1) 0%, rgba(249, 115, 22, 1) 100%);
}


.bg-muted {
	background-color: #CECECE !important;
}
.bg-complete {
	background-color: #c6efce !important;
}

.bg-config {
	background-color: #f4f5ff !important;
}
.hand {
	cursor: pointer;
}
.error-muted {
	background-color: #ffcece !important;
}
.border-error {
	border: 2px solid #d31818 !important;
}



/*SEO*/
.pain-points, .solution  {
    padding: 40px 0;
    background: #f8f9fa;
}

.pain-points h2, .solution h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pain-points .subtitle, .solution .subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pain-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.pain-item .icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.pain-item h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.cta-button {
    display: inline-block;
    background: #d247bf;
    color: white;
    padding: 12px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    background: #f146da;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}


.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.solution-item {
    text-align: center;
    padding: 20px;
}

.solution-item .number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.solution-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}


.benefits {
    padding: 80px 0;
    color: white;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.benefit-item .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.social-proof {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.social-proof h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial blockquote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    background: #fff;
    border-left: none;
    margin: 0px;
    padding: 0px;
    padding-right: none;
}

.testimonial .author {
    font-weight: 600;
    color: #2c3e50;
}

/* FAQ polish */
.faq-accordion .accordion-item {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: .5rem;
  overflow: hidden;
  margin-bottom: .75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.faq-accordion .accordion-button {
  padding: .9rem 1rem;
  font-weight: 600;
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 .2rem rgba(13,110,253,.15);
}

.faq-accordion .accordion-body {
  padding: 1rem 1rem 1.1rem;
  line-height: 1.6;
}

/* Optional: tighter container on wide screens */
@media (min-width: 992px) {
  #faq.container { max-width: 860px; }
}

.pdf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  background: #f5f5f5;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.pdf-btn:hover {
  background: #eee;
}

h1, .loopy-font {
	font-family: 'Irish Grover';
	background-image: linear-gradient(to right, #d247bf, #f97316); /* Pink to Orange gradient */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
h1.regular-font, h1 .regular-font,  .loopy-font {
	font-family: 'Inter', sans-serif;
	background-image: none;
	color: black;
}