:root {
  --primary: #ffc659;
  --primary-hover: #e8b14a;
  --background: #ffffff;
  --background-secondary: #f9fafb;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 0.5rem;
    --font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
    --heading-font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
      "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
      "Helvetica Neue", sans-serif;
}
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family);
  color: var(--text-primary);
  line-height: 1.5;
  background-color: var(--background);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: var(--text-primary);
  text-decoration: none;
}
ul {
  list-style: none;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.article-link {
  display: inline-flex;
  align-items: center;
  /* color: var(--text-primary);*/
  color: rgb(37 98 234);
  /*font-weight: 600;
  font-size: 0.875rem;*/
}

.article-link i {
  margin-left: 0.5rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
}
.button.primary {
  background-color: var(--primary);
  color: var(--text-primary);
}
.button.primary:hover {
  background-color: var(--primary-hover);
}
.button.outline {
  background-color: #fff;
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.button.outline:hover {
  background-color: var(--background-secondary);
}
.button.full-width {
  width: 100%;
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
}
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--primary);
  box-shadow: var(--shadow);
  z-index: 100;
}
.logo-container {
  display: flex;
  align-items: center;
}
.logo-link {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
}
.logo-image {
  height: 40px;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}
.logo-image img {
  height: 100%;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--text-primary);
}
.cta-button-container {
  display: none;
}
.cta-button {
  background-color: var(--primary);
  color: var(--text-primary);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: background-color 0.2s ease;
}
.cta-button:hover {
  background-color: var(--primary-hover);
}
@media (min-width: 768px) {
  .cta-button-container {
    display: block;
  }
}
.features {
  padding: 4rem 0;
  background-color: var(--background-secondary);
}
.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.feature-card {
  background-color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.feature-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}
.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature-description {
  color: var(--text-secondary);
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.how-it-works {
  padding: 4rem 0;
  background-color: var(--background);
}
.step {
  display: flex;
  gap: 1.5rem;
}
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}
.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2.5rem 0 1.5rem;
  font-family: var(--heading-font);
}
.step-description {
  color: var(--text-secondary);
}
.demo {
  padding: 4rem 0;
  background-color: var(--background-secondary);
}
.video-container {
  max-width: 800px;
  margin: 0 auto 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-placeholder {
  background-color: #f1f1f1;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
}
.demo-text {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.demo-text p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}
.pricing {
  padding: 4rem 0;
  background-color: var(--background);
}
.pricing-card {
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.pricing-plan {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  font-family: var(--heading-font);
}
.pricing-price {
  margin-bottom: 0.5rem;
}
.price {
  font-size: 2rem;
  font-weight: 700;
}
.pricing-description {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.pricing-features {
  margin-bottom: 2rem;
}
.pricing-features ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-features li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}
.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.pricing-action {
  margin-top: auto;
}
.cta {
  padding: 4rem 0;
  background-color: var(--background-secondary);
}
.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-text {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.contact {
  padding: 4rem 0;
  background-color: var(--background);
}
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact-info {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.contact-form-container {
  background-color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
@media (min-width: 768px) {
  .contact-content {
    flex-direction: row;
  }
  .contact-info {
    width: 40%;
    grid-template-columns: 1fr;
  }
  .contact-form-container {
    width: 60%;
  }
}
@media (min-width: 1024px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}
.footer {
  padding: 4rem 0 2rem;
  background-color: var(--background-secondary);
  border-top: 1px solid var(--border);
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.footer-logo-image {
  height: 32px;
  margin-right: 0.5rem;
}
.footer-logo-image img {
  height: 100%;
  object-fit: contain;
}
.footer-logo-text {
  font-weight: 700;
  font-size: 1.25rem;
}
.footer-links {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.footer-links-column h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-links-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links-column a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
.footer-links-column a:hover {
  color: var(--text-primary);
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-links {
    width: 65%;
  }
}
.content-section {
  padding: 4rem 0;
}
.content-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.content-wrapper h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 2.5rem 0 1.25rem;
  color: var(--text-primary);
}
.content-wrapper h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 1.75rem 0 1rem;
  color: var(--text-primary);
}
.content-wrapper p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.content-wrapper p.lead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.content-wrapper ol,
.content-wrapper ul {
  margin: 1.25rem 0 2rem;
  padding-left: 1.5rem;
}
.content-wrapper ol li,
.content-wrapper ul li {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  position: relative;
}
.content-wrapper ul {
  list-style: disc outside;
}
.content-wrapper ol {
  list-style: decimal outside;
}
.image-showcase {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.showcase-image {
  width: 100%;
  height: auto;
  display: block;
}
.image-caption {
  text-align: center;
  padding: 1rem;
  background-color: var(--background-secondary);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-style: italic;
}
.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
.resource-card {
  background-color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.resource-icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 198, 89, 0.1);
  border-radius: 50%;
}
.resource-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 500;
  transition: color 0.2s ease;
}
.resource-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}
.cta-box {
  margin: 3rem 0 1rem;
  background-color: var(--background-secondary);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.cta-box h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.cta-box p {
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .resources-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
