
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  line-height: 1.6;
  color: #111827;
  background-color: #ffffff;
  overflow-x: hidden;
}
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}
.cursor-follower {
  position: fixed;
  width: 16px;
  height: 16px;
  background: linear-gradient(to bottom, #ec4899, #8b5cf6); 
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5; 
  transition: transform 0.15s ease-out;
  transform: translate(-50%, -50%);
  display: none;
}
@media (min-width: 1024px) {
  .cursor-follower {
    display: block;
  }
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .nav-container {
    padding: 0 3rem;
  }
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  z-index: 1001;
  pointer-events: auto;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.logo-bold {
  font-weight: 500;
}
.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #ec4899, #8b5cf6);
}
.brand-dot-small {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #ec4899, #8b5cf6);
}
.desktop-nav {
  display: none;
  align-items: center;
  gap: 3rem;
  margin-right: -60px;
}
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
  .service-grid-modal {
    gap: 0.5rem !important;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  transition: color 0.3s ease;
  pointer-events: auto;
}
.nav-link:hover {
  color: #111827;
}
.nav-link.active {
  color: #8b5cf6;
  font-weight: 500;
}
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  z-index: 1001;
}
.mobile-menu-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.mobile-menu-btn:active {
  background-color: rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}
.hamburger {
  width: 24px;
  height: 3px;
  background-color: #111827;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.mobile-menu-btn.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-btn.active .hamburger:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.mobile-nav {
  display: none;
  background-color: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}
.mobile-nav.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-nav-content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-nav-link {
  color: #6b7280;
  text-decoration: none;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 400;
  transition: color 0.3s ease;
  border-bottom: 1px solid #f3f4f6;
}
.mobile-nav-link:last-of-type {
  border-bottom: none;
}
.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: #111827;
}
.mobile-nav-link.active {
  color: #8b5cf6;
  font-weight: 500;
}
.mobile-cta {
  width: fit-content;
  padding: 15px !important;
}
.desktop-nav {
  display: none;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  z-index: 1001;
  pointer-events: auto;
}
@media (max-width: 480px) {
  .mobile-nav-content {
    padding: 1.5rem 1rem;
  }
  .mobile-nav-link {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
  .hamburger {
    width: 20px;
    height: 2px;
  }
  .mobile-menu-btn {
    padding: 12px;
    gap: 6px;
  }
  .hero-title-italic {
    font-style: normal !important;
  }
  .title-italic {
    font-style: normal !important;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .mobile-nav-content {
    padding: 2rem;
  }
  .mobile-nav-link {
    font-size: 1.25rem;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
  position: relative;
  pointer-events: auto;
}
.btn-primary {
  background-color: #111827;
  color: white;
}
.btn-primary:hover {
  background: linear-gradient(to right, #ec4899, #8b5cf6);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.btn-ghost {
  background: linear-gradient(to right, #ec4899, #8b5cf6);
  color: white;
}
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn-contact {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  width: 100%;
  justify-content: center;
}
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}
.form-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0.5rem 0;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}
.divider-text {
  padding: 0 1rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 400;
}
.btn-consultation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.75rem 2rem;
  font-size: 1rem;
}
.btn-consultation .btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}
@media (min-width: 768px) {
  .form-actions {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .form-divider {
    flex-direction: column;
    margin: 0;
    width: auto;
  }
  .form-divider::before,
  .form-divider::after {
    width: 1px;
    height: 2rem;
    background: #e5e7eb;
  }
  .divider-text {
    padding: 0.5rem 0;
  }
  .btn-contact,
  .btn-consultation {
    width: auto;
    flex: 1;
  }
}
.btn-gradient {
  background: linear-gradient(to right, #ec4899, #8b5cf6);
  color: white;
}
.btn-gradient:hover {
  background: linear-gradient(to right, #db2777, #7c3aed);
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.btn-icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}
.btn-loading {
  display: none;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 5rem;
  pointer-events: none;
  overflow: hidden;
}

/* Gradient Glow Effect at Bottom of Hero */
.hero-gradient-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(
    to top,
    rgba(236, 72, 153, 0.4) 0%,
    rgba(139, 92, 246, 0.3) 30%,
    rgba(139, 92, 246, 0.15) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s ease;
}
/* Spline 3D Background - Fixed across entire site */
.spline-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: auto;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.spline-background.loaded {
  visibility: visible !important;
  opacity: 1 !important;
}
.spline-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  pointer-events: auto;
}
.spline-container iframe {
  width: 120%;
  height: 100%;
  border: none;
  display: block;
  position: absolute;
  left: -10%;
  top: 0;
  pointer-events: auto;
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .spline-container iframe {
    width: 150%;
    left: -25%;
  }
}

@media (max-width: 768px) {
  .spline-container iframe {
    width: 180%;
    left: -40%;
    opacity: 0.7;
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    #ec4899 0%,
    #8b5cf6 50%,
    transparent 70%
  );
  pointer-events: none;
  transition: background 0.3s ease;
  z-index: 0;
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-text {
  margin-bottom: 2rem;
}
.hero-title {
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 5rem;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}
.hero-title-italic {
  font-weight: 500;
  font-style: italic;
  background: linear-gradient(to right, #ec4899, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 1rem;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 32rem;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
}
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, transparent, #9ca3af, transparent);
}
.section-header {
  margin-bottom: 2rem;
}
.section-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-badge-mid {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  justify-content: center;
}
.section-label {
  font-size: 0.875rem;
  color: #6b7280;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}
.title-italic {
  font-weight: 500;
  font-style: italic;
  background: linear-gradient(to right, #ec4899, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 1rem;
}
.section-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
  font-weight: 300;
}
.services {
  padding: 8rem 0;
  pointer-events: none;
}
.services-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.services-intro {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.service-item {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 2rem;
  transition: border-color 0.3s ease;
}
.service-item:last-child {
  border-bottom: none;
}
.service-item:hover {
  border-color: #e5e7eb;
}
.service-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.service-number {
  font-size: 0.875rem;
  color: #9ca3af;
  font-weight: 300;
  margin-top: 0.25rem;
  transition: all 0.3s ease;
  min-width: 2rem;
}
.service-item:hover .service-number {
  background: linear-gradient(to bottom, #ec4899, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-text {
  flex: 1;
}
.service-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.service-item:hover .service-title {
  color: #6b7280;
}
.service-description {
  color: #6b7280;
  font-weight: 300;
  line-height: 1.6;
}
.service-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  opacity: 0;
  transition: all 0.3s ease;
  stroke-width: 2;
}
.service-item:hover .service-arrow {
  opacity: 1;
  transform: translate(0.25rem, -0.25rem);
  color: #8b5cf6;
}
.portfolio {
  padding: 8rem 0;
  background-color: #f9fafb;
  pointer-events: none;
}
.portfolio-header {
  text-align: center;
  margin-bottom: 12rem;
  z-index: 20;
  position: relative;
}
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.project-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  min-height: 24rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.project-item:hover {
  transform: translateY(-0.5rem);
}
.project-reverse {
  direction: ltr;
}
.project-reverse > * {
  direction: ltr;
}
.project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  box-sizing: border-box;
  z-index: 3;
  pointer-events: none;
}
.project-content > * {
  pointer-events: auto;
}
.project-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.project-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #ec4899, #8b5cf6);
}
.project-title {
  font-size: 1.875rem;
  font-weight: 300;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.project-title[onclick] {
  cursor: pointer;
}
.project-title[onclick]:hover {
  color: #8b5cf6;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .project-title {
    font-size: 2.25rem;
  }
}
.project-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
}

.project-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.project-badge:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: #ffffff;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
  font-size: 1rem;
  font-family: inherit;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.project-link:hover {
  color: #8b5cf6;
}
.project-link .btn-icon {
  transition: transform 0.3s ease;
}
.project-link:hover .btn-icon {
  transform: translate(0.25rem, -0.25rem);
}
.project-hover-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.project-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #1f1f1f;
  z-index: 1;
}
.project-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
  pointer-events: none;
}
.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}
.project-item:hover .project-img {
  transform: scale(1.05);
}
.fullscreen-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.fullscreen-toggle:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}
.fullscreen-toggle svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}
.video-controls {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-video-container:hover .video-controls {
  opacity: 1;
}
@media (max-width: 768px) {
  .video-controls {
    opacity: 1;
    bottom: 0.5rem;
    right: 0.5rem;
  }
  .sound-toggle,
  .play-pause-toggle,
  .fullscreen-toggle {
    width: 2rem;
    height: 2rem;
  }
  .sound-toggle svg,
  .play-pause-toggle svg,
  .fullscreen-toggle svg {
    width: 0.875rem;
    height: 0.875rem;
  }
}
video:fullscreen {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background-color: #000;
}
video:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background-color: #000;
}
video:-moz-full-screen {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background-color: #000;
}
body.modal-open,
html.modal-open {
  overflow: hidden !important;
  height: 100% !important;
}
.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 4;
  pointer-events: none;
}
.project-item:hover .project-overlay {
  opacity: 1;
}
.play-button {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
}
.play-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
.play-button svg {
  width: 2rem;
  height: 2rem;
  margin-left: 0.25rem;
}
.project-dot {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #ec4899, #8b5cf6);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.project-item:hover .project-dot {
  opacity: 0.6;
}
.project-image.loading .project-hover-video {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="20" fill="none" stroke="%23ec4899" stroke-width="4" stroke-dasharray="31.416" stroke-dashoffset="31.416"><animate attributeName="stroke-dasharray" dur="2s" values="0 31.416;15.708 15.708;0 31.416" repeatCount="indefinite"/><animate attributeName="stroke-dashoffset" dur="2s" values="0;-15.708;-31.416" repeatCount="indefinite"/></circle></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem;
}
/* FAQ Section */
.faq {
  padding: 8rem 0;
  background-color: #0f0f0f;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

/* Left Column: Title and Image */
.faq-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 8rem;
}

.faq-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-style: italic;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.faq-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
}

.faq-title-gradient {
  background: linear-gradient(to right, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-description {
  font-size: 1.125rem;
  color: #9ca3af;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

.faq-cta-text {
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.6;
  font-weight: 300;
  margin: 0.5rem 0 0 0;
}

.faq-left .btn {
  width: auto;
  display: inline-block;
}

.faq-image-wrapper {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
}

.faq-portrait {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.faq-portrait:hover {
  filter: grayscale(0%);
}

/* Right Column: FAQ List */
.faq-right {
  pointer-events: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #1f1f1f;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
  border-color: rgba(236, 72, 153, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ffffff;
}

.faq-item.active .faq-question {
  color: #ffffff;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #ffffff;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #ec4899;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .faq-left {
    position: static;
    text-align: center;
    align-items: center;
  }
  
  .faq-image-wrapper {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .faq {
    padding: 4rem 0;
  }
  
  .faq-grid {
    gap: 2rem;
  }
  
  .faq-title {
    font-size: 2.5rem;
  }
  
  .faq-description {
    font-size: 1rem;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
  
  .faq-answer p {
    font-size: 0.9375rem;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.stat-item:hover .stat-number {
  background: linear-gradient(to bottom, #ec4899, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-number {
  font-size: 1.875rem;
  font-weight: 300;
  transition: all 0.3s ease;
}
.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  letter-spacing: 0.025em;
}
.contact {
  padding: 8rem 0;
  background-color: #f9fafb;
  pointer-events: none;
}
.contact-header {
  text-align: center;
  margin-bottom: 5rem;
}
.contact-grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-form-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 300;
}
.form-input,
.form-textarea,
.form-select {
  border: none;
  border-bottom: 1px solid #e5e7eb;
  background-color: transparent;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 300;
  transition: border-color 0.3s ease;
  outline: none;
  font-family: inherit;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-bottom-color: #8b5cf6;
}
.form-textarea {
  min-height: 6rem;
  resize: vertical;
}
.form-select {
  cursor: pointer;
}
.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
}
.form-message-success {
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.form-message-error {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
}
.honeypot-field input,
.honeypot-field label {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  border: none !important;
  background: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.contact-intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-title {
  font-size: 1.5rem;
  font-weight: 300;
}
.contact-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
  font-weight: 300;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}
.contact-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.contact-item:hover .contact-icon {
  background: linear-gradient(to bottom, #ec4899, #8b5cf6);
}
.contact-icon svg {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
  transition: color 0.3s ease;
}
.contact-item:hover .contact-icon svg {
  color: white;
}
.contact-text {
  display: flex;
  flex-direction: column;
}
.contact-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 300;
}
.contact-value {
  color: #111827;
  font-weight: 300;
}
.social-links {
  padding-top: 2rem;
}
.social-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 300;
  margin-bottom: 1rem;
}
.social-list {
  display: flex;
  gap: 1.5rem;
}
.social-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
  transition: all 0.3s ease;
}
.social-link:hover {
  background: linear-gradient(to bottom, #ec4899, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer {
  padding: 2rem 0 1.5rem;
  border-top: 1px solid #f3f4f6;
  position: relative;
  background: #000;
  z-index: 1;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  pointer-events: auto;
}
@media (min-width: 768px) {
  .footer {
    padding: 3rem 0;
    background: #000;
  }
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 1rem;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  pointer-events: auto;
}
@media (min-width: 768px) {
  .footer-brand {
    margin-bottom: 0;
  }
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  order: 2;
  pointer-events: auto;
}
@media (min-width: 768px) {
  .footer-links {
    flex-direction: row;
    gap: 2rem;
    order: 0;
  }
}
.footer-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 300;
  transition: color 0.3s ease;
  padding: 0.25rem 0;
  pointer-events: auto !important;
}
@media (min-width: 768px) {
  .footer-link {
    font-size: 0.875rem;
    padding: 0;
  }
}
.footer-link:hover {
  color: #111827;
}
.footer-copyright {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 300;
  order: 3;
  margin-top: 0.5rem;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .footer-copyright {
    font-size: 0.875rem;
    color: #6b7280;
    order: 0;
    margin-top: 0;
    opacity: 1;
  }
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem;
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background-color: white;
  border-radius: 1rem;
  max-width: 64rem;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease-out;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.modal-header {
  flex-shrink: 0;
  background-color: white;
  border-bottom: 1px solid #f3f4f6;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 1rem 1rem 0 0;
}
.modal-title-section {
  display: flex;
  flex-direction: column;
}
.modal-title {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.25rem;
}
.modal-subtitle {
  color: #6b7280;
  font-size: 0.875rem;
}
.modal-close {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #f3f4f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.modal-close:hover {
  background-color: #e5e7eb;
}
.modal-close svg {
  width: 1rem;
  height: 1rem;
}
.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  padding-bottom: 1rem;
}
.modal-footer {
  flex-shrink: 0;
  background-color: white;
  border-top: 1px solid #f3f4f6;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px) {
  .modal-footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
.modal-cta {
  display: flex;
  gap: 1rem;
  order: 2;
}
@media (min-width: 640px) {
  .modal-cta {
    order: 1;
  }
}
.modal-navigation {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  order: 1;
}
@media (min-width: 640px) {
  .modal-navigation {
    order: 2;
  }
}
.nav-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (min-width: 640px) {
  .nav-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.nav-btn:hover {
  background-color: #f3f4f6;
}
.nav-btn svg {
  width: 0.75rem;
  height: 0.75rem;
}
@media (min-width: 640px) {
  .nav-btn svg {
    width: 1rem;
    height: 1rem;
  }
}
.nav-indicator {
  font-size: 0.75rem;
  color: #6b7280;
  padding: 0 0.5rem;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .nav-indicator {
    font-size: 0.875rem;
    padding: 0 0.75rem;
  }
}
.project-video {
  width: 100%;
  height: 24rem;
  object-fit: fill;
  border-radius: 0.5rem;
  background-color: #f3f4f6;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .project-video {
    height: 24rem;
  }
}
.project-overview {
  margin-bottom: 2rem;
}
.project-overview h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.project-overview p {
  color: #6b7280;
  line-height: 1.6;
}
.project-description-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.project-description-content p:last-child {
  margin-bottom: 0;
}
.services-provided {
  margin-bottom: 2rem;
}
.services-provided h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.services-grid-modal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .services-grid-modal {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: #f9fafb;
  border-radius: 0.5rem;
}
.service-badge-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(to bottom, #ec4899, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.service-badge-icon svg {
  width: 1rem;
  height: 1rem;
}
.service-badge-label {
  font-size: 0.875rem;
  font-weight: 500;
}
.results-section {
  margin-bottom: 2rem;
}
.results-section h4,
.review-section-title,
.client-review-title,
.review-section h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.client-review-section h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.results-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.result-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #ec4899, #8b5cf6);
  flex-shrink: 0;
}
.result-text {
  color: #6b7280;
}
.legal-page {
  padding: 8rem 0 4rem;
  min-height: 100vh;
}
.legal-content {
  max-width: 48rem;
  margin: 0 auto;
}
.legal-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.legal-updated {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 3rem;
}
.legal-section {
  margin-bottom: 2rem;
}
.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #111827;
}
.legal-section p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.legal-section ul {
  color: #6b7280;
  line-height: 1.6;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-section li {
  margin-bottom: 0.5rem;
}
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .project-title {
    font-size: 1.5rem;
  }
  .modal-content {
    margin: 0.5rem;
    max-height: 95vh;
  }
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1.5rem;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
@media (prefers-contrast: high) {
  .text-gray-600 {
    color: #374151;
  }
  .text-gray-500 {
    color: #4b5563;
  }
  .text-gray-400 {
    color: #6b7280;
  }
}
@media print {
  .navbar,
  .modal,
  .cursor-follower {
    display: none !important;
  }
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  .section {
    padding: 2rem 0;
  }
}
.project-video-container {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 24rem;
  background-color: #f3f4f6;
}
.project-video {
  width: 100%;
  height: 24rem;
  object-fit: fill;
  display: block;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  .project-video {
    height: 24rem;
  }
}
.video-controls {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-video-container:hover .video-controls {
  opacity: 1;
}
.sound-toggle,
.play-pause-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.sound-toggle:hover,
.play-pause-toggle:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}
.sound-toggle svg,
.play-pause-toggle svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}
@media (max-width: 768px) {
  .project-video-container {
    height: 20rem;
    margin-bottom: 1.5rem;
  }
  .project-video {
    height: 16rem;
    object-fit: fill;
    border-radius: 0.5rem;
    background-color: #000;
  }
  .video-controls {
    opacity: 1;
    bottom: 0.75rem;
    right: 0.75rem;
  }
  .sound-toggle,
  .play-pause-toggle {
    width: 2rem;
    height: 2rem;
  }
  .sound-toggle svg,
  .play-pause-toggle svg {
    width: 0.875rem;
    height: 0.875rem;
  }
}
@media (max-width: 480px) {
  .project-video-container {
    height: 20rem;
    margin-bottom: 1rem;
  }
  .project-video {
    height: 12.5rem;
    object-fit: fill;
  }
}
.project-video-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  border: 2px solid #f3f4f6;
  border-top: 2px solid #8b5cf6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.project-video-container.loading::before {
  opacity: 1;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.project-video-container.error::after {
  content: "Video unavailable";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #6b7280;
  font-size: 0.875rem;
  text-align: center;
}
.language-switcher {
  position: relative;
  display: inline-block;
  padding-right: 10px;
}
.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  color: #6b7280;
}
.language-btn:hover {
  border-color: #d1d5db;
  background-color: #f9fafb;
}
.language-text {
  font-weight: 500;
  min-width: 1.5rem;
}
.language-arrow {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
  transition: transform 0.3s ease;
}
.language-btn.active .language-arrow {
  transform: rotate(180deg);
}
.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 0.875rem;
  color: #374151;
}
.language-option:hover {
  background-color: #f3f4f6;
}
.language-option:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}
.language-option:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}
.mobile-language-switcher {
  padding: 1rem 0;
  border-top: 1px solid #f3f4f6;
  margin-top: 1rem;
}
.mobile-language-header {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-language-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  color: #374151;
}
.mobile-language-option:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}
.mobile-language-option.active {
  background: linear-gradient(to right, #ec4899, #8b5cf6);
  color: white;
  border-color: transparent;
}
@media (max-width: 1023px) {
  .language-switcher,
  .nav-right {
    display: none;
  }
}
@media (min-width: 1024px) {
  .mobile-language-switcher {
    display: none;
  }
}
.review-section {
  margin-top: 2.5rem;
  padding: 1.5rem 1.5rem 1.25rem 1.5rem;
  background: #fafbfc;
  border-radius: 1rem;
  box-shadow: 0 2px 16px 0 rgba(139, 92, 246, 0.07), 0 1.5px 6px 0 rgba(236, 72, 153, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.review-stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}
.star {
  color: #e5e7eb;
  font-size: 1.35rem;
  transition: color 0.2s;
}
.star.filled {
  color: #ec4899;
  background: linear-gradient(90deg, #ec4899 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.review-text {
  font-size: 1.05rem;
  color: #374151;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}
.review-author {
  font-size: 0.98rem;
  color: #6b7280;
  font-weight: 400;
}
.review-author-name {
  font-weight: 500;
  color: #111827;
}
.review-author-company {
  color: #8b5cf6;
  font-weight: 500;
  margin-left: 0.25rem;
}
.review-author-company a {
  color: #8b5cf6;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.review-author-company a:hover {
  color: #7c3aed;
  text-decoration: none;
}
@media (max-width: 640px) {
  .review-section {
    padding: 1rem 0.75rem 1rem 0.75rem;
    margin-top: 1.5rem;
  }
  .review-stars {
    font-size: 1.1rem;
  }
  .review-text {
    font-size: 0.98rem;
  }
  .review-author {
    font-size: 0.92rem;
  }
}
.client-review-section {
  margin-bottom: 2rem;
}
.projects-list.stacked-scroll {
  position: relative;
}
.project-item.stacked-scroll-item {
  position: sticky;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%) scale(1);
  margin-bottom: 0;
  z-index: 1;
  padding: 3rem 2.5rem;
  box-sizing: border-box;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 16px 48px 0 rgba(139,92,246,0.13), 0 1.5px 6px 0 rgba(236,72,153,0.04);
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), box-shadow 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.5s;
  will-change: transform, box-shadow, opacity;
}
.project-item.stacked-scroll-item > * {
  box-sizing: border-box;
  width: 100%;
}
@media (max-width: 1023px) {
  .projects-list.stacked-scroll {
    position: static;
  }
  .project-item.stacked-scroll-item {
    position: static;
    margin-bottom: 3rem;
    box-shadow: none;
    transform: none !important;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    padding: 2rem 1rem;
  }
}
@media (min-width: 1024px) {
  .projects-list.stacked-scroll .project-item.stacked-scroll-item:first-child {
    margin-top: 7rem;
  }
}
@media (max-width: 1023px) {
  .portfolio {
    padding: 4rem 0;
  }
  .portfolio-header {
    margin-bottom: 3rem !important;
  }
  .portfolio .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .projects-list {
    gap: 3rem !important;
  }
  .project-item.stacked-scroll-item {
    position: sticky;
    top: 7rem;
    box-shadow: 0 16px 48px 0 rgba(139,92,246,0.03), 0 1.5px 6px 0 rgba(176, 72, 236, 0.08);
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 1.5rem;
    z-index: 1;
    background: white;
    border-radius: 1rem;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), box-shadow 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.5s;
    will-change: transform, box-shadow, opacity;
  }
  .project-item {
    gap: 1.5rem;
  }
  .project-image {
    height: 20rem;
  }
  .project-img {
    height: 20rem;
  }
  .project-title {
    font-size: 1.75rem !important;
  }
  .project-description {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (max-width: 640px) {
  .portfolio .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .project-item.stacked-scroll-item {
    padding: 1.25rem 1rem;
    top: 6.5rem;
  }
  .project-item {
    gap: 1.25rem;
  }
  .project-image {
    height: 16rem;
  }
  .project-img {
    height: 16rem;
  }
  .project-title {
    font-size: 1.5rem !important;
  }
  .project-description {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .project-meta {
    font-size: 0.8rem;
  }
}
@media (max-width: 414px) and (min-height: 800px) {
  .project-item.stacked-scroll-item {
    padding: 1rem 1rem;
    top: 6rem;
  }
  .project-item {
    gap: 1rem;
  }
  .project-image {
    height: 14rem;
  }
  .project-img {
    height: 14rem;
  }
  .project-title {
    font-size: 1.4rem !important;
  }
  .project-description {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}
.project-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  opacity: 1; 
  transition: all 0.3s ease;
  stroke-width: 2;
}
.project-link:hover .project-arrow {
  color: #8b5cf6;
  transform: translate(0.25rem, -0.25rem);
}
.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top-btn:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}
.back-to-top-arrow {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  color: #6b7280;
  transition: all 0.3s ease;
}
.back-to-top-btn:hover .back-to-top-arrow {
  color: #8b5cf6;
  transform: translateY(-1px);
}
.back-to-top-text {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 24, 39, 0.9);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-right: 0.75rem;
  pointer-events: none;
}
.back-to-top-text::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid rgba(17, 24, 39, 0.9);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.back-to-top-btn:hover .back-to-top-text {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .back-to-top-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }
  .back-to-top-arrow {
    width: 16px;
    height: 16px;
  }
  .back-to-top-text {
    display: none;
  }
}
.blog-header {
  padding: 8rem 0 4rem 0;
  background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.blog-header-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    #ec4899 0%,
    #8b5cf6 50%,
    transparent 70%
  );
  pointer-events: none;
  transition: background 0.3s ease;
}
.blog-header-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.blog-title {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #111827;
}
.blog-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
  font-weight: 300;
}
.blog-posts {
  padding: 4rem 0;
  pointer-events: none;
}
.posts-grid {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.post-card {
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #8b5cf6, #ec4899);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
}
.post-card:hover::before {
  opacity: 1;
}
.post-header {
  padding: 2rem 2rem 1.5rem 2rem;
}
.post-footer {
  padding: 0 2rem 2rem 2rem;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.post-category {
  color: #8b5cf6;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.post-date {
  font-weight: 500;
  color: #111827;
}
.post-read-time {
  color: #6b7280;
  font-weight: 400;
}
.post-title {
  margin-bottom: 1rem;
}
.post-title a {
  color: #111827;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.post-title a:hover {
  color: #8b5cf6;
}
.post-excerpt {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.read-more:hover {
  color: #7c3aed;
}
.read-more .btn-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}
.read-more:hover .btn-icon {
  transform: translateX(0.25rem);
}
.blog-post-header {
  padding: 8rem 0 0 0;
  background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.blog-post-header-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    #ec4899 0%,
    #8b5cf6 50%,
    transparent 70%
  );
  pointer-events: none;
  transition: background 0.3s ease;
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.blog-post-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #111827;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.blog-post-excerpt {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  position: relative;
  z-index: 1;
}
.blog-post-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0;
  margin-bottom: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.05);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  left: 0;
  right: 0;
}
.blog-post-author-text {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 400;
  letter-spacing: 0.025em;
}
.blog-post-author-name {
  color: #111827;
  font-weight: 500;
}
.blog-post-author-link {
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.blog-post-author-link:hover {
  color: #7c3aed;
}
.blog-post-content {
  padding: 3rem 0 3rem 0;
  margin-top: 0;
}
.blog-post-article {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #374151;
}
.blog-post-article h2 {
  font-size: 1.875rem;
  font-weight: 400;
  margin: 2.5rem 0 1rem 0;
  color: #111827;
}
.blog-post-article h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2rem 0 1rem 0;
  color: #111827;
}
.blog-post-article p {
  margin-bottom: 1.5rem;
}
.blog-post-article ul, .blog-post-article ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.blog-post-article li {
  margin-bottom: 0.5rem;
}
.blog-post-article a {
  color: #8b5cf6;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.blog-post-article a:hover {
  border-bottom-color: #8b5cf6;
}
.blog-post-article blockquote {
  border-left: 4px solid #8b5cf6;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #6b7280;
}
.blog-post-article code {
  background: #f3f4f6;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.875rem;
}
.blog-post-article pre {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 2rem 0;
}
.blog-post-article pre code {
  background: none;
  padding: 0;
}
.blog-navigation {
  padding: 2rem 0;
  border-top: 1px solid #f1f5f9;
}
.blog-nav-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.back-to-blog:hover {
  color: #7c3aed;
}
.back-to-blog svg {
  width: 1rem;
  height: 1rem;
}
.blog-image-overlap {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.image-overlap-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 420px;
  margin-bottom: 1.5rem;
}
.overlap-image {
  position: absolute;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
  transition: all 0.3s ease;
}
.overlap-image-1 {
  width: 340px;
  height: 240px;
  top: 0;
  left: 0;
  z-index: 2;
  transform: rotate(-3deg);
}
.overlap-image-2 {
  width: 320px;
  height: 220px;
  bottom: 0;
  right: 0;
  z-index: 1;
  transform: rotate(2deg);
}
.overlap-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.3s ease;
}
.overlap-image:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 3;
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.25);
}
.overlap-image:hover .overlap-img {
  transform: scale(1.1);
}
.image-overlap-caption {
  text-align: center;
  max-width: 400px;
  padding-top: 1rem;
}
.image-overlap-caption p {
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .blog-header {
    padding: 7rem 0 3rem 0;
  }
  .blog-post-header {
    padding: 6rem 0 0 0;
  }
  .blog-title {
    font-size: 2.25rem;
  }
  .blog-subtitle {
    font-size: 1.125rem;
  }
  .posts-grid {
    gap: 1.5rem;
  }
  .post-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  .post-footer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  .post-title a {
    font-size: 1.25rem;
  }
  .post-meta {
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
  }
  .post-category {
    font-size: 0.7rem;
  }
  .post-date {
    font-size: 0.8rem;
  }
  .post-read-time {
    font-size: 0.8rem;
  }
  .blog-post-title {
    font-size: 2rem;
  }
  .blog-post-article {
    font-size: 1rem;
  }
  .blog-post-article h2 {
    font-size: 1.5rem;
  }
  .blog-post-article h3 {
    font-size: 1.25rem;
  }
  .blog-post-author {
    padding: 1.25rem 1.5rem;
    box-shadow: 0 3px 16px rgba(139, 92, 246, 0.06);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
  .blog-image-overlap {
    margin: 2rem 0;
  }
  .image-overlap-container {
    max-width: 420px;
    height: 300px;
  }
  .overlap-image-1 {
    width: 240px;
    height: 170px;
  }
  .overlap-image-2 {
    width: 220px;
    height: 150px;
  }
  .image-overlap-caption p {
    font-size: 0.85rem;
  }
}
.blog-filter {
  padding: 2rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.filter-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid #e5e7eb;
  background: white;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.filter-btn:hover {
  border-color: #d1d5db;
  background: #f9fafb;
}
.filter-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}
.filter-btn.active:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}
.post-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.post-card.hidden {
  opacity: 0;
  transform: translateY(20px);
}
@media (max-width: 480px) {
  .post-meta {
    gap: 0.375rem;
    font-size: 0.75rem;
  }
  .post-category {
    font-size: 0.75rem;
  }
  .post-date {
    font-size: 0.75rem;
  }
  .post-read-time {
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .blog-filter {
    padding: 1.5rem 0;
  }
  .filter-buttons {
    gap: 0.25rem;
  }
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* Enable pointer events for all interactive elements */
a,
button,
input,
select,
textarea,
.btn,
.nav-link,
.mobile-nav-link,
.logo,
.logo-ticker-link,
.footer-link,
.contact-item,
.service-item,
.project-card,
.project-tile,
.modal,
.modal-content,
.modal-close,
.nav-btn,
.mobile-menu-btn,
.blog-post-author-link,
.blog-post-article a,
.post-card,
.post-link,
.filter-btn,
.footer-link,
.footer-brand {
  pointer-events: auto !important;
}
