@charset "UTF-8";
:root {
  --primary-color: #007bff;
  --primary-color-light: #66b3ff;
  --primary-color-dark: #0056b3;
  --accent-color: #28a745;
  --text-primary: #1a1e21;
  --text-secondary: #495057;
  --text-muted: #6c757d;
  --background-primary: #ffffff;
  --background-secondary: #f8f9fa;
  --background-light: #f8f9fa;
  --border-color: #dee2e6;
  --section-padding: 5rem;
  --container-padding: 1.5rem;
  --card-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --border-radius: 0.375rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1e21;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1e21;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
}
@media (max-width: 639px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 1.875rem;
}
@media (max-width: 639px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (max-width: 639px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

p {
  margin-bottom: 1rem;
  color: #495057;
  line-height: 1.75;
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75;
  color: #1a1e21;
}

small {
  font-size: 0.875rem;
  color: #6c757d;
}

strong, b {
  font-weight: 600;
  color: #1a1e21;
}

em, i {
  font-style: italic;
}

a {
  color: #007bff;
  text-decoration: none;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
}
a:hover, a:focus {
  color: #0056b3;
  text-decoration: underline;
}
a:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}
a:active {
  color: #0056b3;
}

.no-underline {
  text-decoration: none !important;
}
.no-underline:hover, .no-underline:focus {
  text-decoration: none !important;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.25rem;
  color: #495057;
  line-height: 1.75;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

.list-none {
  list-style: none;
  padding-left: 0;
}

.list-inline {
  list-style: none;
  padding-left: 0;
}
.list-inline li {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 1rem;
}
.list-inline li:last-child {
  margin-right: 0;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=search],
input[type=tel],
input[type=url],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  background-color: #ffffff;
  color: #1a1e21;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=number]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #6c757d;
}
input[type=text]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=number]:disabled,
input[type=search]:disabled,
input[type=tel]:disabled,
input[type=url]:disabled,
textarea:disabled,
select:disabled {
  background-color: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

label {
  display: block;
  font-weight: 500;
  color: #1a1e21;
  margin-bottom: 0.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
  background-color: #007bff;
  color: #ffffff;
  border-color: #007bff;
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
button:hover:not(:disabled) {
  background-color: #0056b3;
  border-color: #0056b3;
}
button:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

figure {
  margin: 0 0 1.5rem 0;
}

figcaption {
  font-size: 0.875rem;
  color: #6c757d;
  text-align: center;
  margin-top: 0.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

th,
td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}

th {
  font-weight: 600;
  color: #1a1e21;
  background-color: #f8f9fa;
}

td {
  color: #495057;
}

code {
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-size: 0.875rem;
  color: #007bff;
  background-color: #e9ecef;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

pre {
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-size: 0.875rem;
  background-color: #e9ecef;
  padding: 1rem;
  border-radius: 0.375rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
pre code {
  background-color: transparent;
  padding: 0;
  color: inherit;
}

blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #007bff;
  background-color: #f8f9fa;
  border-radius: 0.375rem;
}
blockquote p {
  font-size: 1.125rem;
  font-style: italic;
  color: #1a1e21;
  margin-bottom: 0.5rem;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote cite {
  display: block;
  font-size: 0.875rem;
  color: #6c757d;
  font-style: normal;
  margin-top: 0.5rem;
}
blockquote cite::before {
  content: "— ";
}

hr {
  border: none;
  height: 1px;
  background-color: #dee2e6;
  margin: 2rem 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: #007bff;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  z-index: 1050;
}
.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.responsive-embed {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.responsive-embed::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.responsive-embed iframe,
.responsive-embed embed,
.responsive-embed object,
.responsive-embed video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-fluid {
  width: 100%;
  padding: 0 1.5rem;
}

.container-narrow {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main-content {
  min-height: calc(100vh - 70px - 200px);
  padding-top: 0;
}
@media (max-width: 639px) {
  .main-content {
    min-height: calc(100vh - 60px - 200px);
  }
}

.site-header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #dee2e6;
  z-index: 1020;
  transition: all 250ms ease-in-out;
}
.site-header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
@media (max-width: 639px) {
  .site-header .header-content {
    height: 60px;
  }
}

.brand {
  display: flex;
  align-items: center;
}
.brand .brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1a1e21;
}
.brand .brand-link:hover {
  text-decoration: none;
}
.brand .brand-logo {
  height: 32px;
  width: auto;
  margin-right: 0.75rem;
}
@media (max-width: 639px) {
  .brand .brand-logo {
    height: 28px;
  }
}
.brand .brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1e21;
}
@media (max-width: 639px) {
  .brand .brand-name {
    font-size: 1.125rem;
  }
}

@media (max-width: 639px) {
  .desktop-nav {
    display: none;
  }
}
.desktop-nav .nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.desktop-nav .nav-item {
  margin: 0;
}
.desktop-nav .nav-link {
  font-weight: 500;
  color: #495057;
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
}
.desktop-nav .nav-link:hover, .desktop-nav .nav-link.active {
  color: #007bff;
  text-decoration: none;
}

@media (max-width: 639px) {
  .header-cta {
    display: none;
  }
}
.header-cta .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
  background-color: #007bff;
  color: #ffffff;
  border-color: #007bff;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}
.header-cta .cta-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.header-cta .cta-button:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  text-decoration: none;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu-toggle .hamburger-line {
  width: 20px;
  height: 2px;
  background-color: #1a1e21;
  transition: all 250ms ease-in-out;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #dee2e6;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
}
.mobile-nav .mobile-nav-item {
  margin: 0;
}
.mobile-nav .mobile-nav-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #495057;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #e9ecef;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
}
.mobile-nav .mobile-nav-link:hover, .mobile-nav .mobile-nav-link.active {
  color: #007bff;
  background-color: #f8f9fa;
  text-decoration: none;
}
.mobile-nav .mobile-nav-link.cta {
  background-color: #007bff;
  color: #ffffff;
  margin: 0.5rem 1.5rem 0;
  border-radius: 0.375rem;
  border-bottom: none;
}
.mobile-nav .mobile-nav-link.cta:hover {
  background-color: #0056b3;
}
.mobile-nav .mobile-nav-link:last-child {
  border-bottom: none;
}

.site-header.mobile-nav-open .mobile-nav {
  max-height: 300px;
}
.site-header.mobile-nav-open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.site-header.mobile-nav-open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.site-header.mobile-nav-open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.site-footer {
  background-color: #1a1e21;
  color: #ffffff;
  padding: 4rem 0 2rem 0;
  margin-top: auto;
}
.site-footer .footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 639px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.site-footer .footer-column {
  display: flex;
  flex-direction: column;
}
.site-footer .footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.site-footer .footer-logo {
  height: 32px;
  width: auto;
  margin-right: 0.75rem;
}
.site-footer .footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.site-footer .footer-description {
  color: #ced4da;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.site-footer .footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}
.site-footer .footer-text {
  color: #ced4da;
  margin-bottom: 1rem;
}
.site-footer .footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-nav-item {
  margin-bottom: 0.5rem;
}
.site-footer .footer-nav-link {
  color: #ced4da;
  text-decoration: none;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
}
.site-footer .footer-nav-link:hover {
  color: #ffffff;
  text-decoration: none;
}
.site-footer .footer-contact-item {
  color: #ced4da;
  margin-bottom: 0.5rem;
}
.site-footer .footer-contact-link {
  color: #ced4da;
  text-decoration: none;
}
.site-footer .footer-contact-link:hover {
  color: #ffffff;
  text-decoration: none;
}
.site-footer .footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.site-footer .footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #212529;
  border-radius: 9999px;
  color: #ced4da;
  text-decoration: none;
  transition: all 250ms ease-in-out;
}
.site-footer .footer-social-link:hover {
  background-color: #007bff;
  color: #ffffff;
  transform: translateY(-2px);
}
.site-footer .footer-bottom {
  border-top: 1px solid #212529;
  padding-top: 1.5rem;
}
.site-footer .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 639px) {
  .site-footer .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.site-footer .footer-copyright {
  color: #adb5bd;
  font-size: 0.875rem;
  margin: 0;
}
.site-footer .footer-bottom-nav {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 639px) {
  .site-footer .footer-bottom-nav {
    gap: 1rem;
  }
}
.site-footer .footer-bottom-link {
  color: #adb5bd;
  text-decoration: none;
  font-size: 0.875rem;
}
.site-footer .footer-bottom-link:hover {
  color: #ffffff;
  text-decoration: none;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 639px) {
  .section-header {
    margin-bottom: 2rem;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1e21;
  margin-bottom: 1rem;
}
@media (max-width: 639px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: #495057;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.grid {
  display: grid;
  gap: 1.5rem;
}
.grid.grid-sm {
  gap: 1rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 639px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 640px) and (max-width: 767px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 639px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 640px) and (max-width: 767px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.grid-auto-sm {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

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

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-end {
  justify-content: flex-end;
}

@media (max-width: 639px) {
  .desktop-only {
    display: none !important;
  }
}

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

@media (max-width: 639px) {
  .tablet-up {
    display: none !important;
  }
}

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

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

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.landing-page .main-content {
  padding-top: 0;
}

.blog-page .main-content {
  padding-top: 1.5rem;
}

.post-page .main-content {
  padding-top: 1.5rem;
}

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

.button, .button-ghost, .button-outline, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
  background-color: #007bff;
  color: #ffffff;
  border-color: #007bff;
}
.button:disabled, .button-ghost:disabled, .button-outline:disabled, .button-secondary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.button:hover:not(:disabled), .button-ghost:hover:not(:disabled), .button-outline:hover:not(:disabled), .button-secondary:hover:not(:disabled) {
  background-color: #0056b3;
  border-color: #0056b3;
  color: #ffffff;
  text-decoration: none;
}
.button:focus, .button-ghost:focus, .button-outline:focus, .button-secondary:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.button-secondary {
  background-color: #495057;
  border-color: #495057;
}
.button-secondary:hover:not(:disabled) {
  background-color: #343a40;
  border-color: #343a40;
}

.button-outline {
  background-color: transparent;
  color: #007bff;
  border-color: #007bff;
}
.button-outline:hover:not(:disabled) {
  background-color: #007bff;
  color: #ffffff;
}

.button-ghost {
  background-color: transparent;
  color: #1a1e21;
  border-color: transparent;
}
.button-ghost:hover:not(:disabled) {
  background-color: #f8f9fa;
  color: #1a1e21;
}

.button-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.button-lg, .button-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.button-large {
  font-size: 1.25rem;
  padding: 1.25rem 2.5rem;
}

.button-full {
  width: 100%;
  justify-content: center;
}

.card {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 250ms ease-in-out;
}
.card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.card-header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.card-body {
  flex: 1;
}

.card-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1e21;
  margin-bottom: 0.5rem;
}

.card-text {
  color: #495057;
  line-height: 1.75;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.breadcrumbs .breadcrumb-link {
  color: #6c757d;
  text-decoration: none;
}
.breadcrumbs .breadcrumb-link:hover {
  color: #007bff;
  text-decoration: none;
}
.breadcrumbs .breadcrumb-separator {
  color: #adb5bd;
}
.breadcrumbs .breadcrumb-current {
  color: #495057;
  font-weight: 500;
}

.tag, .post-tags .post-tag, .tag-link,
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-radius: 9999px;
  text-decoration: none;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
}

.tag, .post-tags .post-tag, .tag-link {
  background-color: #f8f9fa;
  color: #495057;
}
.tag:hover, .post-tags .post-tag:hover, .tag-link:hover {
  background-color: #007bff;
  color: #ffffff;
  text-decoration: none;
}

.badge {
  background-color: #007bff;
  color: #ffffff;
}

.badge-success {
  background-color: #28a745;
}

.badge-warning {
  background-color: #ffc107;
  color: #1a1e21;
}

.badge-error {
  background-color: #dc3545;
}

.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
@media (max-width: 639px) {
  .hero {
    padding: 4rem 0;
  }
}
.hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 639px) {
  .hero .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
.hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1e21;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 639px) {
  .hero .hero-title {
    font-size: 2.25rem;
  }
}
.hero .hero-tagline {
  font-size: 1.5rem;
  color: #495057;
  margin-bottom: 1rem;
}
@media (max-width: 639px) {
  .hero .hero-tagline {
    font-size: 1.25rem;
  }
}
.hero .hero-description {
  font-size: 1.125rem;
  color: #495057;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero .hero-cta {
  margin-bottom: 1.5rem;
}
.hero .hero-cta .cta-subtext {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.hero .hero-secondary-cta .secondary-cta-text {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
}
.hero .hero-image {
  display: flex;
  justify-content: center;
}
@media (max-width: 639px) {
  .hero .hero-image {
    order: -1;
  }
}
.hero .app-screenshot {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pain-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}
.pain-section .pain-content {
  max-width: 800px;
  margin: 0 auto;
}
.pain-section .pain-story {
  text-align: center;
}
.pain-section .pain-text {
  font-size: 1.125rem;
  color: #495057;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.pain-section .pain-text em {
  font-style: italic;
  color: #1a1e21;
}
.pain-section .pain-highlight {
  font-size: 1.25rem;
  color: #1a1e21;
  text-align: center;
  margin: 2rem 0;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: 0.375rem;
  border-left: 4px solid #dc3545;
}
.pain-section .pain-cost {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.pain-section .pain-cost h3 {
  color: #1a1e21;
  margin-bottom: 1.5rem;
  text-align: center;
}
.pain-section .cost-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pain-section .cost-list li {
  padding: 0.75rem 0;
  color: #495057;
  font-size: 1.125rem;
  position: relative;
  padding-left: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}
.pain-section .cost-list li:last-child {
  border-bottom: none;
}
.pain-section .cost-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #dc3545;
  font-weight: bold;
  font-size: 1.25rem;
}

.desire-section {
  padding: 5rem 0;
}
.desire-section .desire-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.desire-section .future-vision {
  margin-bottom: 3rem;
}
.desire-section .vision-text {
  font-size: 1.25rem;
  color: #495057;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.desire-section .vision-text em {
  font-style: italic;
  color: #007bff;
  font-weight: 500;
}
.desire-section .transformation-highlight {
  background: linear-gradient(135deg, #007bff 0%, #66b3ff 100%);
  color: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  margin: 3rem 0;
}
.desire-section .transformation-highlight h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.desire-section .transformation-highlight p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin: 0;
}
.desire-section .identity-shift {
  margin-top: 3rem;
}
.desire-section .before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 639px) {
  .desire-section .before-after {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.desire-section .before,
.desire-section .after {
  padding: 1.5rem;
  border-radius: 0.75rem;
}
.desire-section .before h4,
.desire-section .after h4 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.desire-section .before p,
.desire-section .after p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.desire-section .before p:last-child,
.desire-section .after p:last-child {
  margin-bottom: 0;
}
.desire-section .before {
  background-color: #f8f9fa;
  border-left: 4px solid #dc3545;
}
.desire-section .before h4 {
  color: #dc3545;
}
.desire-section .before p {
  color: #6c757d;
}
.desire-section .after {
  background-color: rgba(40, 167, 69, 0.1);
  border-left: 4px solid #28a745;
}
.desire-section .after h4 {
  color: #28a745;
}
.desire-section .after p {
  color: #1a1e21;
}

.bridge-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}
.bridge-section .bridge-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.bridge-section .bridge-card {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #007bff;
  text-align: center;
  max-width: 700px;
  position: relative;
}
.bridge-section .bridge-card::before {
  content: "💡";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 9999px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 639px) {
  .bridge-section .bridge-card {
    padding: 1.5rem;
    margin: 0 1rem;
  }
}
.bridge-section .bridge-text {
  font-size: 1.125rem;
  color: #495057;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-weight: 400;
}
.bridge-section .bridge-text:last-child {
  margin-bottom: 0;
  color: #1a1e21;
  font-weight: 500;
}
.bridge-section .bridge-text:first-child {
  font-size: 1.25rem;
}
.bridge-section .bridge-text:nth-child(2) {
  font-size: 1.25rem;
  color: #007bff;
  font-weight: 600;
  margin: 2rem 0;
}
@media (max-width: 639px) {
  .bridge-section .bridge-text {
    font-size: 1rem;
  }
  .bridge-section .bridge-text:first-child, .bridge-section .bridge-text:nth-child(2) {
    font-size: 1.125rem;
  }
}

.solution-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}
.solution-section .solution-content {
  max-width: 900px;
  margin: 0 auto;
}
.solution-section .solution-explanation {
  text-align: center;
  margin-bottom: 3rem;
}
.solution-section .solution-text {
  font-size: 1.125rem;
  color: #495057;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.solution-section .method-preview {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin: 3rem 0;
}
.solution-section .method-preview h3 {
  color: #1a1e21;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-align: center;
}
.solution-section .method-preview .method-description {
  font-size: 1.125rem;
  color: #495057;
  text-align: center;
  margin-bottom: 2rem;
}
.solution-section .course-highlights {
  margin-top: 2rem;
}
.solution-section .course-highlights h4 {
  color: #1a1e21;
  margin-bottom: 1rem;
  text-align: center;
}
.solution-section .highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.solution-section .highlights-list .highlight-item {
  padding: 0.75rem 1rem;
  background-color: #f8f9fa;
  border-radius: 0.375rem;
  color: #495057;
  position: relative;
  padding-left: 2rem;
}
.solution-section .highlights-list .highlight-item::before {
  content: "✓";
  position: absolute;
  left: 0.75rem;
  color: #28a745;
  font-weight: bold;
}
.solution-section .highlights-list .highlight-item strong {
  color: #007bff;
}
.solution-section .course-cta-section {
  margin-top: 3rem;
  text-align: center;
}

.objections-section {
  padding: 5rem 0;
}
.objections-section .objections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 639px) {
  .objections-section .objections-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.objection-block {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border-top: 4px solid #007bff;
}
.objection-block .objection-title {
  color: #1a1e21;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.objection-block .objection-answer {
  color: #495057;
  line-height: 1.75;
  margin: 0;
}

.urgency-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.urgency-section .urgency-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.urgency-section .urgency-text {
  font-size: 1.25rem;
  color: #495057;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.urgency-section .motivation-reality {
  margin: 3rem 0;
}
.urgency-section .reality-block {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border-left: 4px solid #ffc107;
  margin-bottom: 2rem;
}
.urgency-section .reality-block h4 {
  color: #ffc107;
  margin-bottom: 0.75rem;
}
.urgency-section .reality-block p {
  color: #495057;
  margin: 0;
}
.urgency-section .timeline-pressure {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 639px) {
  .urgency-section .timeline-pressure {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.urgency-section .timeline-item {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 0.375rem;
  text-align: center;
  border-bottom: 3px solid #dee2e6;
}
.urgency-section .timeline-item:first-child {
  border-bottom-color: #28a745;
}
.urgency-section .timeline-item:nth-child(2) {
  border-bottom-color: #ffc107;
}
.urgency-section .timeline-item:nth-child(3) {
  border-bottom-color: #dc3545;
}
.urgency-section .timeline-item:last-child {
  border-bottom-color: #6c757d;
}
.urgency-section .timeline-item h4 {
  color: #1a1e21;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.urgency-section .timeline-item p {
  color: #495057;
  font-size: 0.875rem;
  margin: 0;
}
.urgency-section .opportunity-cost {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  margin-top: 2rem;
  border: 2px solid #dc3545;
}
.urgency-section .opportunity-cost .cost-text {
  font-size: 1.125rem;
  color: #495057;
  margin-bottom: 1.5rem;
}
.urgency-section .compound-urgency h4 {
  color: #1a1e21;
  margin-bottom: 0.75rem;
}
.urgency-section .compound-urgency p {
  color: #495057;
  margin: 0;
}
.urgency-section .compound-urgency p br {
  margin-bottom: 0.25rem;
}

.features {
  padding: 5rem 0;
}
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 639px) {
  .features .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.feature-card {
  text-align: center;
  padding: 1.5rem;
}
.feature-card .feature-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-card .feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1e21;
  margin-bottom: 0.75rem;
}
.feature-card .feature-description {
  color: #495057;
  line-height: 1.75;
}

.features-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 639px) {
  .features-showcase {
    gap: 3rem;
  }
}

.feature-showcase-item:not(:last-child) {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 4rem;
}
@media (max-width: 639px) {
  .feature-showcase-item:not(:last-child) {
    padding-bottom: 3rem;
  }
}

.feature-showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 639px) {
  .feature-showcase-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .feature-reverse .feature-showcase-content .feature-showcase-image {
    order: 2;
  }
  .feature-reverse .feature-showcase-content .feature-showcase-text {
    order: 1;
  }
}

.feature-showcase-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 639px) {
  .feature-showcase-image {
    order: -1;
  }
}

.feature-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 250ms ease-in-out;
}
.feature-image:hover {
  transform: scale(1.02);
}

.feature-showcase-text .feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1e21;
  margin-bottom: 1rem;
}
@media (max-width: 639px) {
  .feature-showcase-text .feature-title {
    font-size: 1.25rem;
    text-align: center;
  }
}
.feature-showcase-text .feature-description {
  font-size: 1.125rem;
  color: #495057;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
@media (max-width: 639px) {
  .feature-showcase-text .feature-description {
    text-align: center;
  }
}

.feature-details {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border-left: 4px solid #007bff;
}
.feature-details h4 {
  color: #007bff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
@media (max-width: 639px) {
  .feature-details h4 {
    text-align: center;
  }
}
.feature-details p {
  color: #495057;
  line-height: 1.75;
  margin: 0;
}
.feature-details p em {
  font-style: italic;
  color: #1a1e21;
}
@media (max-width: 639px) {
  .feature-details p {
    text-align: center;
  }
}

.lead-magnet-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}
.lead-magnet-section .lead-magnet-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 639px) {
  .lead-magnet-section .lead-magnet-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.lead-magnet-section .lead-magnet-description {
  font-size: 1.125rem;
  color: #495057;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.lead-magnet-section .lead-magnet-benefits {
  list-style: none;
  margin: 1.5rem 0 0 0;
  padding: 0;
}
.lead-magnet-section .lead-magnet-benefits .benefit-item {
  padding: 0.5rem 0;
  color: #495057;
  position: relative;
  padding-left: 1.5rem;
}
.lead-magnet-section .lead-magnet-benefits .benefit-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}
.lead-magnet-section .lead-magnet-form-container {
  display: flex;
  justify-content: center;
}

.social-proof {
  padding: 5rem 0;
}
.social-proof .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 639px) {
  .social-proof .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.testimonial-card .testimonial-content {
  margin-bottom: 1rem;
}
.testimonial-card .testimonial-text {
  font-size: 1.125rem;
  color: #495057;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.testimonial-card .author-name {
  font-weight: 600;
  color: #1a1e21;
  margin-bottom: 0.25rem;
}
.testimonial-card .author-title {
  font-size: 0.875rem;
  color: #6c757d;
  margin: 0;
}
.testimonial-card .transformation-stat {
  font-size: 0.875rem;
  color: #007bff;
  font-weight: 500;
  margin-top: 0.25rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
@media (max-width: 639px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.stat-item .stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: #007bff;
  display: block;
  margin-bottom: 0.25rem;
}
@media (max-width: 639px) {
  .stat-item .stat-number {
    font-size: 1.875rem;
  }
}
.stat-item .stat-label {
  font-size: 0.875rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.blog-header {
  padding: 4rem 0;
  background-color: #f8f9fa;
  text-align: center;
}
.blog-header .blog-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1e21;
  margin-bottom: 1rem;
}
@media (max-width: 639px) {
  .blog-header .blog-title {
    font-size: 1.875rem;
  }
}
.blog-header .blog-description {
  font-size: 1.125rem;
  color: #495057;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  line-height: 1.75;
}
.blog-header .blog-header-cta {
  max-width: 500px;
  margin: 0 auto;
}
.blog-header .header-cta-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.blog-header .header-cta-card h3 {
  margin-bottom: 0.5rem;
}
.blog-header .header-cta-card p {
  margin-bottom: 1rem;
}

.blog-content {
  padding: 3rem 0;
}
.blog-content .blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
@media (max-width: 639px) {
  .blog-content .blog-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.featured-post {
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
}
.featured-post .featured-post-content {
  display: grid;
  grid-template-columns: 1fr;
}
@media (max-width: 639px) {
  .featured-post .featured-post-content {
    grid-template-columns: 1fr;
  }
}
.featured-post .featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-post .featured-post-text {
  padding: 2rem;
}
@media (max-width: 639px) {
  .featured-post .featured-post-text {
    padding: 1.5rem;
  }
}
.featured-post .featured-post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 1rem;
}
.featured-post .featured-post-category {
  background-color: #007bff;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
}
.featured-post .featured-badge {
  background-color: #28a745;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.featured-post .featured-post-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.featured-post .featured-post-title a {
  color: #1a1e21;
  text-decoration: none;
}
.featured-post .featured-post-title a:hover {
  color: #007bff;
  text-decoration: none;
}
.featured-post .featured-post-excerpt {
  color: #495057;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.featured-post .featured-post-link {
  color: #007bff;
  font-weight: 500;
  text-decoration: none;
}
.featured-post .featured-post-link:hover {
  text-decoration: underline;
}

.posts-section .posts-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1e21;
  margin-bottom: 2rem;
}
.posts-section .posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 639px) {
  .posts-section .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.post-card, .related-post-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 250ms ease-in-out;
}
.post-card:hover, .related-post-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.post-card .post-card-image, .related-post-card .post-card-image {
  overflow: hidden;
}
.post-card .post-card-image img, .related-post-card .post-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 250ms ease-in-out;
}
.post-card .post-card-image a:hover img, .related-post-card .post-card-image a:hover img {
  transform: scale(1.05);
}
.post-card .post-card-content, .related-post-card .post-card-content {
  padding: 1.5rem;
}
.post-card .post-card-meta, .related-post-card .post-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
}
.post-card .post-card-category, .related-post-card .post-card-category {
  background-color: #f8f9fa;
  color: #495057;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
}
.post-card .post-card-title, .related-post-card .post-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.post-card .post-card-title a, .related-post-card .post-card-title a {
  color: #1a1e21;
  text-decoration: none;
}
.post-card .post-card-title a:hover, .related-post-card .post-card-title a:hover {
  color: #007bff;
}
.post-card .post-card-excerpt, .related-post-card .post-card-excerpt {
  color: #495057;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.post-card .post-card-footer, .related-post-card .post-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post-card .post-card-link, .related-post-card .post-card-link {
  color: #007bff;
  font-weight: 500;
  text-decoration: none;
}
.post-card .post-card-link:hover, .related-post-card .post-card-link:hover {
  text-decoration: underline;
}
.post-card .post-card-reading-time, .related-post-card .post-card-reading-time {
  font-size: 0.875rem;
  color: #6c757d;
}

@media (max-width: 639px) {
  .blog-sidebar {
    order: -1;
  }
}

.sidebar-widget {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.sidebar-widget h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1e21;
  margin-bottom: 1rem;
}
.sidebar-widget p {
  color: #495057;
  margin-bottom: 1rem;
}

.app-widget {
  text-align: center;
}
.app-widget .app-widget-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 0.75rem auto;
}
@media (max-width: 639px) {
  .app-widget {
    display: none;
  }
}

@media (max-width: 639px) {
  .newsletter-widget {
    display: none;
  }
}

@media (max-width: 639px) {
  .popular-posts-widget {
    display: none;
  }
}

.categories-list,
.popular-posts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-item,
.popular-post {
  margin-bottom: 0.75rem;
}
.category-item:last-child,
.popular-post:last-child {
  margin-bottom: 0;
}

.category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #495057;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
}
.category-link:hover {
  background-color: #f8f9fa;
  color: #007bff;
  text-decoration: none;
}

.category-count {
  font-size: 0.875rem;
  color: #6c757d;
}

.popular-post-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.popular-post-title a {
  color: #1a1e21;
  text-decoration: none;
}
.popular-post-title a:hover {
  color: #007bff;
}

.popular-post-meta {
  font-size: 0.875rem;
  color: #6c757d;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post .post-header {
  padding: 4rem 0 2rem 0;
  background-color: #f8f9fa;
}
.post .post-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1e21;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 639px) {
  .post .post-title {
    font-size: 1.875rem;
  }
}
.post .post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 2rem;
}
@media (max-width: 639px) {
  .post .post-meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
.post .post-featured-image {
  margin-bottom: 2rem;
}
.post .post-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.post-content {
  padding: 2rem 0;
}
.post-content .post-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}
@media (max-width: 639px) {
  .post-content .post-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.post-content .post-main {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #495057;
}
.post-content .post-main h2, .post-content .post-main h3, .post-content .post-main h4, .post-content .post-main h5, .post-content .post-main h6 {
  color: #1a1e21;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.post-content .post-main p {
  margin-bottom: 1.5rem;
}
.post-content .post-main ul, .post-content .post-main ol {
  margin-bottom: 1.5rem;
}
.post-content .post-main blockquote {
  margin: 2rem 0;
}

.post-app-mention {
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 3rem 0;
  text-align: center;
}
.post-app-mention .app-mention-card h3 {
  color: #1a1e21;
  margin-bottom: 0.75rem;
}
.post-app-mention .app-mention-card p {
  color: #495057;
  margin-bottom: 1rem;
}

.post-tags {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dee2e6;
}
.post-tags h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.post-tags .post-tag {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.blog-cta,
.final-cta {
  padding: 5rem 0;
  background-color: #f8f9fa;
  text-align: center;
}
.blog-cta .cta-content,
.final-cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.blog-cta .cta-title,
.final-cta .cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a1e21;
  margin-bottom: 1rem;
}
@media (max-width: 639px) {
  .blog-cta .cta-title,
  .final-cta .cta-title {
    font-size: 1.5rem;
  }
}
.blog-cta .cta-description,
.final-cta .cta-description {
  font-size: 1.125rem;
  color: #495057;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.blog-cta .cta-buttons,
.blog-cta .primary-cta,
.final-cta .cta-buttons,
.final-cta .primary-cta {
  margin-bottom: 1.5rem;
}
.blog-cta .cta-bonus,
.final-cta .cta-bonus {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 1rem;
  line-height: 1.75;
}
.blog-cta .cta-alternative,
.blog-cta .alternative-cta,
.final-cta .cta-alternative,
.final-cta .alternative-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dee2e6;
}
.blog-cta .cta-alternative .cta-link,
.blog-cta .alternative-cta .cta-link,
.final-cta .cta-alternative .cta-link,
.final-cta .alternative-cta .cta-link {
  color: #007bff;
  text-decoration: none;
}
.blog-cta .cta-alternative .cta-link:hover,
.blog-cta .alternative-cta .cta-link:hover,
.final-cta .cta-alternative .cta-link:hover,
.final-cta .alternative-cta .cta-link:hover {
  text-decoration: underline;
}
.blog-cta .alternative-text,
.final-cta .alternative-text {
  font-size: 1rem;
  color: #495057;
  margin-bottom: 1rem;
}
.blog-cta .alternative-subtext,
.final-cta .alternative-subtext {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.5rem;
  font-style: italic;
}

.blog-cta-actions {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 639px) {
  .blog-cta-actions {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.blog-cta-actions .cta-action {
  text-align: center;
}
.blog-cta-actions .cta-action h4 {
  margin-bottom: 1rem;
}
.blog-cta-actions .cta-divider {
  font-size: 1.125rem;
  color: #6c757d;
  font-weight: 500;
}
@media (max-width: 639px) {
  .blog-cta-actions .cta-divider {
    display: none;
  }
}

.faq {
  padding: 5rem 0;
}
.faq .faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq .faq-item {
  border-bottom: 1px solid #dee2e6;
  padding: 1.5rem 0;
}
.faq .faq-item:last-child {
  border-bottom: none;
}
.faq .faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1e21;
  margin-bottom: 0.75rem;
}
.faq .faq-answer {
  color: #495057;
  line-height: 1.75;
  margin: 0;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}
.pagination .pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
  background-color: #ffffff;
  color: #495057;
  border-color: #dee2e6;
}
.pagination .pagination-link:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.pagination .pagination-link:hover {
  background-color: #007bff;
  color: #ffffff;
  border-color: #007bff;
  text-decoration: none;
}
.pagination .pagination-info {
  font-size: 0.875rem;
  color: #6c757d;
}

.post-sharing {
  margin-bottom: 2rem;
}
.post-sharing h4 {
  margin-bottom: 1rem;
}
.post-sharing .sharing-buttons {
  display: flex;
  gap: 0.75rem;
}
@media (max-width: 639px) {
  .post-sharing .sharing-buttons {
    flex-wrap: wrap;
  }
}
.post-sharing .share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
  background-color: #ffffff;
  color: #495057;
  border-color: #dee2e6;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}
.post-sharing .share-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.post-sharing .share-button:hover {
  background-color: #007bff;
  color: #ffffff;
  border-color: #007bff;
  text-decoration: none;
}
.post-sharing .share-button .share-icon {
  margin-right: 0.25rem;
}

.related-posts {
  padding: 5rem 0;
  background-color: #f8f9fa;
}
.related-posts .related-posts-title {
  text-align: center;
  margin-bottom: 2rem;
}
.related-posts .related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 639px) {
  .related-posts .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
}

.hidden {
  display: none !important;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.flex {
  display: flex !important;
}

.inline-flex {
  display: inline-flex !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.sticky {
  position: sticky !important;
}

.w-full {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.max-w-none {
  max-width: none !important;
}

.h-full {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

.border-0 {
  border: 0 !important;
}

.border-t {
  border-top: 1px solid #dee2e6 !important;
}

.border-b {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-l {
  border-left: 1px solid #dee2e6 !important;
}

.border-r {
  border-right: 1px solid #dee2e6 !important;
}

.rounded-none {
  border-radius: 0 !important;
}

.rounded-sm {
  border-radius: 0.25rem !important;
}

.rounded {
  border-radius: 0.375rem !important;
}

.rounded-md {
  border-radius: 0.5rem !important;
}

.rounded-lg {
  border-radius: 0.75rem !important;
}

.rounded-xl {
  border-radius: 1rem !important;
}

.rounded-full {
  border-radius: 9999px !important;
}

.shadow-none {
  box-shadow: none !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-gray-50 {
  background-color: #f8f9fa !important;
}

.bg-gray-100 {
  background-color: #e9ecef !important;
}

.bg-primary {
  background-color: #007bff !important;
}

.bg-accent {
  background-color: #28a745 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-primary {
  color: #1a1e21 !important;
}

.text-secondary {
  color: #495057 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-accent {
  color: #28a745 !important;
}

.text-success {
  color: #28a745 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-error {
  color: #dc3545 !important;
}

.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.text-xs {
  font-size: 0.75rem !important;
}

.text-sm {
  font-size: 0.875rem !important;
}

.text-base {
  font-size: 1rem !important;
}

.text-lg {
  font-size: 1.125rem !important;
}

.text-xl {
  font-size: 1.25rem !important;
}

.text-2xl {
  font-size: 1.5rem !important;
}

.text-3xl {
  font-size: 1.875rem !important;
}

.text-4xl {
  font-size: 2.25rem !important;
}

.text-5xl {
  font-size: 3rem !important;
}

.text-6xl {
  font-size: 3.75rem !important;
}

@media print {
  .no-print,
  .site-header,
  .site-footer,
  .blog-sidebar,
  .sidebar-widget,
  .app-store-badges,
  .lead-magnet-form,
  .sharing-buttons,
  .related-posts {
    display: none !important;
  }
  .main-content,
  .post-content,
  .blog-content {
    color: #000 !important;
    background: #fff !important;
  }
  body {
    font-size: 12pt !important;
    line-height: 1.4 !important;
  }
  h1 {
    font-size: 24pt !important;
  }
  h2 {
    font-size: 20pt !important;
  }
  h3 {
    font-size: 16pt !important;
  }
  h4 {
    font-size: 14pt !important;
  }
  h5 {
    font-size: 12pt !important;
  }
  h6 {
    font-size: 10pt !important;
  }
  * {
    box-shadow: none !important;
    border-color: #ccc !important;
  }
}
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0066cc;
    --text-primary: #000000;
    --text-secondary: #333333;
    --border-color: #666666;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (prefers-color-scheme: dark) {
  /*
  :root {
    --background-primary: #1a1a1a;
    --background-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border-color: #404040;
  }
  */
}
:focus-visible {
  outline: 2px solid #007bff !important;
  outline-offset: 2px !important;
}

:focus:not(:focus-visible) {
  outline: none;
}

::selection {
  background-color: rgba(0, 123, 255, 0.2);
  color: #1a1e21;
}

::-moz-selection {
  background-color: rgba(0, 123, 255, 0.2);
  color: #1a1e21;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #e9ecef;
}

::-webkit-scrollbar-thumb {
  background: #adb5bd;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6c757d;
}

img {
  max-width: 100%;
  height: auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.formkit-form .formkit-input {
  border: 1px solid #dee2e6 !important;
  border-radius: 0.375rem !important;
}
.formkit-form .formkit-input:focus {
  border-color: #007bff !important;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1) !important;
}
.formkit-form .formkit-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out;
  background-color: #007bff !important;
  color: #ffffff !important;
  border-color: #007bff !important;
}
.formkit-form .formkit-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.formkit-form .formkit-submit:hover {
  background-color: #0056b3 !important;
}

.twitter-tweet,
.instagram-media,
.fb-post {
  margin: 1.5rem auto !important;
  max-width: 100% !important;
}

iframe[src*=youtube],
iframe[src*=vimeo] {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/*# sourceMappingURL=main.css.map */