	/* General Styles */
	* {
	  margin: 0;
	  padding: 0;
	  box-sizing: border-box;
	  font-family: 'Inter', sans-serif;
	}

	body {
	  margin: 0;
	  background-color: #fff;
	  color: #111;
	  line-height: 1.6;
	  font-family: 'Inter', sans-serif;
	}

	a {
	  text-decoration: none !important;
	}

	/* Typography */
	h1 {
	  font-family: 'Inter', sans-serif;
	  font-weight: 600;
	  font-size: 54px;
	}

	h3 {
	  font-family: 'Inter', sans-serif;
	  font-weight: 600;
	  font-size: 53px;
	  color: #282828;
	}

	h4 {
	  font-family: 'Inter', sans-serif;
	  font-weight: 600;
	  font-size: 54px;
	}

	h6 {
	  font-weight: 600;
	  font-size: 16px;
	}

	p {
	  font-family: 'Inter', sans-serif;
	  font-weight: 400;
	  font-size: 18px;
	}

	.best-time-text {
	  font-family: 'Inter', sans-serif;
	  font-weight: 600;
	  font-size: 16px;
	  line-height: 26px;
	  letter-spacing: 0;
	  text-align: center;
	  margin-bottom: 0.25rem;
	}

	.text-muted {
	  color: #5F6980 !important;
	}

	/* Header */
	header {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  padding: 1rem 2rem;
	  border-bottom: 1px solid #eee;
	}

	.logo {
	  font-weight: 700;
	}

	.navbar-custom {
	  height: 80px;
	  padding: 0 100px;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  background-color: #fff;
	  position: relative;
	}

	.navbar-logo {
	  flex: 0 0 auto;
	}

	.navbar-logo img {
	  height: 24px;
	}

	.spacer-between-logo-and-menu {
	  width: 60px;
	}

	.navbar-links,
	.navbar-actions {
	  display: flex;
	  align-items: center;
	  gap: 15px;
	}

	.navbar-links {
	  gap: 40px;
	  padding: 15px;
	  flex: 0 0 auto;
	}

	.navbar-links a,
	.navbar-actions a {
	  color: #1b1b1b;
	  text-decoration: none;
	  font-weight: 600;
	  font-size: 14px;
	}

	.navbar-flex-fill {
	  flex: 1 1 auto;
	}

	.hamburger {
	  display: none;
	  flex-direction: column;
	  gap: 4px;
	  cursor: pointer;
	}

	.hamburger div {
	  width: 25px;
	  height: 3px;
	  background-color: #333;
	}

	/* Buttons */
	.btn {
	  display: inline-block;
	  padding: 12px 24px;
	  font-size: 14px;
	  font-weight: 600;
	  border-radius: 9999px;
	  text-decoration: none;
	  transition: all 0.3s ease;
	  align-items: center;
	  justify-content: center;
	  text-align: center;
	}

	.btn-green {
	  background: linear-gradient(315deg, #28A71A 0%, #208615 100%);
	  color: #fff;
	  border: none;
	  border-radius: 999px;
	  font-size: 14px;
	}

	.btn-green:hover {
	  opacity: 0.9;
	  background-color: #159814;
	}

	.btn-white {
	  background-color: #fff !important;
	  color: #212121 !important;
	  border-radius: 50px;
	  padding: 10px 20px;
	}

	.btn-outline-pill {
	  width: 100%;
	  padding: 12px 28px;
	  color: #212121;
	  background-color: transparent;
	  border-radius: 39px;
	  border: 2px solid transparent;
	  font-size: 14px;
	  font-weight: 500;
	  cursor: pointer;
	  background-image: linear-gradient(#fff, #fff), linear-gradient(315deg, #28A71A 0%, #208615 100%);
	  background-origin: border-box;
	  background-clip: padding-box, border-box;
	  transition: all 0.3s ease;
	}

	.btn-outline-pill:hover {
	  color: #212121;
	  background-color: #28A71A;
	}

	.btn-link {
	  color: #111827;
	}

	.btn-primary {
	  background-color: #22C55E;
	  color: white;
	}

	.btn-primary:hover {
	  background-color: #16A34A;
	}

	.start-btn {
	  background: linear-gradient(315deg, #28A71A 0%, #208615 100%);
	  color: white;
	}

	.btn-gradient {
	  background: linear-gradient(315deg, #28A71A 0%, #208615 100%);
	  color: white !important;
	  border-radius: 35px;

	}

	/* Hero Section */
	.hero {
	  background: linear-gradient(to right, #007300, #006000);
	  color: #fff;
	  padding: 3rem 2rem;
	  border-radius: 20px;
	  text-align: center;
	}

	.hero h1 {
	  font-size: 2.75rem;
	  font-weight: 900;
	  font-family: 'Inter', sans-serif;
	  font-style: normal;
	  font-size: 77px;
	  text-align: center;
	  color: #171717;
	}

	.hero p {
	  margin-top: 1rem;
	  font-size: 17px;
	  font-weight: 400;
	  line-height: 35px;
	  text-align: center;
	  color: #5F5F5F;
	}

	/* Plans Section */
	.plans {
	  display: flex;
	  justify-content: center;
	  gap: 1.5rem;
	  flex-wrap: wrap;
	  padding: 2rem;
	}

	.plan {
	  border: 1px solid #DDDDDD;
	  border-radius: 24px;
	  padding: 32px;
	  width: auto;
	  gap: 24px;
	}

	.plan h3 {
	  margin-bottom: 0.5rem;
	  font-family: 'Inter', sans-serif;
	  font-weight: 600;
	  font-size: 18px;
	}

	.plan p {
	  font-family: 'Inter', sans-serif;
	  font-weight: 400;
	  font-size: 16px;
	  line-height: 26px;
	  vertical-align: middle;
	}

	.price {
	  font-size: 1.5rem;
	  font-weight: 700;
	  margin: 0.5rem 0;
	}

	.features {
	  list-style: none;
	  margin-top: 1rem;
	}

	.features li::before {
	  content: '\2713';
	  color: #282828;
	  margin-right: 0.5rem;
	}

	.features p {
	  font-family: 'Inter', sans-serif;
	  font-weight: 400;
	  font-size: 16px;
	  line-height: 24px;
	  vertical-align: middle;
	  color: #737373;
	}

	/* FAQ Section */
	.faq {
	  max-width: 800px;
	  margin: 2rem auto;
	  padding: 1rem;
	}

	.faq h2 {
	  text-align: center;
	  font-size: 1.5rem;
	  margin-bottom: 1rem;
	}

	.faq h4 {
	  text-align: center;
	}

	.faq-item {
	  margin-bottom: 1rem;
	  border-bottom: 1px solid #ddd;
	  padding-bottom: 0.5rem;
	}

	.faq-item strong {
	  font-family: 'Inter', sans-serif;
	  font-weight: 600;
	  font-size: 16px;
	  line-height: 26px;
	}

	.faq-item p {
	  font-family: 'Inter', sans-serif;
	  font-weight: 400;
	  font-size: 16px;
	  line-height: 26px;
	  color: #5F6980;
	}

	/* Footer */
	footer {
	  padding: 60px 20px;
	  font-size: 14px;
	  color: #6b7280;
	  background-color: #f9fafb;
	}

	.footer-container {
	  max-width: 1200px;
	  margin: 0 auto;
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: space-between;
	}

	.footer-column {
	  margin-bottom: 20px;
	  min-width: 150px;
	}

	.footer-column h4 {
	  color: #111827;
	  font-size: 14px;
	  font-weight: 600;
	  margin-bottom: 8px;
	}

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

	.footer-column li {
	  margin-bottom: 6px;
	}

	.footer-column a {
	  color: #6b7280;
	  text-decoration: none;
	}

	.footer-bottom {
	  text-align: center;
	  margin-top: 40px;
	  font-size: 13px;
	}

	/* Other Sections */
	.toggle {
	  text-align: center;
	  margin: 1rem 0;
	}

	.demo-text {
	  font-size: 13px;
	  color: #888;
	}

	.demo-text span {
	  color: #525252;
	  font-family: 'Inter', sans-serif;
	  font-weight: 600;
	  font-size: 14px;
	  line-height: 20px;
	  vertical-align: middle;
	}

	.icon-ring {
	  margin-top: 60px;
	  display: flex;
	  justify-content: center;
	  flex-wrap: wrap;
	  gap: 28px;
	}

	.icon-ring img {
	  width: 48px;
	  height: 48px;
	  border-radius: 12px;
	  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
	}

	.center-icon {
	  background: #fff;
	  padding: 6px;
	  border-radius: 50%;
	  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
	}

	.bg-section {
	  background-image: url('{{ asset("assets/images/frontend/gride.png") }}');
	  background-size: contain;
	  background-repeat: no-repeat;
	  background-position: center;
	  height: 710px;
	}

	#clients-list {
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: center;
	  gap: 32px;
	  align-items: center;
	}

	#clients-list img {
	  object-fit: contain;
	}

	section {
	  width: 100%;
	  padding: 60px 20px;
	  background-color: #ffffff;
	  box-sizing: border-box;
	}

	.section-label {
	  background: linear-gradient(315deg, #28A71A 0%, #208615 100%);
	  color: white;
	  padding: 6px 14px;
	  border-radius: 999px;
	  display: inline-block;
	  font-size: 14px;
	}

	.code-box {
	  background-color: #1e1e1e;
	  color: #ffffff;
	  border-radius: 1rem;
	  padding: 20px;
	  font-family: monospace;
	  font-size: 14px;
	  white-space: pre-line;
	  overflow-x: auto;
	}

	.window-header {
	  background-color: #333;
	  padding: 8px 12px;
	  border-top-left-radius: 1rem;
	  border-top-right-radius: 1rem;
	  font-size: 14px;
	  color: #ccc;
	}

	.badge-custom {
	  color: #000;
	  padding: 6px 10px;
	  border-radius: 999px;
	  margin-right: 10px;
	  font-size: 14px;
	}

	.check-icon {
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	  width: 28px;
	  height: 28px;
	  background-color: #e9ecef;
	  border-radius: 50%;
	  font-size: 16px;
	}

	.custom-link-btn {
	  color: #000;
	  display: inline-flex;
	  align-items: center;
	  gap: 12px;
	  font-weight: 600;
	  text-decoration: none;
	  font-size: 16px;
	  transition: color 0.2s ease;
	}

	.custom-link-btn:hover {
	  color: #146c43;
	  text-decoration: none;
	}

	.icon-circle {
	  background: linear-gradient(315deg, #28A71A 0%, #208615 100%);
	  border-radius: 50%;
	  width: 32px;
	  height: 32px;
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	  transition: background-color 0.2s ease;
	}

	.custom-link-btn:hover .icon-circle {
	  background-color: #146c43;
	}

	.feedback-section {
	  background: linear-gradient(to bottom, #0f9d58, #000);
	  color: white;
	  padding: 50px 15px;
	  font-family: 'Segoe UI', sans-serif;
	}

	.feedback-section .title {
	  text-align: center;
	  margin-bottom: 40px;
	}

	.feedback-section .title p {
	  text-transform: uppercase;
	  font-size: 12px;
	  margin-bottom: 5px;
	  opacity: 0.8;
	}

	.feedback-section .title h1 {
	  font-weight: bold;
	}

	.card-custom {
	  background-color: #1c1c1c;
	  border-radius: 20px;
	  padding: 20px;
	  max-width: 700px;
	  margin: 0 auto;
	}

	.card-custom .account-info img {
	  width: 40px;
	  height: 40px;
	  margin-right: 10px;
	}

	.card-custom .view-post-btn {
	  background-color: #26c40e;
	  color: white;
	  border-radius: 25px;
	  padding: 8px 20px;
	  border: none;
	}

	.avatar {
	  width: 35px;
	  height: 35px;
	  border-radius: 50%;
	  border: 2px solid #1c1c1c;
	  object-fit: cover;
	  margin-left: -10px;
	}

	.info-card {
	  background-color: #1c1c1c;
	  border-radius: 20px;
	  padding: 25px;
	  text-align: center;
	  min-height: 130px;
	  color: white;
	}

	.info-card h6 {
	  font-weight: bold;
	  margin-bottom: 8px;
	}

	.profile {
	  display: flex;
	  align-items: center;
	  margin-top: 24px;
	  gap: 16px;
	}

	.profile img {
	  width: 48px;
	  height: 48px;
	  border-radius: 50%;
	  object-fit: cover;
	  box-shadow: 0 0 0 2px white;
	}

	.section {
	  padding: 80px 20px;
	}

	.container {
	  max-width: 1280px;
	  margin: 0 auto;
	}

	.testimonials {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 40px;
	  justify-content: space-between;
	}

	.testimonial {
	  border-radius: 12px;
	  padding: 30px;
	  flex: 1 1 45%;
	}

	.testimonial p {
	  font-size: 16px;
	  line-height: 1.6;
	  color: #4b5563;
	}

	.testimonial .name {
	  margin-top: 20px;
	  font-weight: 600;
	  color: #111827;
	}

	.testimonial .role {
	  color: #6b7280;
	  font-size: 14px;
	}

	.brands {
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: center;
	  gap: 40px;
	  margin-top: 40px;
	  filter: grayscale(100%);
	}

	.brands img {
	  width: 296px;
	  height: 144px;
	  border-radius: 24px;
	  background: #F9FAFB;
	  object-fit: contain;
	}

	.brands-grid {
	  display: grid;
	  grid-template-columns: repeat(1, 1fr);
	  gap: 24px;
	  justify-items: center;
	}

	.brand-box {
	  width: 296px;
	  height: 144px;
	  background: #F9FAFB;
	  border-radius: 24px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  transition: transform 0.3s ease;
	}

	.brand-box img {
	  width: 215px;
	  height: 112px;
	  object-fit: contain;
	}

	.section-title {
	  text-align: center;
	  font-size: 28px;
	  font-weight: 700;
	  margin-bottom: 40px;
	  color: #111827;
	}

	.cta-section {
	  text-align: center;
	}

	.cta-section h2 {
	  font-size: 32px;
	  font-weight: 700;
	  margin-bottom: 16px;
	  color: #171717;
	}

	.cta-section p {
	  color: #6b7280;
	  margin-bottom: 24px;
	  font-size: 16px;
	}

	.cta-section button {
	  background-color: #fff;
	  border: none;
	  color: #000;
	  font-weight: 600;
	  padding: 12px 24px;
	  border-radius: 6px;
	  cursor: pointer;
	  font-size: 14px;
	  width: 153px;
	  height: 52px;
	  padding-top: 12px;
	  padding-right: 28px;
	  padding-bottom: 12px;
	  padding-left: 28px;
	  gap: 8px;
	  border-radius: 39px;
	}

	.cta-section img {
	  margin-top: 40px;
	  width: 100%;
	  max-width: 700px;
	  border-radius: 12px;
	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	}

	.cta-buttons {
	  display: flex;
	  justify-content: center;
	  gap: 16px;
	  flex-wrap: wrap;
	}

	.cta h2 {
	  font-family: 'Inter', sans-serif;
	  font-weight: 600;
	  font-size: 63px;
	  line-height: 1.2;
	  letter-spacing: -1px;
	}

	.cta p {
	  font-family: 'Inter', sans-serif;
	  font-weight: 400;
	  font-size: 20px;
	  line-height: 1.7;
	  max-width: 38%;
	}

	.features-main-box {
	  width: 1155px;
	  height: 358px;
	  border-radius: 24px;
	  background-color: #111111;
	  margin: 0 auto;
	}

	.box {
	  background-color: #1c1c1c;
	  border-radius: 24px;
	  min-height: 130px;
	  width: 376px;
	  height: 173px;
	  top: 1px;
	  left: 2px;
	  border-width: 1px;
	}

	.inner-section {
	  width: 85% !important;
	  border-radius: 25px;
	  margin: 0 auto;
	}

	.touch {
	  font-family: 'Inter', sans-serif;
	  font-weight: 400;
	  font-size: 20px;
	}

	label {
	  font-family: 'Inter', sans-serif;
	  font-weight: 600 !important;
	  font-size: 16px !important;
	}

	input::placeholder,
	textarea::placeholder {
	  color: #807E7E;
	}

	input::-webkit-input-placeholder,
	textarea::-webkit-input-placeholder,
	input::-moz-placeholder,
	textarea::-moz-placeholder,
	input:-ms-input-placeholder,
	textarea:-ms-input-placeholder,
	input:-moz-placeholder,
	textarea:-moz-placeholder {
	  color: #807E7E;
	}

	.img-fluid {
	  position: relative;
	  /*top: 47px;*/
	}

	.gradient-section {
	  background: linear-gradient(315deg, #000000 0%, #208615 100%);
	  padding: 70px 15px;
	  color: #fff;
	}

	.section-container {
	  max-width: 1200px;
	  margin: 0 auto;
	  padding: 0 15px;
	}

	.section-header {
	  text-align: center;
	  margin-bottom: 2rem;
	}

	.best-time-text {
	  font-size: 1rem;
	  color: #ffffff;
	}

	.section-title {
	  font-weight: 400;
	  font-size: 1.5rem;
	  color: #ffffff;
	}

	.outer-card {
	  background-color: #000;
	  padding: 1rem;
	  border-radius: 1rem;
	  width: 100%;
	  max-width: 1150px;
	  margin: 0 auto;
	}

	.inner-card {
	  background-color: #1a1a1a;
	  padding: 1rem;
	  height: 250px;
	  max-width: 1068px;
	  margin: -16px auto 0 auto;
	  border-bottom-left-radius: 1rem;
	  border-bottom-right-radius: 1rem;
	}

	/* Media Queries */
	@media (max-width: 1024px) {
	  .hero h1 {
		font-size: 36px;
	  }
	}

	@media (max-width: 768px) {
	  svg {
		max-width: 100%;
	  }

	  .btn-white {
		color: #000;
	  }

	  .cta-icon,
	  .cta-section h2,
	  .cta-section p {
		text-align: center;
	  }

	  footer {
		background-color: #fff !important;
	  }

	  .navbar-links,
	  .navbar-actions {
		display: none;
		flex-direction: column;
		background-color: #fff;
		position: absolute;
		top: 60px;
		right: 0;
		width: 200px;
		padding: 10px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	  }

	  .navbar-links.show,
	  .navbar-actions.show {
		display: flex;
	  }

	  .hamburger {
		display: flex;
	  }

	  .navbar-custom {
		flex-wrap: wrap;
	  }

	  .container {
		max-width: 100%;
		padding: 0 15px;
	  }

	  .testimonials {
		flex-direction: column;
	  }

	  .brands {
		gap: 20px;
	  }

	  .brands-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	  }

	  .brand-box {
		width: 100%;
		height: 144px;
	  }

	  .brand-box img {
		width: 75%;
		height: auto;
	  }

	  .footer-container {
		flex-direction: column;
		gap: 20px;
		text-align: left;
	  }

	  .hero h1 {
		font-size: 28px;
	  }

	  .start-btn {
		display: block;
	  }

	  h3 {
		font-family: 'Inter', sans-serif;
		font-weight: 600;
		font-size: 44px !important;
		color: #282828;
		text-align: left !important;
	  }

	  h4 {
		font-family: 'Inter', sans-serif;
		font-weight: 600;
		font-size: 39px;
		line-height: 46px;
		text-align: left;
	  }

	  .best-time-text {
		text-align: left;
	  }

	  .text-center {
		text-align: left !important;
	  }

	  .order-2 {
		margin-top: 60px;
	  }

	  .features {
		padding-left: 0 !important;
		padding-right: 0 !important;
		margin: -14px !important;
		position: relative;
		top: 35px;
		bottom: 15px;
	  }

	  .features div {
		display: inline-block !important;
		margin-bottom: 10px;
		margin-top: 5px;
		bottom: 10px;
		position: relative;
	  }

	  .gradient-section {
		height: 1165px;
	  }

	  .row {
		padding-left: 0 !important;
		padding-right: 0 !important;
	  }

	  section {
		width: 100%;
		padding: 0 !important;
		background-color: #ffffff !important;
		box-sizing: border-box;
	  }

	  .section-title {
		font-size: 1.25rem;
	  }

	  .inner-card {
		height: auto;
		background-color: inherit !important;
	  }

	  .outer-card,
	  .inner-card {
		padding: 1.75rem;
	  }

	  .cta h2 {
		font-family: 'Inter', sans-serif;
		font-weight: 600 !important;
		font-size: 39px !important;
		line-height: 1.2;
		letter-spacing: -1px;
	  }

	  .cta p {
		font-family: 'Inter', sans-serif;
		font-weight: 400 !important;
		font-size: 20px !important;
		line-height: 1.7;
		max-width: auto !important;
	  }
	}

	@media (min-width: 768px) {
	  .brands-grid {
		grid-template-columns: repeat(2, 1fr);
	  }
	}

	@media (min-width: 992px) {
	  .brands-grid {
		grid-template-columns: repeat(4, 1fr);
	  }
	}

	@media (max-width: 576px) {
	  .bg-section {
		height: 610px !important;
	  }

	  .section-title {
		font-size: 2.1rem;
		text-align: left;
	  }

	  .py-5 {
		padding-top: unset !important;
		padding-bottom: unset !important;
	  }

	  #clients-section {
		margin-top: -71px;
	  }
	}

	@media (max-width: 480px) {
	  .hero h1 {
		font-size: 22px;
	  }

	  .container {
		padding: 0 10px;
	  }
	}