.blog-page {
  width: 100%;
  padding-top: 120px;
}
.blog-container {
  width: min(95%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: start;
  gap: 40px;
}
.blog-sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 140px);
  overflow: auto;
  padding-right: 10px;
  border-right: 1px dashed #e5e7eb;
}
.blog-toc {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 10px 0 0;
}
.blog-toc li {
  margin: 0;
}
.blog-toc a {
  display: block;
  padding: 8px 10px;
  color: #333;
  border-radius: 8px;
  font-weight: 500;
  background: transparent;
  transition: color 0.2s ease, padding-left 0.15s ease;
  white-space: normal;
  position: relative;
  overflow: hidden;
}
.blog-toc a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #333;
  transition: width 0.25s ease;
}
.blog-toc a:hover::after {
  width: 100%;
}
.blog-toc a.is-active {
  color: #333;
}
.blog-toc a.is-active::after {
  background: #333;
  width: 100%;
}
.blog-toc .toc-h2 a {
  padding-left: 10px;
}
.blog-toc .toc-h3 a {
  padding-left: 22px;
  font-weight: 500;
}
.blog-toc .toc-h4 a {
  padding-left: 34px;
  font-weight: 400;
  color: #4b5563;
}
.blog-content {
  min-width: 0;
}
.blog-content article {
  display: block;
}
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  scroll-margin-top: 110px;
}
.blog-content h2 {
  margin: 30px 0 10px;
}
.blog-content h3 {
  margin: 24px 0 8px;
}
.blog-content h4 {
  margin: 20px 0 6px;
}
.blog-content p {
  margin: 12px 0 0;
  color: #333;
}
.blog-content ul,
.blog-content ol {
  margin: 14px 0 0 24px;
}
.blog-content li {
  margin: 6px 0;
}
.blog-content img,
.blog-content video,
.blog-content iframe {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.blog-content pre code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95rem;
  background: #0f0f12;
  color: #ececec;
  padding: 16px;
  border-radius: 8px;
  overflow: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  margin: 16px 0;
}
.blog-content blockquote {
  margin: 16px 0;
  padding: 14px 16px;
  background: rgba(242, 87, 255, 0.05);
  border-radius: 8px;
  color: #333;
}
.blog-controls {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10004;
  background: rgba(17, 17, 17, 0.96);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
}
.blog-controls .control-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, opacity 0.2s ease;
}
.blog-controls .control-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}
.blog-controls .control-btn:active {
  transform: translateY(0);
}
.blog-controls .btn-to-top {
  display: inline-flex;
}
.blog-controls .btn-toggle-sidebar {
  display: none;
}
@media (max-width: 768px) {
  .blog-container {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .blog-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(85vw, 360px);
    max-height: 100dvh;
    background: #f8f8f8;
    border-right: 1px solid #e5e7eb;
    padding: 100px 16px 20px 16px;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 9998;
  }
  .blog-toc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 9997;
  }
  .blog-sidebar-visible .blog-sidebar {
    transform: translateX(0);
  }
  .blog-sidebar-visible .blog-toc-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .blog-controls .btn-toggle-sidebar {
    display: inline-flex;
  }
  .blog-content h1,
  .blog-content h2,
  .blog-content h3,
  .blog-content h4,
  .blog-content h5,
  .blog-content h6 {
    scroll-margin-top: 90px;
  }
}
:root {
  --blog-sidebar-w: 360px;
  --blog-sidebar-gap: 40px;
  --blog-sidebar-margin: 20px;
}
.blog-content h1 {
  font-size: 1.9rem;
}
.blog-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
.blog-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
.blog-content h4 {
  font-size: 1.1rem;
}
.blog-content .blog-article,
.blog-content article {
  max-width: 760px;
  line-height: 1.7;
  font-size: 1.02rem;
}
.blog-content .lead {
  font-size: 1.15rem;
  color: #4b5563;
  margin-top: 8px;
}
.blog-content a {
  color: #408CFA;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.blog-content a:hover {
  color: #1874f9;
}
.blog-content figure {
  margin: 18px 0;
  text-align: center;
}
.blog-content figure figcaption {
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 8px;
}
.blog-content .pullquote {
  margin: 24px 0;
  padding: 18px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  font-size: 1.1rem;
  line-height: 1.6;
}
.blog-content .callout {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
}
.blog-content .callout.note {
  background: rgba(242, 87, 255, 0.05);
}
.blog-content .callout.tip {
  background: rgba(16, 185, 129, 0.06);
}
.blog-content .callout.warn {
  background: rgba(245, 158, 11, 0.1);
}
.blog-toc .toc-h2 a {
  font-size: 0.98rem;
  font-weight: 700;
}
.blog-toc .toc-h3 a {
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0.95;
}
.blog-toc .toc-h4 a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563;
}
.blog-toc .toc-h3 a::before,
.blog-toc .toc-h4 a::before {
  content: '•';
  display: inline-block;
  width: 12px;
  color: #9ca3af;
  margin-right: 6px;
}
.blog-toc a.is-active::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .blog-sidebar {
    position: fixed;
    top: 100px;
    left: var(--blog-sidebar-margin);
    width: var(--blog-sidebar-w);
    max-height: calc(100vh - 140px);
    overflow: auto;
    border-right: 1px solid #e5e7eb;
    background: transparent;
  }
  .blog-container {
    grid-template-columns: 1fr;
    padding-left: calc(var(--blog-sidebar-w) + var(--blog-sidebar-gap) + var(--blog-sidebar-margin));
    width: min(95%, 1240px);
  }
}
@media (min-width: 1200px) {
  :root {
    --blog-sidebar-w: 380px;
  }
}
@media (min-width: 1600px) {
  :root {
    --blog-sidebar-w: 420px;
  }
}
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 10007;
}
.reading-progress__bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #f257ff, #7873f5);
  transition: width 0.1s linear;
}
@media (max-width: 768px) {
  .blog-content .blog-article,
  .blog-content article {
    max-width: 100%;
  }
}
section {
  width: min(95%, 1240px);
  margin: 0 auto;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-gap-10 {
  gap: 10px;
}
.flex-gap-20 {
  gap: 20px;
}
.flex-gap-30 {
  gap: 30px;
}
.flex-gap-40 {
  gap: 40px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 135%;
}
.section-description {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 150%;
}
.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.cta-wrapper h2 {
  text-align: center;
  font-size: 1.6rem !important;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-100 {
  margin-top: 100px;
}
.mt-200 {
  margin-top: 200px;
}
.transition-fast {
  transition: all 0.15s ease-in-out;
}
.transition-normal {
  transition: all 0.3s ease;
}
.transition-slow {
  transition: all 0.5s ease;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.fixed {
  position: fixed;
}
.flex-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.flex-end {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Manrope', 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
  font-weight: 400 !important;
  height: auto;
  overflow-x: hidden !important;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  letter-spacing: -0.5%;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.2rem;
  letter-spacing: -0.5%;
}
h3 {
  font-size: 2rem;
  letter-spacing: -1.2%;
}
h4 {
  font-size: 1.75rem;
  letter-spacing: -1%;
}
h5 {
  font-size: 1.5rem;
}
h6 {
  font-size: 1.25rem;
}
p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
  font-family: 'Inter', sans-serif;
}
a {
  text-decoration: none;
  color: #333;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
}
@media (max-width: 768px) {
  a {
    color: #ececec;
  }
}
.highlight {
  font-weight: 400 !important;
  padding: 10px;
  color: #f257ff;
  background-color: rgba(242, 87, 255, 0.05);
  border-radius: 5px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 768px) {
  .highlight {
    background-color: transparent;
    padding: 0;
  }
}
.highlight::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 1.2em;
  background-color: #f257ff50;
  animation: blink 1s infinite;
}
@media (max-width: 768px) {
  .highlight::after {
    background-color: transparent;
  }
}
.highlight.changing::after {
  animation: none;
  opacity: 0;
}
.highlight.typing::after {
  opacity: 0;
}
.highlight.changing {
  animation: textChange 0.3s ease-in-out;
}
@keyframes textChange {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
.navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  z-index: 10000;
}
@media (max-width: 768px) {
  .navbar-container {
    padding: 0;
    height: 80px;
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  }
}
.logo-container {
  position: relative;
  padding: 0;
}
.logo-container .logo {
  height: 27px;
  width: auto;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .logo-container {
    margin-left: 25px;
  }
}
.hamburger-btn {
  position: fixed;
  top: 20px;
  right: 30px;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10005;
}
.hamburger-btn span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #111827;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.hamburger-btn span:nth-child(1) {
  top: 16px;
}
.hamburger-btn span:nth-child(2) {
  top: 22px;
}
.hamburger-btn span:nth-child(3) {
  top: 28px;
}
.hamburger-btn.open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 10001;
}
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 380px);
  height: 100dvh;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 10002;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
}
.sidebar .sidebar-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 22px;
}
.sidebar .sidebar-nav a {
  position: relative;
  padding: 15px 4px;
  color: #111827;
  font-weight: 600;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  border-bottom: 1px dashed #dfdfdf;
}
.sidebar .sidebar-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #111827;
  transition: width 0.25s ease;
}
.sidebar .sidebar-nav a:hover::after {
  width: 100%;
}
.sidebar .sidebar-legal {
  margin-top: auto;
  padding: 8px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar .sidebar-legal a {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 6px 4px;
}
.sidebar .sidebar-legal a::after {
  background: #9ca3af;
}
.sidebar-open .sidebar {
  transform: translateX(0%);
}
.sidebar-open .sidebar-overlay {
  opacity: 1;
  pointer-events: auto;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 150px;
}
.hero .hero-content {
  margin-top: 200px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.hero .hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero .hero-title p {
  text-align: center;
}
.hero-video {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.hero-video video {
  width: 100%;
  height: auto;
  display: block;
}
.hero-video .video-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.hero-video .video-controls .play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.hero-video .video-controls .play-button:hover {
  background-color: #ffffff;
  transform: scale(1.1);
}
.hero-video .video-controls .play-button i {
  width: 24px;
  height: 24px;
  color: #333;
  margin-left: 3px;
}
.hero-video .video-controls.playing .play-button {
  opacity: 0;
  pointer-events: none;
}
.hero-video:hover .video-controls:not(.playing) .play-button {
  opacity: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 150ms ease-in-out;
  position: relative;
  overflow: hidden;
}
.btn .btn-text,
.btn .btn-icon {
  transition: all 150ms ease-in-out;
}
.btn .btn-icon {
  width: 18px;
  height: 18px;
}
.btn-primary .btn-icon,
.btn-secondary .btn-icon {
  opacity: 0;
  transform: translateX(-20px);
  position: absolute;
  left: 8px;
  transition: all 150ms ease-in-out;
}
.btn-primary:hover,
.btn-secondary:hover {
  padding-left: 32px;
}
.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
  opacity: 1;
  transform: translateX(0);
  left: 10px;
}
.btn-primary {
  background-color: #333;
  color: white;
}
.btn-secondary {
  background-color: #e5e7eb;
  color: #333;
}
.btn-tertiary {
  background-color: transparent;
  color: #333;
  padding: 0px;
  border-bottom: 1px solid #333;
  border-radius: 0;
}
.btn-tertiary .btn-icon {
  opacity: 0;
  transform: translateX(-20px);
  position: absolute;
  left: 0px;
  transition: all 150ms ease-in-out;
}
.btn-tertiary:hover {
  padding-left: 20px;
}
.btn-tertiary:hover .btn-icon {
  opacity: 1;
  transform: translateX(0);
}
.services {
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .services {
    padding: 80px 20px;
  }
}
.services .services-header {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  margin-top: 0;
}
.services .services-header .section-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #f257ff;
  background-color: rgba(242, 87, 255, 0.05);
  padding: 10px;
  border-radius: 10px;
}
.services .services-header .section-tag h3 {
  font-size: 1rem;
}
.services .services-header .section-tag .service-icon {
  width: 16px;
  height: 16px;
}
.services .services-header h2 {
  font-weight: 500;
  line-height: 135%;
  max-width: 600px;
}
@media (max-width: 768px) {
  .services .services-header {
    align-items: flex-start;
    text-align: left;
  }
  .services .services-header h2 {
    text-align: left;
  }
}
.services .services-header h2 {
  max-width: 500px;
}
.services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 4rem;
}
.services .services-grid .service-card-container a {
  margin: 20px 0 40px 10px;
}
.services .services-grid .service-card-container .service-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.15s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  height: 400px;
  justify-content: space-between;
}
.services .services-grid .service-card-container .service-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.services .services-grid .service-card-container .service-card .service-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 50px;
  padding: 35px;
  position: relative;
  z-index: 1;
}
.services .services-grid .service-card-container .service-card .service-card-content h4 {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 135%;
}
.services .services-grid .service-card-container .service-card .service-card-content p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.services .services-grid .service-card-container .service-card .img-wrapper {
  position: absolute;
  left: 35px;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}
.services .services-grid .service-card-container .service-card .img-wrapper img,
.services .services-grid .service-card-container .service-card .img-wrapper svg,
.services .services-grid .service-card-container .service-card .img-wrapper picture,
.services .services-grid .service-card-container .service-card .img-wrapper canvas {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px 0 0 0;
}
.services .services-grid .service-card-container:hover .btn-tertiary {
  padding-left: 20px;
}
.services .services-grid .service-card-container:hover .btn-tertiary .btn-icon {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .services .services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.projects {
  padding: 80px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  background-color: white;
  width: 100%;
}
.projects .projects-content {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 0 20px;
}
.projects .projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}
.projects .projects-header .projects-title .section-description {
  max-width: 500px;
}
.projects .projects-header .projects-navigation {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.projects .projects-header .projects-navigation .nav-btn {
  width: 50px;
  height: 50px;
  background: #333;
  border-radius: 0px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s linear;
  color: white;
}
.projects .projects-header .projects-navigation .nav-btn:hover {
  border-color: #333;
  background: #333;
  color: white;
}
.projects .projects-header .projects-navigation .nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.projects .projects-header .projects-navigation .nav-btn:active {
  transform: scale(0.95);
}
.projects .projects-carousel {
  width: 100%;
  overflow: visible;
  cursor: grab;
}
.projects .projects-carousel .swiper-wrapper {
  display: flex;
}
.projects .projects-carousel .swiper-slide {
  width: auto;
  padding: 0px;
}
.projects .projects-carousel .projects-pagination {
  display: none;
}
.projects .project-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.15s ease-in-out;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.projects .project-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.projects .project-card.project-card-large {
  width: 700px;
  height: min(600px, 70dvh);
}
.projects .project-card.project-card-small {
  width: 500px;
  height: min(600px, 70dvh);
}
.projects .project-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.projects .project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects .project-header {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 3;
  color: white;
}
.projects .project-header .project-title-top h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
}
.projects .project-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7) 0%, transparent);
  transition: height 0.15s ease-in-out;
  z-index: 2;
}
.projects .project-card:hover::before {
  height: 30%;
}
.projects .project-content {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  bottom: -50px;
  left: 30px;
  right: 30px;
  color: white;
  z-index: 3;
  transition: all 0.3s ease;
  opacity: 0;
}
.projects .project-content .project-description {
  max-width: 90%;
  width: 90%;
}
.projects .project-content .project-description p {
  font-size: 1rem;
  line-height: 1.5;
  color: #dbdbdb;
  margin-bottom: 0;
}
.projects .project-content a.btn,
.projects .project-content .btn {
  display: none !important;
}
.projects .project-card:hover .project-content {
  bottom: 20px;
  opacity: 1;
}
@media (max-width: 768px) {
  .projects .projects-header {
    flex-direction: column;
    gap: 30px;
  }
  .projects .projects-header .projects-navigation {
    align-self: flex-end;
  }
  .projects .project-card {
    width: 400px;
    height: 400px;
  }
  .projects .project-card.project-card-large,
  .projects .project-card.project-card-small {
    width: 85vw;
    height: 400px;
  }
  .projects .project-card .project-header {
    top: 15px;
    left: 15px;
    right: 15px;
  }
  .projects .project-card .project-header .project-title-top h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .projects .project-card .project-content {
    left: 15px;
    right: 15px;
  }
  .projects .project-card .project-content .project-description p {
    font-size: 0.9rem;
  }
  .projects .projects-navigation {
    display: none !important;
  }
  .projects .projects-carousel {
    cursor: grab;
  }
  .projects .projects-carousel .projects-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 0 0;
    position: relative;
    bottom: 0;
  }
  .projects .projects-carousel .projects-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #d1d5db;
    opacity: 1;
    transition: all 0.2s ease;
  }
  .projects .projects-carousel .projects-pagination .swiper-pagination-bullet-active {
    width: 18px;
    background: #333;
  }
}
.o-nas {
  background-color: #f5f5f5;
  width: 100%;
  position: relative;
}
.o-nas .o-nas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1240px;
  margin: 0 auto;
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .o-nas .o-nas-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.o-nas .o-nas-left {
  display: flex;
  flex-direction: column;
  color: #333;
  text-align: left;
  padding: 200px 50px ;
}
.o-nas .o-nas-left .o-nas-header {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 20px;
}
.o-nas .o-nas-left .o-nas-header .section-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #f257ff;
  background-color: rgba(242, 87, 255, 0.05);
  padding: 10px;
  border-radius: 10px;
}
.o-nas .o-nas-left .o-nas-header .section-tag h3 {
  font-size: 1rem;
}
.o-nas .o-nas-left .o-nas-header .section-tag .service-icon {
  width: 16px;
  height: 16px;
}
.o-nas .o-nas-left .o-nas-header h2 {
  font-weight: 500;
  line-height: 135%;
  max-width: 600px;
}
@media (max-width: 768px) {
  .o-nas .o-nas-left .o-nas-header {
    align-items: flex-start;
    text-align: left;
  }
  .o-nas .o-nas-left .o-nas-header h2 {
    text-align: left;
  }
}
.o-nas .o-nas-left .o-nas-header h2 {
  text-align: left;
}
.o-nas .o-nas-left p {
  font-size: 1rem;
  line-height: 150%;
  margin-bottom: 40px;
  color: #444444;
  font-family: 'Inter', sans-serif;
}
.o-nas .o-nas-left .o-nas-text {
  margin-bottom: 40px;
  text-align: justify;
}
.o-nas .o-nas-left .o-nas-text p {
  font-size: 1rem;
  line-height: 150%;
  margin-bottom: 20px;
  color: #444;
  font-family: 'Inter', sans-serif;
}
.o-nas .o-nas-left .o-nas-text p:last-child {
  margin-bottom: 0;
}
.o-nas .o-nas-left .o-nas-cta .btn {
  align-self: flex-start;
}
.o-nas .o-nas-right {
  position: relative;
  background: url('../img/about.svg') center center / cover no-repeat;
  min-height: 380px;
}
.o-nas .o-nas-right #o-nas-lottie {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  transform: scale(2);
}
@media (min-width: 768px) {
  .o-nas .o-nas-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50vw;
  }
  .o-nas .o-nas-right #o-nas-lottie {
    width: 100%;
    height: 100%;
    transform: scale(1.2);
  }
}
.kontakt-page {
  display: flex;
  min-height: 100vh;
  width: 100%;
}
.kontakt-page .kontakt-sidebar {
  flex: 1;
  max-width: 480px;
  background-color: white;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content {
  width: 100%;
  padding: 150px 70px 0 70px;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-header {
  margin-bottom: 50px;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-header h1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 135%;
  margin-bottom: 20px;
  color: #333;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-header p {
  color: #4b5563;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-header p a {
  color: #408CFA;
  text-decoration: none;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-header p a:hover {
  text-decoration: underline;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group {
  position: relative;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group input,
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group textarea {
  width: 100%;
  padding: 19px 15px 19px 15px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.1s ease;
  border: none;
  background: #f5f6f7;
  font-weight: 400;
  color: #333;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group input:focus,
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group textarea:focus {
  outline: none;
  background: #f0f1f2;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group input::placeholder,
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group textarea::placeholder {
  color: transparent;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #999;
  transition: all 0.1s ease;
  pointer-events: none;
  font-weight: 400;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group input:focus,
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group input:not(:placeholder-shown),
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group textarea:focus,
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group textarea:not(:placeholder-shown) {
  padding: 27px 15px 11px 15px;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group input:focus + label,
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group input:not(:placeholder-shown) + label,
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group textarea:focus + label,
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group textarea:not(:placeholder-shown) + label {
  top: 7px;
  left: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  transform: translateY(0);
  letter-spacing: 0.04em;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group textarea {
  resize: none;
  min-height: 120px;
  overflow: hidden;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group textarea + label {
  top: 14px;
  transform: translateY(0);
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .btn {
  margin-top: 10px;
  transition: all 0.3s ease;
  background-color: #333;
  color: white;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .btn:disabled {
  opacity: 1;
  cursor: not-allowed;
}
.kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .btn .loading-spinner {
  width: 22px;
  height: 22px;
  background: url('../img/loading-hvezda.svg') center center / cover no-repeat;
  animation: spin 2s ease infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.kontakt-page .kontakt-background {
  flex: 1;
  background-image: linear-gradient(225deg, #ec77ab 0%, #7873f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.kontakt-page .kontakt-background .kontakt-background-content {
  max-width: 800px;
  padding: 60px;
}
.kontakt-page .kontakt-background .kontakt-background-content .section-title {
  color: white;
}
.kontakt-page .kontakt-background .kontakt-background-content .section-description {
  color: #ffffffbd;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.6rem;
    line-height: 1.2;
  }
  h2 {
    font-size: 1.8rem !important;
  }
  h3 {
    font-size: 1.4rem;
  }
  h4 {
    font-size: 1.2rem;
  }
  p {
    font-size: 1rem;
  }
  .hero {
    text-align: center;
    gap: 100px;
  }
  .hero .hero-content {
    margin-top: 140px;
    gap: 40px;
    align-items: center;
  }
  .hero .hero-title {
    align-items: center;
  }
  .hero .hero-title p {
    text-align: center;
  }
  .hero-video {
    border-radius: 16px;
  }
  .hero-video video {
    height: 55vh;
    object-fit: cover;
  }
  section {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .services {
    padding-left: 20px;
    padding-right: 20px;
  }
  .services .services-header {
    align-items: center;
    text-align: center;
  }
  .services .services-header .section-tag {
    justify-content: center;
  }
  .services .services-header h2 {
    text-align: center;
  }
  .o-nas {
    padding-left: 0;
    padding-right: 0;
  }
  .o-nas .o-nas-content {
    padding: 10px;
  }
  .o-nas .o-nas-left {
    padding: 20px !important;
  }
  .services .services-header {
    gap: 20px;
  }
  .services .services-grid {
    gap: 20px;
  }
  .services .services-grid .service-card {
    height: 370px;
  }
  .benefits .benefits-header {
    align-items: center;
    text-align: center;
  }
  .benefits .benefits-header .section-title {
    text-align: center;
  }
  .benefits .benefits-header .btn {
    align-self: center;
  }
  .o-nas .o-nas-left .o-nas-header {
    align-items: center;
    text-align: center;
  }
  .o-nas .o-nas-left .o-nas-header h2 {
    text-align: center;
  }
  .o-nas .o-nas-left .o-nas-cta {
    align-self: center;
  }
  .projects .projects-header {
    align-items: center;
    text-align: center;
  }
  .projects .projects-header .projects-title {
    text-align: center;
  }
  .projects .projects-header .projects-title .section-description {
    margin: 0 auto;
  }
  .faq .faq-header {
    align-items: center;
    text-align: center;
  }
  .faq .faq-header .section-title {
    text-align: center;
  }
  .faq .faq-header .btn {
    align-self: center;
  }
  .kontakt-page {
    flex-direction: column;
    min-height: auto;
    padding: 0;
  }
  .kontakt-page .kontakt-sidebar {
    width: 100%;
    max-width: none;
    padding: 100px 20px 0 20px;
  }
  .kontakt-page .kontakt-sidebar .kontakt-sidebar-content {
    padding: 20px;
    height: 100dvh;
  }
  .kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-header h1 {
    font-size: 2.2rem;
  }
  .kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group input,
  .kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group textarea {
    padding: 15px 13px 15px 13px;
  }
  .kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group label {
    left: 13px;
  }
  .kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group input:focus,
  .kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group input:not(:placeholder-shown),
  .kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group textarea:focus,
  .kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group textarea:not(:placeholder-shown) {
    padding: 23px 13px 7px 13px;
  }
  .kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group input:focus + label,
  .kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group input:not(:placeholder-shown) + label,
  .kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group textarea:focus + label,
  .kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group textarea:not(:placeholder-shown) + label {
    top: 6px;
    left: 13px;
  }
  .kontakt-page .kontakt-sidebar .kontakt-sidebar-content .kontakt-form .form-group textarea + label {
    top: 17px;
    transform: translateY(0);
  }
  .kontakt-page .kontakt-background {
    display: none;
  }
}
.benefits {
  width: 100%;
  background-color: white;
  padding: 100px 0;
}
.benefits .benefits-content {
  width: min(95%, 1240px);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.benefits .benefits-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
  text-align: left;
  width: 100%;
  max-width: 1200px;
}
.benefits .benefits-header .section-title {
  max-width: 500px;
}
.benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}
.benefits .benefits-grid .benefit-card {
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid #e5e7eb;
}
.benefits .benefits-grid .benefit-card .benefit-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.benefits .benefits-grid .benefit-card .benefit-header .benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(242, 87, 255, 0.05);
  color: #f257ff;
}
.benefits .benefits-grid .benefit-card .benefit-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}
.benefits .benefits-grid .benefit-card .benefit-content p {
  color: #4b5563;
  line-height: 150%;
  margin: 0;
}
@media (max-width: 768px) {
  .benefits {
    padding: 80px 0;
  }
  .benefits .benefits-content {
    padding: 0 20px;
  }
  .benefits .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .benefits .benefits-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .benefits .benefits-header h2 {
    text-align: left;
  }
}
.faq {
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  flex-direction: row;
  background-color: #f8f8f8;
  border-top: 1px dashed #9ca3af;
  gap: 40px;
}
@media (max-width: 768px) {
  .faq {
    padding: 80px 20px;
  }
}
.faq .faq-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}
@media (max-width: 768px) {
  .faq .faq-header {
    align-items: center;
    text-align: center;
  }
}
.faq .faq-header p {
  margin-bottom: 20px;
}
.faq .faq-content {
  max-width: 800px;
  width: 100%;
}
.accordion .accordion-item {
  border-bottom: 1px solid #e4dccc;
  margin-bottom: 0;
  padding: 0 2rem;
}
.accordion .accordion-item:last-child {
  border-bottom: none;
}
.accordion .accordion-header {
  width: 100%;
  padding: 2rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}
.accordion .accordion-header:hover {
  text-decoration: underline;
}
.accordion .accordion-header .accordion-icon {
  transition: transform 0.3s cubic-bezier(0.1, 0.5, 0.3, 1);
  color: #666;
}
.accordion .accordion-header.active {
  color: #f257ff;
}
.accordion .accordion-header.active .accordion-icon {
  transform: rotate(180deg);
  color: #f257ff;
}
.accordion .accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out, padding 0.3s ease-in-out;
  padding: 0;
}
.accordion .accordion-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.accordion .accordion-content.active {
  height: auto;
  padding: 0 0 2rem 0;
}
@media (max-width: 768px) {
  .faq {
    flex-direction: column;
    gap: 40px;
  }
  .faq .accordion .accordion-header {
    font-size: 1rem;
    padding: 1.5rem 0;
  }
  .faq .accordion .accordion-item {
    padding: 0 1rem;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  background-color: #333;
  color: white;
}
.footer .footer-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px 0;
}
.footer .footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}
.footer .footer-main .footer-brand .footer-logo {
  height: 32px;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}
.footer .footer-main .footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 150%;
  font-size: 1rem;
  max-width: 300px;
}
.footer .footer-main .footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.footer .footer-main .footer-links .footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}
.footer .footer-main .footer-links .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-main .footer-links .footer-column ul li {
  margin-bottom: 12px;
}
.footer .footer-main .footer-links .footer-column ul li:last-child {
  margin-bottom: 0;
}
.footer .footer-main .footer-links .footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}
.footer .footer-main .footer-links .footer-column ul li a:hover {
  color: #f257ff;
}
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-bottom .footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}
.footer .footer-bottom .footer-legal {
  display: flex;
  gap: 30px;
}
.footer .footer-bottom .footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer .footer-bottom .footer-legal a:hover {
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .footer .footer-content {
    padding: 60px 20px 0;
  }
  .footer .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 40px;
  }
  .footer .footer-main .footer-brand p {
    max-width: none;
  }
  .footer .footer-main .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer .footer-bottom .footer-legal {
    gap: 20px;
  }
}
.cta-hero {
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  background: linear-gradient(#fff, #f8F8F8);
  background-size: cover;
  color: white;
  text-align: center;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .cta-hero {
    padding: 80px 20px;
  }
}
.cta-hero .cta-container {
  background-image: linear-gradient(to right, #ec77ab 0%, #7873f5 100%);
  overflow: hidden;
  border-radius: 30px;
  padding: 80px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-hero .cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-hero .cta-header {
  margin-bottom: 40px;
}
.cta-hero .cta-header .section-title {
  font-size: 2.4rem;
  color: white;
}
.cta-hero .cta-check {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-hero .cta-check .check {
  display: flex;
  align-items: center;
}
.cta-hero .cta-check .check .feather {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .cta-hero .cta-container {
    padding: 40px 20px;
    border-radius: 20px;
    align-items: center;
  }
  .cta-hero .cta-check {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .cta-hero .check {
    font-size: 0.9rem;
  }
}
.collaboration {
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: min(100%, 1440px);
  position: relative;
}
@media (max-width: 768px) {
  .collaboration {
    padding: 80px 20px;
  }
}
.collaboration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: #f257ff;
  border-radius: 1px;
  z-index: 0;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .collaboration::before {
    display: none;
  }
}
.collaboration .collaboration-header {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 40px;
}
.collaboration .collaboration-header .section-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #f257ff;
  background-color: rgba(242, 87, 255, 0.05);
  padding: 10px;
  border-radius: 10px;
}
.collaboration .collaboration-header .section-tag h3 {
  font-size: 1rem;
}
.collaboration .collaboration-header .section-tag .service-icon {
  width: 16px;
  height: 16px;
}
.collaboration .collaboration-header h2 {
  font-weight: 500;
  line-height: 135%;
  max-width: 600px;
}
@media (max-width: 768px) {
  .collaboration .collaboration-header {
    align-items: flex-start;
    text-align: left;
  }
  .collaboration .collaboration-header h2 {
    text-align: left;
  }
}
.collaboration .collaboration-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
}
.collaboration .collaboration-board .collaboration-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.15s ease-in-out;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.collaboration .collaboration-board .collaboration-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.collaboration .collaboration-board .collaboration-card.card-1 {
  margin-top: 0px;
}
.collaboration .collaboration-board .collaboration-card.card-2 {
  margin-top: 30px;
}
.collaboration .collaboration-board .collaboration-card.card-3 {
  margin-top: 10px;
}
.collaboration .collaboration-board .collaboration-card.card-4 {
  margin-top: 20px;
}
.collaboration .collaboration-board .collaboration-card.card-1 {
  transform: rotate(-2deg);
}
.collaboration .collaboration-board .collaboration-card.card-2 {
  transform: rotate(1deg);
}
.collaboration .collaboration-board .collaboration-card.card-3 {
  transform: rotate(-1deg);
}
.collaboration .collaboration-board .collaboration-card.card-4 {
  transform: rotate(2deg);
  border: 1px solid #f257ff;
}
.collaboration .collaboration-board .collaboration-card.card-1 .icon-circle {
  background-color: transparent;
}
.collaboration .collaboration-board .collaboration-card.card-2 .icon-circle {
  background-color: transparent;
}
.collaboration .collaboration-board .collaboration-card.card-3 .icon-circle {
  background-color: transparent;
}
.collaboration .collaboration-board .collaboration-card.card-4 .icon-circle {
  background-color: #f257ff;
}
.collaboration .collaboration-board .collaboration-card:hover {
  transform: rotate(0deg);
}
.collaboration .collaboration-board .collaboration-card .icon-circle {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f257ff;
  color: #f257ff;
  border-radius: 50%;
  border: 1px solid #f257ff;
}
.collaboration .collaboration-board .collaboration-card .card-bg-number {
  position: absolute;
  bottom: -100px;
  left: -60px;
  transform: translateY(-50%);
  font-size: 12rem;
  font-weight: 900;
  color: #f8F8F8;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}
.collaboration .collaboration-board .collaboration-card .card-content {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}
.collaboration .collaboration-board .collaboration-card .card-content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
  line-height: 130%;
}
.collaboration .collaboration-board .collaboration-card .card-content p {
  color: #4b5563;
  line-height: 150%;
  margin: 0;
  font-size: 1rem;
}
.collaboration .collaboration-cta .btn {
  align-self: center;
}
@media (max-width: 768px) {
  .collaboration .collaboration-board {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .collaboration .collaboration-board .collaboration-card {
    transform: none !important;
    margin-top: 0 !important;
  }
  .collaboration .collaboration-board .collaboration-card:hover {
    transform: none !important;
  }
  .collaboration .collaboration-board .collaboration-card::after {
    display: none;
  }
  .collaboration .collaboration-header {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 50px;
  }
  .collaboration .collaboration-header h2 {
    text-align: left;
  }
}
.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  transform: none;
  z-index: 10006;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: min(320px, 96vw);
  animation: fadeIn 0.2s ease;
}
.cookie-banner__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  color: #4b5563;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
}
.cookie-banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 22px 18px 22px;
  text-align: left;
}
.cookie-banner__emoji {
  font-size: 34px;
  line-height: 1;
}
.cookie-banner p {
  margin: 0;
  color: #4b5563;
  font-family: 'Inter', sans-serif;
}
.cookie-banner__link {
  color: #408CFA;
  text-decoration: underline;
}
.cookie-banner__link:hover {
  color: #0066cc;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}
.cookie-banner .cookie-btn {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #333;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  transition: all 0.2s ease;
  flex: 1;
}
.cookie-banner .cookie-btn--accept {
  background: #333;
  color: #fff;
  border-color: #333;
}
.cookie-banner .cookie-btn--settings {
  background: transparent;
  color: #4b5563;
  border-color: #9ca3af;
}
.cookie-banner .cookie-btn--settings:hover {
  background: #e5e7eb;
  color: #333;
}
.cookie-banner .cookie-btn--save {
  background: #333;
  color: #fff;
  border-color: #333;
  width: 100%;
}
.cookie-banner .cookie-settings {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}
.cookie-banner .cookie-category {
  margin-bottom: 15px;
}
.cookie-banner .cookie-category:last-child {
  margin-bottom: 0;
}
.cookie-banner .cookie-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-banner .cookie-category-header .cookie-category-info {
  font-size: 0.9rem;
}
.cookie-banner .cookie-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: auto;
}
.cookie-banner .cookie-checkbox input[type="checkbox"] {
  display: none;
}
.cookie-banner .cookie-checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #9ca3af;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.cookie-banner .cookie-checkbox .checkmark::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.cookie-banner .cookie-checkbox input[type="checkbox"]:checked + .checkmark {
  background: #408CFA;
  border-color: #408CFA;
}
.cookie-banner .cookie-checkbox input[type="checkbox"]:checked + .checkmark::after {
  opacity: 1;
}
.cookie-banner .cookie-checkbox input[type="checkbox"]:disabled + .checkmark {
  background: #e5e7eb;
  border-color: #e5e7eb;
  cursor: not-allowed;
}
.cookie-banner .cookie-settings-actions {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .cookie-banner {
    right: 20px;
    left: 20px;
    bottom: 20px;
    transform: none;
    width: auto;
  }
}
.blog-content h1 {
  font-size: 1.9rem;
}
.blog-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
.blog-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
.blog-content h4 {
  font-size: 1.1rem;
}
.blog-content .blog-article,
.blog-content article {
  max-width: 760px;
  line-height: 1.7;
  font-size: 1.02rem;
}
.blog-content .lead {
  font-size: 1.15rem;
  color: #4b5563;
  margin-top: 8px;
}
.blog-content a {
  color: #408CFA;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.blog-content a:hover {
  color: #1874f9;
}
.blog-content figure {
  margin: 18px 0;
  text-align: center;
}
.blog-content figure figcaption {
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 8px;
}
.blog-content .pullquote {
  margin: 24px 0;
  padding: 18px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  font-size: 1.1rem;
  line-height: 1.6;
}
.blog-content .callout {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
}
.blog-content .callout.note {
  background: rgba(242, 87, 255, 0.05);
}
.blog-content .callout.tip {
  background: rgba(16, 185, 129, 0.06);
}
.blog-content .callout.warn {
  background: rgba(245, 158, 11, 0.1);
}
.blog-toc .toc-h2 a {
  font-size: 0.98rem;
  font-weight: 700;
}
.blog-toc .toc-h3 a {
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0.95;
}
.blog-toc .toc-h4 a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563;
}
.blog-toc .toc-h3 a::before,
.blog-toc .toc-h4 a::before {
  content: '•';
  display: inline-block;
  width: 12px;
  color: #9ca3af;
  margin-right: 6px;
}
.blog-toc a.is-active::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
}
@media (min-width: 1200px) {
  :root {
    --blog-sidebar-w: 380px;
  }
}
@media (min-width: 1600px) {
  :root {
    --blog-sidebar-w: 420px;
  }
}
@media (max-width: 768px) {
  .blog-content .blog-article,
  .blog-content article {
    max-width: 100%;
  }
}
