body, html {
	margin: 0;
	padding: 0;
	font-family: "system-ui", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background-color: #f3f3f6;
	color: #333;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	}

a:link {
	font-family: "system-ui", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.site-header {
	/* Positioning and Sticking to the top */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;

	/* Flexbox for layout */
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 24px;
	box-sizing: border-box; /* Ensures padding doesn't add to width */

	/* Background and Border Styles */
	background-color: rgba(255, 255, 255, 0.5);
	border-bottom: 1px solid #e5e5e5;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);

	/* Default height for wider screens */
	min-height: 56px; /* Use min-height to allow it to grow */
	transition: min-height 0.3s ease-in-out;

}


.logo-container {
	/* Precise positioning as per request */
	position: absolute;
	top: 9px;
	left: 5px;
	
}

.logo-container img {
	width: 220px;
	height: 44px;
	display: block;
}
  
      
.main-nav {
	/* Aligns all nav items (links list and button) */
	display: flex;
	align-items: center;
	justify-content: flex-end; /* Pushes items to the right */
	flex-wrap: wrap; /* Allows items to wrap to the next line */
	width: 100%; /* Take up remaining space */
	margin-left: 240px; /* Give space for the absolute positioned logo */
	padding-top: 5px; /* Add some padding for wrapped content */
	padding-bottom: 5px;
}

.nav-links {
	/* Styling for the list of links */
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap; /* Allow links themselves to wrap */
	justify-content: flex-end; /* Keep links right-aligned when they wrap */
}

.nav-links li {
	margin: 5px 12px; /* Add vertical margin for wrapping */
}


.nav-links a {
	text-decoration: none;
	color: #333;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap; /* Prevents link text from breaking */
	transition: color 0.2s;
}

.nav-links a:hover {
	color: #007aff;
}


.login-button {
  /* Remove default iOS styling */
  -webkit-appearance: none;
  appearance: none;

  /* Sizing for better readability and tap target */
  font-size: 1rem; /* Approx 16px, scales with user settings */
  padding: 0.75em 1.5em; /* 12px 24px, scales with font size */
  min-height: 44px; /* Meet minimum tap target recommendation */

  /* Original styling */
  box-shadow: inset 0px 1px 0px 0px #ffffff;
  background: linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
  background-color: #ffffff;
  border-radius: 8px; /* Slightly larger for a modern look */
  border: 1px solid #dcdcdc;
  color: #161616;
  font-weight: 600;
  text-decoration: none;
  
  /* Centering and layout */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-shrink: 0;

  /* Add feedback for tap/click */
  cursor: pointer; /* For desktop */
  transition: background-color 0.2s ease-in-out;
}

.login-button:hover {
	background: linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
}





.try-risk-free_button {
	box-shadow: inset 0px 1px 0px 0px #000000;
	background: linear-gradient(to bottom, #000000 5%, #000000 100%);
	background-color: #000000;
	border-radius: 6px;
	border: 1px solid #000000;
	display: inline-block;
	cursor: pointer;
	color: #ffffff;
	font-size: 11.5px;
	font-weight: 500;
	text-decoration: none;
	padding:6px 11px;

	margin: 5px 8px 5px 0px;
	transition: background-color 0.3s ease;
}

.try-risk-free_button:hover {
	background: #333;
}










/* Mobile Menu Toggle (for future use) */
.menu-toggle {
	display: none;
	cursor: pointer;
	float: right;
	line-height: 68px;
}






.page-container {
	padding: 1rem;
}





.card-container {
	width: 100%;    
	text-align: center; /* Center the inline-block cards */
	font-size: 0; /* Remove space between inline-block elements */
	margin-top: 0px;
	padding: 0px;
}




.crunchfeatures-container {
	display: flex;
    justify-content: center;
    gap: 2rem; /* Creates space between the cards */
    flex-wrap: wrap; /* Allows cards to stack vertically on smaller screens */
    max-width: 1000px;
	margin-top:12px;
}

        /* * Individual feature card styling 
         * This defines the look of each white card.
         */
        .crunchfeature-card {
            background-color: #ffffff;
            border-radius: 0.85rem;
            border: 1px solid #E5E7EB;
            padding: 29px 20px 24px 20px;
            text-align: center;
            width: 100%;
            max-width: 230px; /* Maximum width for each card */
            display: flex;
            flex-direction: column;
            align-items: center;
        }


        /* * Styling for the circular icon background 
         * This creates the colored circle behind each SVG icon.
         */
        .crunchicon-container {
            width: 56px;
            height: 56px;
            border-radius: 50%; /* Makes the div a perfect circle */
            background-color: #f7eaec; /* Light reddish/pink background */
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1rem;
        }

        /* * Styling for the SVG icons themselves 
         * This sets the color and size of the icons.
         */
        .crunchicon-container svg {
            color: #b53141; /* A muted red color for the icon stroke */
            width: 28px;
            height: 28px;
        }
        
        /* Heading style for the card title */
        .crunchfeature-card h3 {
            font-size: 17.5px;
			line-height: 24px;
            font-weight: 400;
            color: #212529; /* Dark text for high contrast */
            margin: 0 0 0.85rem 0;
        }

        /* Paragraph style for the card description */
        .crunchfeature-card p {
            font-size: 12.5px;
            color: #6c757d; /* A soft grey for the body text */
            line-height: 1.6;
            margin: 0;
        }



















        .card {
            background-color: #ffffff;
            padding: 1rem;
            border-radius: 0.85rem;
            border: 1px solid #E5E7EB;
            text-align: center;
            display: inline-block;
            vertical-align: top;
            width: 90%; /* For mobile */
            max-width: 250px; /* Control max size */
            margin: 0.75rem 1rem 0.9rem;
            font-size: 1rem; /* Reset font size */
            box-sizing: border-box;
        }

        .icon-wrapper {
            width: 56px; /* 64px */
            height: 56px; /* 64px */
            background-color: #f7eaec; /* New color */
            border-radius: 9999px; /* rounded-full */
            display: flex;
            align-items: center;
            justify-content: center;
			margin-top: 0.8rem;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 0.75rem;
        }

        .icon-svg {
            width: 28px; /* 32px */
            height: 28px; /* 32px */
            color: #b53141; /* New color */
        }
        


		



        .card-title {
            font-size: 17.5px;
            line-height: 1.6rem;
            font-weight: 400;
			margin-top: 0px;
            margin-bottom: 0.4rem;
            color: #000000;
        }

        .card-text {
            color: #717181;
            margin-top: 8px;
            font-size: 12.5px;
			margin-bottom: 3px;
        }









  /* Grid container for 4-box feature */
        .feature-grid-container {
            display: grid;
            grid-template-columns: 1fr; /* 1 column on mobile */
            gap: 2rem;
        }

        /* Style for the borderless feature items */
        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* Specific styles for the feature section icons and titles */
        .feature-item .icon-wrapper {
            background-color: #000000; /* Black circle */
        }

        .feature-item .icon-svg {
            color: #fdfdfe; /* Almost white icon line color */
        }

        .feature-item .card-title {
            color: #111827; /* Black title to match the new theme */
        }




















   /* NEW: Single Box Feature Styles */
        .single-feature-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem 0;
        }

        .single-feature-box {
            background-color: #ffffff;
            border-radius: 0.75rem; /* 12px */
            padding: 1.5rem 1.75rem;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
            max-width: 400px;
            width: 100%;
        }

		 .single-feature-box h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #374151;
            margin-top: 0;
            margin-bottom: 1.25rem;
        }

        .video-placeholder {
            background-color: #E5E7EB;
            border-radius: 0.5rem; /* 8px */
            aspect-ratio: 16 / 9;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .video-placeholder svg {
            width: 3rem;
            height: 3rem;
            color: #9CA3AF;
        }

        .single-feature-box p {
            text-align: center;
            color: #6B7280;
            margin-top: 1.5rem;
            margin-bottom: 0;
			font-size: 14px;
        }












        /* MODIFIED: Pricing Card Styles with prefix */
        .pricecard_container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 1.65rem 0;
        }
        .pricecard_card {
            background-color: #ffffff;
            border: 2px solid #000000;
            border-radius: 1rem; /* 16px */
            padding: 0.6rem 2rem; /* 40px */
            max-width: 400px;
            width: 100%;
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
            text-align: center;
        }
        .pricecard_title {
            font-size: 1.5rem; /* 24px */
            font-weight: 500;
            line-height: 1.75rem;
            margin-bottom: 0.9rem;
        }
        .pricecard_price-section {
            display: flex;
            justify-content: center;
            align-items: baseline;
            gap: 0.5rem;
			margin-top: 0px;
			padding-top: 0px;
            margin-bottom: 0px;
			padding-bottom: 6px;
        }
        .pricecard_current-price {
			margin-top: 0px;
			padding-top: 0px;
            font-size: 31.5px; /* 36px */
            font-weight: 400;
        }
        .pricecard_original-price {
            font-size: 15.75px; /* 18px */
            text-decoration: line-through;
            color: #6B7280;
        }
        .pricecard_limit-text {
			margin-top: 0px;
			padding-top: 0px;
            color: #6B7280;
            margin-bottom: 1.6rem;
			font-size: 14px;
        }
        .pricecard_features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 1.75rem 0;
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
			font-size: 14px;
        }
        .pricecard_feature-list-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .pricecard_feature-icon {
            width: 1.25rem;
            height: 1.25rem;
            color: #22c55e;
        }
        .pricecard_cta-button {
            width: 100%;
            background-color: #111827;
            color: #ffffff;
            border: none;
            padding: 1rem;
            font-size: 14px;
            font-weight: 600;
            border-radius: 0.5rem;
            cursor: pointer;
            margin-bottom: 0.5rem;
			text-decoration: none;
        }

		.pricecard_cta-button a {
			text-decoration: none !important;
		}

		.pricecard_cta-button:hover {
			background: #333;
		}



        .pricecard_disclaimer-text {
            font-size: 12.25px; /* 14px */
            color: #6B7280;
			padding-bottom: 4px;
        }






		/* NEW: Testimonial Section Styles */
        .testimonial_container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .testimonial_card {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            padding: 1.4rem;
            display: flex;
            flex-direction: column;
        }
        .testimonial_stars {
            display: flex;
            gap: 0.25rem;
            color: #facc15; /* yellow-400 */
            margin-bottom: 0.75rem;
        }
        .testimonial_star-icon {
            width: 1.25rem;
            height: 1.25rem;
        }
        .testimonial_quote {
            font-size:14px;
            line-height: 1.5rem;
            color: #707080;
            margin: 0 0 1.1rem 0;
            flex-grow: 1;
			text-align: left;
        }
        .testimonial_author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .testimonial_avatar {
            width: 3rem;
            height: 3rem;
            border-radius: 9999px;
            background-color: #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            color: #4b5563;
            flex-shrink: 0;
        }
        .testimonial_author-info {
            text-align: left;
        }
        .testimonial_author-name {
			font-size: 14px;
            font-weight: 600;
            color: #111827;
        }
        .testimonial_author-title {
            color: #6b7280;
			font-size: 12px;
		}			








/* NEW: FAQ Section Styles */
        .faq_container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq_item {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 0.75rem; /* 12px */
            margin-bottom: 1rem;
            overflow: hidden;
        }
        .faq_item.active {
            border-color: #d1d5db;
        }
        .faq_question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.05rem; /* 20px */
            cursor: pointer;
            font-weight: 500;
            font-size: 14px;
			color: #111827;
        }
        .faq_icon {
            width: 1.5rem;
            height: 1.5rem;
            color: #9ca3af;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }
        .faq_item.active .faq_icon {
            transform: rotate(180deg);
        }
        .faq_answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            color: #111827;
            line-height: 1.6;
			text-align: left;
			font-size: 14px;
        }
        .faq_answer p {
            padding: 0 1.25rem 1.25rem;
            margin: 0;
        }






/* CTA Section Styles */
        .cta-section {
            background-color: #111827; /* Dark background */
            color: #F9FAFB; /* Light text color */
            padding: 3.4rem 1.5rem 2.2rem 1.5rem; /* Vertical and horizontal padding */
            text-align: center;
            margin-top: 5rem; /* Space above the CTA */
        }

        .cta-headline {
            font-size: 30px; /* Large font size */
            line-height: 2.5rem;
            font-weight: 400;
            margin: 0 auto 1.7rem auto;
            max-width: 600px;
        }

        .cta-button {
            display: inline-block;
            background-color: #ffffff; /* White background */
            color: #111827; /* Dark text */
            padding: 0.5rem 2rem; /* MODIFIED: Further reduced vertical padding */
            font-size: 14px;
            font-weight: 600;
            border-radius: 0.5rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .cta-button:hover {
            background-color: #E5E7EB; /* Light gray on hover */
        }

        .cta-subtext {
            margin-top: 1.25rem;
            font-size: 12.25px;
            color: #D1D5DB; /* Lighter gray for subtext */
        }






        /* Footer Styles */
        .footer {
            width: 100%;
            background-color: #F9FAFB; /* Same as body background */
            padding: 2rem 1rem;
            color: #6B7280; /* Gray text color */
            text-align: center;
        }

        .footer-logo-area {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 0.65rem;
        }

        .footer-logo-image {
            height: 2.5rem; /* 40px */
            width: auto;
        }

        .footer-tagline {
            margin-bottom: 1.8rem;
			margin-top: 0px;
			padding: 0px;
            font-size: 14px; /*  40px */
			color: #737482;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .footer-link {
            text-decoration: none;
            color: #6B7280;
            font-size: 12.25px;
        }
        .footer-link:hover {
            text-decoration: underline;
        }

        /* MODIFIED: Horizontal rule styles */
        .footer-hr {
            border: 0;
            height: 1px;
            background-color: #E5E7EB;
            margin-bottom: 2rem;
            width: 60%; /* Set width */
            margin-left: auto; /* Center horizontally */
            margin-right: auto; /* Center horizontally */
        }

        .footer-copyright {
            font-size: 12.25px;
        }









        /* Styling for the main toggle button */
        #toggleBtn {
            padding: 12px 24px;
            font-size: 16px;
            cursor: pointer;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            margin-bottom: 20px;
            transition: background-color 0.3s;
        }

        #toggleBtn:hover {
            background-color: #0056b3;
        }

        /* Common styling for both form containers */
        .form-container {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 300px;
            display: flex;
            flex-direction: column;
            gap: 15px; /* Creates space between form elements */
        }
        
        .form-container h2 {
            margin-top: 0;
            text-align: center;
        }

        /* Styling for form inputs */
        .form-input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box; /* Ensures padding doesn't affect width */
        }

        /* Styling for the form's submit button */
        .submit-btn {
            width: 100%;
            padding: 12px;
            background-color: #28a745;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background-color: #218838;
        }

        /* Styling for navigation links within forms */
        .form-link-container {
            text-align: center;
            margin-top: 10px;
        }

        .form-link {
            color: #007bff;
            text-decoration: none;
            font-size: 14px;
            cursor: pointer;
        }

        .form-link:hover {
            text-decoration: underline;
        }








/* Responsive styles for tablets and larger (sm breakpoint) */
@media (min-width: 640px) {
	.page-container {
		padding: 2rem; //give these items a larger border
	}

	.feature-grid-container {
		grid-template-columns: repeat(2, 1fr); /* the "How It Works" features.. 2 columns on small screens */
	}

	.signup_form {
		flex-direction: row;
	}
	/* MODIFIED: Added rule to make input flexible */
	.signup_input {
		flex: 1;
	}
}

/* Responsive styles for medium-sized screens and larger (md breakpoint) */
@media (min-width: 788px) {


	.card-container {
		flex-direction: row; /* Switch to side-by-side layout */
	}
	.feature-grid-container {
		grid-template-columns: repeat(4, 1fr); /* the "How It Works" features.. 4 columns on small screens */
	}
	.testimonial_container {
		grid-template-columns: repeat(3, 1fr); /* switches to three side by side */
	}
}


@media (max-width: 720px) {
	.site-header {
		/* Header becomes shorter on narrow screens */
		min-height: 56px;
		height: auto; /* Allow height to adjust to content */
		padding: 0 16px;
	}

	.logo-container {
		/* Keep logo at the top on mobile */
		top: 9px;
		/* No longer vertically centered */
		transform: none;
	}

	.logo-container img {
		/* Optionally scale down the logo on mobile */
		width: 180px;
		height: 36px;
	}

	.main-nav {
		/* Adjust margin for smaller logo */
		margin-left: 0; /* Let it take full width */
		justify-content: center; /* Center the nav items on mobile */
		padding-top: 55px; /* Push nav below the logo */
	}
}
        
        /* This media query handles the wrapping behavior.
           It's set to a wider breakpoint to show the wrapping.
        */


@media (max-width: 880px) {
             .main-nav {
                /* This causes the items to wrap and stay aligned to the right */
                justify-content: flex-end;
            }
            .nav-links {
                 /* Ensure the links also justify to the end when they wrap */
                justify-content: flex-end;
                flex-wrap: wrap;
                /* Add a small gap for wrapped lines */
                row-gap: 8px;
            }
        }


