/* CSS Variables for consistent theming */
:root {
  /* Ghost font settings */
  --gh-font-heading: "Montserrat", sans-serif;
  --gh-font-body: "Roboto", sans-serif;
  
  /* Custom font variables */
  --font-roboto: "Roboto", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
  
  /* Color variables */
  --color-primary: #f2994a;
  --color-blue-400: #0038ff;
  --color-orange-400: #ff8000;
  --color-gradient-start: #ff4880;
  --color-gradient-end: #992b4d;
  --color-bg-dark: #0c0c0c;
  --color-text-light: #f2f2f2;
  --color-text-gray: #aaa9a9;
  --color-text-muted: #aaaaaa;
  --color-border-gray: #363636;
  --color-bg-card: #1a1a1a;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--color-bg-dark);
  background-image: url('data:image/svg+xml,<svg width="1440" height="1666" viewBox="0 0 1440 1666" fill="none" xmlns="http://www.w3.org/2000/svg"><g opacity="0.5"><g filter="url(%23filter0_f_82_5191)"><ellipse cx="523.448" cy="719.221" rx="446.5" ry="446" transform="rotate(26.175 523.448 719.221)" fill="%230038FF" fill-opacity="0.4"/></g><g filter="url(%23filter1_f_82_5191)"><path d="M-39.5842 226.624C-150.47 338.803 -220.399 431.45 -217.77 589.144C-212.645 896.592 238.98 1116.17 488.288 936.186C685.337 793.932 611.937 565.676 596.046 323.172C589.035 216.168 610.749 140.543 549.514 52.5818C412.487 -144.251 129.132 55.9395 -39.5842 226.624Z" fill="url(%23paint0_linear_82_5191)"/></g><g filter="url(%23filter2_f_82_5191)"><ellipse cx="-223.013" cy="418.24" rx="356" ry="355.5" transform="rotate(26.175 -223.013 418.24)" fill="%23FF8000"/></g></g><defs><filter id="filter0_f_82_5191" x="-423.055" y="-226.977" width="1893.01" height="1892.39" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="250" result="effect1_foregroundBlur_82_5191"/></filter><filter id="filter1_f_82_5191" x="-717.842" y="-528.912" width="1840.4" height="2030.04" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="250" result="effect1_foregroundBlur_82_5191"/></filter><filter id="filter2_f_82_5191" x="-1079" y="-437.438" width="1711.96" height="1711.35" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="250" result="effect1_foregroundBlur_82_5191"/></filter><linearGradient id="paint0_linear_82_5191" x1="504.693" y1="2.06328" x2="41.5234" y2="944.387" gradientUnits="userSpaceOnUse"><stop stop-color="%23FF4880"/><stop offset="1" stop-color="%23992B4D"/></linearGradient></defs></svg>');
  background-repeat: no-repeat;
  font-family: var(--font-roboto);
  color: var(--color-text-light);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-montserrat);
  font-weight: 700;
  color: var(--color-text-light);
}

/* Utility Classes - Tailwind-like */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.flex {
  display: flex;
}

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

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

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

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

.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-9 {
  gap: 2.25rem;
}

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

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

/* Padding and Margin utilities */
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-12 {
  padding: 3rem;
}
.p-16 {
  padding: 4rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-32 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-50 {
  margin-top: 3.125rem;
}
.mt-100 {
  margin-top: 6.25rem;
}

.mb-4 {
  margin-bottom: 1rem;
}
.mb-8 {
  margin-bottom: 2rem;
}

/* Text sizes */
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
}
.text-6xl {
  font-size: 3.75rem;
}

/* Custom text sizes matching your design */
.text-18 {
  font-size: 18px;
}
.text-20 {
  font-size: 20px;
}
.text-24 {
  font-size: 24px;
}
.text-26 {
  font-size: 26px;
}
.text-30 {
  font-size: 30px;
}
.text-32 {
  font-size: 32px;
}
.text-40 {
  font-size: 40px;
}
.text-64 {
  font-size: 64px;
}

/* Font weights */
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

/* Colors */
.text-primary {
  color: var(--color-primary);
}
.text-white {
  color: #ffffff;
}
.text-gray {
  color: var(--color-text-gray);
}
.text-muted {
  color: var(--color-text-muted);
}
.text-light {
  color: var(--color-text-light);
}

.bg-dark {
  background-color: var(--color-bg-dark);
}
.bg-card {
  background-color: var(--color-bg-card);
}

/* Borders */
.border {
  border: 1px solid;
}
.border-gray {
  border-color: var(--color-border-gray);
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}

/* Navigation Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #374151;
  position: relative;
  z-index: 20;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-weight: 500;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 14px;
}

.navbar-nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-nav a:hover {
  color: var(--color-text-light);
}

/* Navigation Link Styles */
.nav-link {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--color-text-light);
}

/* Dropdown Navigation Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle::after {
  /* content: '▼'; */
  font-size: 10px;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-gray);
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(54, 54, 54, 0.5);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: rgba(242, 153, 74, 0.1);
  color: var(--color-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--color-text-light);
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger animation when menu is open */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(12, 12, 12, 0.98);
  backdrop-filter: blur(16px);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 80px 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-section {
  display: flex;
  flex-direction: column;
}

.mobile-nav-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 1px solid var(--color-border-gray);
}

.mobile-nav-arrow {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.mobile-nav-toggle.active .mobile-nav-arrow {
  transform: rotate(180deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: rgba(26, 26, 26, 0.5);
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.mobile-submenu.active {
  max-height: 300px;
  padding: 0.5rem 0;
}

.mobile-nav-link:not(:last-child) {
  display: block;
  padding: 1rem 0;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  border-bottom: 1px solid var(--color-border-gray);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--color-text-light);
}

.mobile-submenu .mobile-nav-link {
  padding: 0.75rem 1rem;
  font-size: 16px;
  border-bottom: 1px solid rgba(54, 54, 54, 0.3);
}

.mobile-submenu .mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-menu-cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-gray);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    margin-top: 0;
  }

  .dropdown-item {
    padding: 0.5rem 0;
    border-bottom: none;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-roboto);
}

.btn-primary {
  background: linear-gradient(to bottom, #f2994a, #d56d11);
  border-radius: 7485.04px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  color: black;
  font-weight: 600;
  line-height: 1.5;
  width: 128px;
  height: 38px;
  font-size: 12px;
}

.btn-primary:hover {
  background: linear-gradient(to bottom, #e8894a, #c25d0f);
  transform: translateY(-1px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
  background: linear-gradient(
    to bottom,
    rgba(41, 41, 41, 0.5),
    rgba(66, 66, 66, 0.35)
  );
  border-radius: 1000px;
  border: 1.5px solid #aaaaaa;
  color: #aaaaaa;
  font-weight: 400;
  line-height: 1.5;
  width: 136px;
  height: 40px;
  font-size: 12px;
}

.btn-secondary:hover {
  background: linear-gradient(
    to bottom,
    rgba(41, 41, 41, 0.7),
    rgba(66, 66, 66, 0.55)
  );
  border-color: #cccccc;
  color: #cccccc;
  transform: translateY(-1px);
}

/* Header/Hero Section */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  z-index: 10;
}

.hero-content {
  max-width: 1083px;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  text-align: center;
}

.hero-title {
  font-family: var(--font-montserrat);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light);
}

.hero-subtitle {
  font-family: var(--font-roboto);
  font-size: 24px;
  color: var(--color-text-gray);
  max-width: 900px;
  margin: 0 auto;
}

/* Services Section */
.services {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.services-title {
  font-size: 40px;
  font-family: var(--font-montserrat);
  font-weight: 700;
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 50px;
}

.services-subtitle {
  font-size: 20px;
  color: var(--color-text-muted);
  font-family: var(--font-roboto);
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  width: 100%;
}

.service-card {
  width: 300px;
  background-color: var(--color-bg-card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--color-border-gray);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.service-description {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  font-size: 14px;
}

.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-primary);
  border-radius: 50%;
}

/* Footer Styles */
.footer {
  margin-top: 50px;
  /* position: fixed;
  bottom: 0;
  left: 0;
  width: 100%; */
}

.footer-cta {
  width: 100%;
  height: 515px;
  background: linear-gradient(to bottom, #0c0c0c 50%, #1f1f1f 50%);
  margin-top: -100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-cta-content {
  width: 90%;
  max-width: 1160px;
  min-height: 218px;
  display: flex;
  align-items: center;
  background-color: #0c0c0c;
  background-image: url("/assets/images/blob.svg");
  background-size: cover;
  background-position: left top;
  border-radius: 14.54px;
  position: relative;
  z-index: 2;
  margin-top: 120px;
  padding: 3rem;
  gap: 2rem;
}

.footer-cta-text {
  flex: 1;
}

.footer-cta-title {
  color: white;
  font-size: 30px;
  font-family: var(--font-montserrat);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-cta-description {
  color: var(--color-text-muted);
  font-size: 18px;
  font-family: var(--font-roboto);
  font-weight: 400;
}

.footer-links {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10%;
  width: 100%;
  padding: 2rem 350px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-brand-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand-name {
  color: white;
  font-size: 22px;
  font-weight: 500;
}

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

.footer-social a {
  display: block;
  width: 40px;
  height: 40px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-nav-title {
  color: var(--color-text-light);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: var(--color-text-muted);
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  width: 100%;
  background-color: #131313;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.footer-copyright {
  color: #bebebe;
  font-size: 16px;
}

.footer-attribution {
  font-size: 12px;
  color: #8c8c8c;
}

.footer-attribution a {
  color: #cfcfcf;
  text-decoration: none;
}

.footer-attribution a:hover {
  color: var(--color-primary);
}

/* List Styles - Global defaults for non-blog content */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List item markers */
ul > li::before,
ul ul > li::before,
ul ul ul > li::before {
  content: none;
}

/* Ordered Lists */
ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: item;
}

ol li {
  display: flex;
  padding-left: 2rem;
  position: relative;
}

ol li::before {
  content: counter(item);
  counter-increment: item;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(to bottom, #2e2e2e, #131211);
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  font-family: var(--font-roboto);
  font-weight: bold;
  font-size: 0.75rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Blog Post Content List Styles - Override global styles for better readability */
.post-content ul {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.post-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Remove the global pseudo-element and add our own */
.post-content ul li::before {
  content: "" !important;
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px !important;
  height: 6px !important;
  background-color: var(--color-primary) !important;
  border-radius: 50% !important;
  margin-right: 0 !important;
  display: block !important;
  border: none !important;
}

/* Nested lists in blog content */
.post-content ul ul {
  margin: 0.5rem 0;
  padding-left: 1rem;
}

.post-content ul ul li::before {
  content: "" !important;
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 4px !important;
  height: 4px !important;
  background-color: transparent !important;
  border: 1px solid var(--color-primary) !important;
  border-radius: 50% !important;
  margin-right: 0 !important;
  display: block !important;
}

.post-content ul ul ul li::before {
  content: "" !important;
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 3px !important;
  height: 3px !important;
  background-color: var(--color-primary) !important;
  border: none !important;
  border-radius: 0 !important;
  margin-right: 0 !important;
  display: block !important;
}

/* Ordered lists in blog content */
.post-content ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  counter-reset: none;
}

.post-content ol li {
  position: static;
  padding-left: 0.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  display: list-item;
}

.post-content ol li::before {
  display: none;
}

.post-content ol li::marker {
  color: var(--color-primary);
  font-weight: bold;
}

/* Nested ordered lists */
.post-content ol ol {
  list-style: lower-alpha;
  margin: 0.5rem 0;
}

.post-content ol ol ol {
  list-style: lower-roman;
}

/* Mixed nested lists */
.post-content ul ol,
.post-content ol ul {
  margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .navbar-nav {
    display: none;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .services-title {
    font-size: 26px;
  }

  .services-grid {
    gap: 1.5rem;
  }

  .service-card {
    width: 100%;
    max-width: 400px;
  }

  .footer-links {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .footer-cta-content {
    flex-direction: column;
    min-height: auto;
    padding: 2rem;
    text-align: center;
  }

  .footer-cta-title {
    font-size: 26px;
    margin-bottom: 1rem;
  }

  .footer-cta-description {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }

  .footer-cta-button {
    align-self: center;
  }
}

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

  .hero-subtitle {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .navbar {
    padding: 1rem 8rem;
  }

  .navbar-nav {
    display: flex;
  }

  .hero {
    padding: 5.625rem 0;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .services {
    margin-top: 100px;
  }

  .services-title {
    font-size: 40px;
  }

  .services-grid {
    gap: 4rem;
  }

  .service-card {
    width: 300px;
  }
}

/* Ghost-specific styles */
.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  font-family: var(--font-montserrat);
  color: var(--color-text-light);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content p {
  font-family: var(--font-roboto);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.post-content a {
  color: var(--color-primary);
  text-decoration: none;
}

.post-content a:hover {
  text-decoration: underline;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.post-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--color-text-gray);
}

.post-content code {
  background-color: var(--color-bg-card);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: "Menlo", "Monaco", "Consolas", monospace;
  font-size: 0.875rem;
}

.post-content pre {
  background-color: var(--color-bg-card);
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 2rem 0;
}

.post-content pre code {
  background: none;
  padding: 0;
}

/* Blog Post Styles */
.post-article {
  width: 100%;
}

/* Post Header Styles */
.post-header {
  padding: 4rem 1rem 2rem;
  text-align: center;
}

.post-header-container {
  max-width: 800px;
}

.post-tag-badge {
  background-color: var(--color-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.post-title {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.post-excerpt {
  font-family: var(--font-roboto);
  font-size: 18px;
  color: var(--color-text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.author-name {
  font-weight: 500;
}

.meta-separator {
  color: var(--color-text-muted);
}

.post-date,
.reading-time {
  color: var(--color-text-muted);
}

.post-feature-image {
  margin-bottom: 2rem;
}

.feature-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  max-height: 400px;
  object-fit: cover;
}

.feature-image-caption {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 0.5rem;
  text-align: center;
}

/* Post Footer Styles */
.post-footer {
  padding: 2rem 1rem;
  border-top: 1px solid var(--color-border-gray);
  margin-top: 3rem;
}

.post-footer-container {
  max-width: 800px;
}

.post-tags-section {
  margin-bottom: 2rem;
}

.tags-title {
  color: var(--color-text-light);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-montserrat);
}

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

.tag-link {
  background-color: var(--color-bg-card);
  color: var(--color-text-muted);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 12px;
  text-decoration: none;
  border: 1px solid var(--color-border-gray);
  transition: all 0.3s ease;
}

.tag-link:hover {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* Author Bio Styles */
.post-authors-bio {
  margin-bottom: 2rem;
}

.author-bio {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-bg-card);
  border-radius: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.author-bio:hover {
  border-color: var(--color-border-gray);
}

.author-bio-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
}

.author-bio-content {
  flex: 1;
}

.author-bio-name {
  color: var(--color-text-light);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-montserrat);
}

.author-bio-text {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.author-website-link {
  color: var(--color-primary);
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.author-website-link:hover {
  color: var(--color-text-light);
}

/* Share Buttons Styles */
.post-share {
  text-align: center;
  margin-top: 2rem;
}

.share-title {
  color: var(--color-text-light);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-montserrat);
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: white;
}

.share-twitter {
  background-color: #1DA1F2;
}

.share-linkedin {
  background-color: #0077B5;
}

.share-facebook {
  background-color: #1877F2;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Related Posts Styles */
.related-posts {
  padding: 3rem 1rem;
  border-top: 1px solid var(--color-border-gray);
}

.related-posts-title {
  font-size: 28px;
  margin-bottom: 2rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.related-post {
  background-color: var(--color-bg-card);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.related-post:hover {
  border-color: var(--color-border-gray);
  transform: translateY(-4px);
}

.related-post-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.related-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-post:hover .related-post-img {
  transform: scale(1.05);
}

.related-post-content {
  padding: 1.5rem;
}

.related-post-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-montserrat);
}

.related-post-title a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post-title a:hover {
  color: var(--color-primary);
}

.related-post-excerpt {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.related-post-meta {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Responsive Design for Blog Posts */
@media (max-width: 768px) {
  .post-header {
    padding: 2rem 1rem 1rem;
  }
  
  .post-title {
    font-size: 24px;
  }
  
  .post-excerpt {
    font-size: 16px;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .feature-image {
    max-height: 250px;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .author-bio-image {
    align-self: center;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .share-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .share-btn {
    width: 200px;
  }
}

@media (min-width: 640px) {
  .post-title {
    font-size: 40px;
  }
}

@media (min-width: 768px) {
  .post-title {
    font-size: 48px;
  }
  
  .post-meta {
    flex-direction: row;
  }
}

.testimonial-social-link {
  align-self: self-end;
  margin-bottom: 3px;
  margin-left: 3px;
}

.testimonial-social-icon {
  width: 24px;
}

/* Koenig Editor Styles - Required for Ghost */
.kg-width-wide {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.kg-width-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.kg-card {
  margin: 2rem 0;
}

.kg-card figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  font-style: italic;
}

.kg-image {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.kg-gallery-container {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.kg-gallery-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.kg-gallery-image {
  flex: 1;
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
}

.kg-embed-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 2rem 0;
}

.kg-bookmark-card {
  width: 100%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-gray);
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 2rem 0;
}

.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.kg-bookmark-content {
  flex: 1;
  padding: 1.5rem;
}

.kg-bookmark-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.kg-bookmark-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.kg-bookmark-metadata {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.kg-bookmark-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.kg-bookmark-thumbnail {
  width: 200px;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .kg-width-wide,
  .kg-width-full {
    width: 100%;
    position: static;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .kg-bookmark-container {
    flex-direction: column;
  }

  .kg-bookmark-thumbnail {
    width: 100%;
    height: 200px;
  }

  .kg-gallery-row {
    flex-direction: column;
  }
}

.section-title {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 3.125rem);
  text-align: center;
  line-height: 1.2;
  color: #F5F5F5;
}

.section-subtitle {
  font-family: var(--font-roboto);
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: #AAAAAA;
  max-width: 900px;
}
