/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  color: #333;
  line-height: 1.5;
  background-color: #fff;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Links */
a {
  text-decoration: none;
  color: #d19b1b;
  transition: color 0.2s;
}

a:hover {
  color: #d19b1b;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 1rem;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(to right, #d19b1b, #fe543e);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(to right, #996e08, #c91e08);
  color: white;
}

.btn-outline {
  background: white;
  color: #333;
  border: 1px solid #e5e7eb;
}

.btn-outline:hover {
  background: #f9fafb;
}

.btn-secondary {
  background: white;
  color: #f19063;
}

.btn-secondary:hover {
  background: #f9fafb;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Header */
header {
  border-bottom: 1px solid #e5e7eb;
  background-color: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

nav {
  display: flex; /* Enable flexbox layout */
  justify-content: space-around; /* Evenly distribute space between items */
  flex-grow: 1; /* Allow the nav to take available space */
  margin: 0 1rem; /* Add margin if desired */
}

nav a {
  font-size: 0.875rem; /* Font size of links */
  font-weight: 500; /* Font weight for emphasis */
  color: #333; /* Default link color */
  text-decoration: none; /* Remove underline */
  padding: 0 1rem; /* Add horizontal padding for link click area */
  transition: color 0.2s; /* Smooth transition on hover */
}

nav a:hover {
  color: #14b8a6; /* Change color on hover */
}



.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-image {
  max-width: 4rem; /* Set the maximum width */
  height: auto; /* Maintain aspect ratio */
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  background: linear-gradient(to bottom right, #2dd4bf, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(to right,#d19b1b, #fe543e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
}

nav a:hover {
  color: #d19b1b;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

/* Sections */
section {
  padding: 3rem 0;
}

.section-lg {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  color: #6b7280;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg-1 {
  position: absolute;
  top: -6rem;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(184, 80, 20, 0.1);
  border-radius: 50%;
  filter: blur(3rem);
  z-index: -1;
}

.hero-bg-2 {
  position: absolute;
  bottom: -6rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(184, 80, 20, 0.1);
  border-radius: 50%;
  filter: blur(3rem);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size: 2.25rem;
  line-height: 1.2;
  background: linear-gradient(to right, #d19b1b, #fe543e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  color: #848d6e;
  font-size: 1.125rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 400px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-image {
  position: relative;
}

.image-grid {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, #f0fdfa, #eef2ff);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
}

.image-grid-inner {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 1rem;
  height: 100%;
}

.image-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1rem;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.image-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: linear-gradient(to right, #d19b1b, #fe543e);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Features Section */
.features {
  background: linear-gradient(to bottom, white, #f8ae26);
}

.features-tag {
  display: inline-block;
  background-color: #ccfbf1;
  color: #fe543e;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.features-title span {
  background: linear-gradient(to right, #d19b1b, #fe543e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  background-color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.feature-icon.teal {
  background: linear-gradient(to right, #ccfbf1, #99f6e4);
}

.feature-icon.indigo {
  background: linear-gradient(to right, #e0e7ff, #c7d2fe);
}

.feature-icon.mixed {
  background: linear-gradient(to right, #ccfbf1, #e0e7ff);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-icon.teal svg {
  color: #c4a14b;
}

.feature-icon.indigo svg {
  color: #c4a14b;
}

.feature-icon.mixed svg {
  color: #c4a14b;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: #6b7280;
  font-size: 0.875rem;
}

/* How It Works Section */
.how-it-works {
  background-color: white;
}

.how-it-works-tag {
  display: inline-block;
  background-color: #e0e7ff;
  color: #d19b1b;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.how-it-works-title span {
  background: linear-gradient(to right, #d19b1b, #fe543e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .steps-line {
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #d19b1b, #fe543e);
    z-index: 0;
  }
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: linear-gradient(to right, #d19b1b, #fe543e);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-description {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.step-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-it-works-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* Examples Section */
.examples {
  background: linear-gradient(to bottom, white, #eef2ff);
}

.examples-tag {
  display: inline-block;
  background-color: #ccfbf1;
  color: #997c36;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.examples-title span {
  background: linear-gradient(to right, #d19b1b, #fe543e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.examples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .examples-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .examples-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.example-card {
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  background-color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.example-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.example-images {
  display: grid;
  grid-template-columns: 1fr;
}

.example-image {
  position: relative;
  aspect-ratio: 1 / 1;
}

.example-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.example-content {
  padding: 1rem;
}

.example-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.example-description {
  font-size: 0.875rem;
  color: #6b7280;
}

.examples-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

/* Testimonials Section */
.testimonials {
  background-color: white;
}

.testimonials-tag {
  display: inline-block;
  background-color: #e0e7ff;
  color: #4338ca;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.testimonials-title span {
  background: linear-gradient(to right, #d19b1b, #fe543e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  background-color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.testimonial-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  overflow: hidden;
  background: linear-gradient(to right, #99f6e4, #c7d2fe);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.testimonial-quote {
  color: #6b7280;
  margin-bottom: 1rem;
}

.testimonial-stars {
  display: flex;
  color: #fbbf24;
}

.pricing {
  background: linear-gradient(to bottom, white, #f0fdfa);
}

.pricing-tag {
  display: inline-block;
  background-color: #ccfbf1;
  color: #0f766e;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.pricing-title span {
  background: linear-gradient(to right, #d19b1b, #fe543e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  background-color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
  position: relative;
}

.pricing-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-card.highlighted {
  border-width: 2px;
  border-image: linear-gradient(to right,  #d19b1b, #fe543e) 1;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right,  #d19b1b, #fe543e);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  text-decoration: line-through; /* slash for sale */
  font-size: 0.875rem;
  font-weight: 700;
}

.pricing-sale {
  font-weight: bold; /* Makes it bold for emphasis */
  font-size: 1.875rem;
  font-weight: 700;
}

.Price-salelabel {
  color: #ff002b;
  font-weight: bold; /* Makes it bold for emphasis */
  font-size: 1.875rem;
  font-weight: 700;
}


.pricing-period {
  color: #6b7280;
}

.pricing-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style-type: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.pricing-feature svg {
  width: 1rem;
  height: 1rem;
  color: #14b8a6;
  flex-shrink: 0;
}

.pricing-cta {
  margin-top: auto;
}

.pricing-btn {
  display: block;
  width: 100%;
}


/* CTA Section */
.cta {
  background: linear-gradient(to right, #d19b1b, #fe543e);
  color: white;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

footer {
  border-top: 1px solid #e5e7eb;
  background-color: white;
  padding: 2rem 0;
}

.footer-image {
  max-width: 4rem; /* Set the maximum width */
  height: auto; /* Maintain aspect ratio */
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to left */
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Align footer nav to left */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start; /* Align nav items to the left */
}

@media (min-width: 768px) {
  .footer-nav {
    gap: 1.5rem;
  }
}

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
}

.footer-nav a:hover {
  color: #d19b1b;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #6b7280;
  transition: color 0.2s;
}

.social-link:hover {
  color: #d19b1b;
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Responsive Utilities */
.mobile-only {
  display: block;
}

.desktop-only {
  display: none;
}



@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: block;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

