/* 3teklif - Static CSS */
:root {
  --primary: 56 100% 54.5%;
  --primary-foreground: 0 0% 0%;
  --background: 0 0% 100%;
  --foreground: 0 0% 10%;
  --card: 0 0% 98%;
  --card-foreground: 0 0% 10%;
  --border: 0 0% 90%;
  --muted: 0 0% 92%;
  --muted-foreground: 0 0% 35%;
  --accent: 42 8% 90%;
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(var(--background));
  border-bottom: 2px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  padding: 0 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  text-decoration: none;
}

.logo-wrapper {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border: 2px solid #000;
  border-radius: 0.25rem;
  gap: 0;
}

.logo-number {
  color: #FFEF17;
  font-weight: 700;
}

.logo-text {
  color: #000;
  font-weight: 700;
}

.navbar-links {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex !important;
  }

  .navbar-actions {
    display: flex !important;
  }

  .mobile-menu-btn {
    display: none !important;
  }
}

.navbar-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: background 0.2s;
}

.navbar-link:hover {
  background: hsl(var(--muted));
}

.navbar-actions {
  display: none;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  border-top: 1px solid hsl(var(--border));
  padding: 1rem;
  background: hsl(var(--background));
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a, .mobile-menu button {
  display: block;
  width: 100%;
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.5rem 1.5rem;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 2px solid hsl(var(--border));
  color: hsl(var(--foreground));
  padding: 0.5rem 1.5rem;
}

.btn-outline:hover {
  background: hsl(var(--muted));
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--foreground));
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  background: hsl(var(--muted));
}

.btn-dark {
  background: #000;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-dark:hover {
  background: #333;
  opacity: 0.9;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(to bottom, hsl(var(--primary) / 0.1), hsl(var(--background)));
  padding: 5rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.05);
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary));
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.hero-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}

.hero-button {
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.hero-button svg {
  width: 3rem;
  height: 3rem;
}

.hero-button-desc {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.8;
}

/* New Hero Section Styles */
/* Hero Section - UNGM Style */
.hero-ungm-section {
  padding: 4rem 0;
  background: linear-gradient(to bottom, #fafbfc 0%, #ffffff 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-ungm-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-ungm-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-ungm-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-ungm-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.logo-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2563eb;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.hero-ungm-welcome {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 0.5rem;
}

.hero-ungm-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin: 0;
  letter-spacing: -1px;
}

.hero-ungm-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-ungm-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #2563eb;
  color: #ffffff;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.btn-ungm-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-ungm-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #f1f5f9;
  color: #0f172a;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.btn-ungm-secondary:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-ungm-partners {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.partners-title {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1rem;
  font-weight: 500;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.partner-logo {
  padding: 0.5rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
  transition: all 0.2s ease;
}

.partner-logo:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.hero-ungm-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 500px;
  height: 600px;
}

.collage-item {
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.collage-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.collage-item:hover .collage-overlay {
  opacity: 1;
}

.item-main {
  grid-column: 1;
  grid-row: 1 / 4;
  height: 100%;
}

.item-top {
  grid-column: 2;
  grid-row: 1;
  height: 100%;
}

.item-middle {
  grid-column: 2;
  grid-row: 2;
  height: 100%;
}

.item-bottom {
  grid-column: 2;
  grid-row: 3;
  height: 100%;
}

.collage-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.collage-item:hover .collage-image {
  transform: scale(1.1);
}

.collage-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 1rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

@media (max-width: 1024px) {
  .hero-ungm-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-ungm-right {
    order: -1;
  }

  .hero-image-collage {
    max-width: 100%;
  }

  .hero-ungm-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .hero-ungm-section {
    padding: 2rem 0;
    min-height: auto;
  }

  .hero-ungm-container {
    padding: 0 1rem;
  }

  .hero-ungm-title {
    font-size: 1.875rem;
  }

  .hero-ungm-buttons {
    flex-direction: column;
  }

  .btn-ungm-primary,
  .btn-ungm-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-image-grid {
    gap: 0.75rem;
  }
}

/* Features & Categories Section */
.features-categories-section {
  width: 100%;
}

.features-top {
  background: #ffffff;
  padding: 3rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: hsl(var(--primary));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 4px 12px rgba(255, 239, 23, 0.3);
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
}

.feature-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
}

.categories-grid-section {
  background: #1e3a8a;
  padding: 4rem 0;
  overflow: hidden;
}

.categories-grid-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 3rem;
}

.categories-carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

.categories-carousel-row {
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

.categories-carousel-track {
  display: flex;
  gap: 1.5rem;
  width: fit-content;
  will-change: transform;
  padding: 0;
}

.categories-track-right {
  animation: scroll-right 40s linear infinite;
}

.categories-track-left {
  animation: scroll-left 40s linear infinite;
}

@keyframes scroll-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.category-card {
  background: #ffffff;
  border: 2px solid #1e3a8a;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1e3a8a;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}

.category-card svg {
  color: #10b981;
  flex-shrink: 0;
}

.category-card:hover {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 239, 23, 0.3);
}

.category-card:hover svg {
  color: #000;
}

.demo-request-gradient-section {
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #ff8c00 50%, #ffa500 100%);
  padding: 5rem 0;
  position: relative;
  overflow: visible;
}

.demo-gradient-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.demo-gradient-left {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.demo-gradient-title-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.demo-gradient-title-line {
  width: 60px;
  height: 4px;
  background: #ff8c00;
  border-radius: 2px;
}

.demo-gradient-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0;
  line-height: 1.2;
}

.demo-gradient-subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ff8c00;
  margin-bottom: 2rem;
}

.demo-gradient-button {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: #ff8c00;
  color: #ffffff;
  border-radius: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
  border: 3px solid #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transform: translateY(-2rem);
}

.demo-gradient-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.demo-gradient-button:hover::before {
  left: 100%;
}

.demo-gradient-button:hover {
  background: #ff7700;
  transform: translateY(-2rem) translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 140, 0, 0.6), 0 6px 16px rgba(0, 0, 0, 0.3);
  border-color: #ffffff;
}

.demo-gradient-description {
  font-size: 1rem;
  color: #1e3a8a;
  line-height: 1.7;
  margin-top: 2rem;
  max-width: 500px;
}

.demo-gradient-right {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.devices-showcase-new {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  overflow: visible;
}

.device-new {
  position: relative;
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.85;
  transform-origin: center bottom;
  filter: blur(0.5px);
  visibility: visible;
  flex-shrink: 0;
}

.device-new.active {
  opacity: 1;
  z-index: 10;
  filter: blur(0);
  animation: devicePopUp 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes devicePopUp {
  0% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.device-desktop {
  width: 350px;
  height: 245px;
  z-index: 1;
  transform: scale(0.75);
  align-self: flex-end;
}

.device-desktop.active {
  transform: scale(0.9);
  animation: devicePopUpDesktop 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes devicePopUpDesktop {
  0% {
    transform: scale(0.75);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.9);
  }
}

.device-tablet-new {
  width: 280px;
  height: 368px;
  z-index: 2;
  transform: scale(0.75);
  align-self: flex-end;
}

.device-tablet-new.active {
  transform: scale(0.9);
  animation: devicePopUpTablet 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes devicePopUpTablet {
  0% {
    transform: scale(0.75);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.9);
  }
}

.device-mobile-new {
  width: 165px;
  height: 338px;
  z-index: 3;
  transform: scale(0.75);
  align-self: flex-end;
}

.device-mobile-new.active {
  transform: scale(0.9);
  animation: devicePopUpMobile 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes devicePopUpMobile {
  0% {
    transform: scale(0.75);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.9);
  }
}

.device-frame-new {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  border-radius: 1rem;
  padding: 0.5rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  border: 2px solid #2d2d2d;
  transition: box-shadow 0.5s ease;
}

.device-new.active .device-frame-new {
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 140, 0, 0.3);
  border-color: #ff8c00;
}

.device-screen-new {
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #000;
}

.device-img-new {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

  .categories-carousel-wrapper {
    gap: 1rem;
  }

  .category-card {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }

  .demo-gradient-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .demo-gradient-right {
    order: -1;
  }

  .devices-showcase-new {
    min-height: 380px;
    gap: 1rem;
    padding: 1rem;
  }

  .device-desktop {
    width: 280px;
    height: 196px;
  }

  .device-tablet-new {
    width: 224px;
    height: 294px;
  }

  .device-mobile-new {
    width: 132px;
    height: 270px;
  }
}

@media (max-width: 768px) {
  .features-top {
    padding: 2rem 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .categories-grid-section {
    padding: 3rem 0;
  }

  .categories-grid-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .categories-carousel-wrapper {
    gap: 1rem;
  }

  .category-card {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .demo-request-gradient-section {
    padding: 3rem 0;
  }

  .demo-gradient-title {
    font-size: 2rem;
  }

  .demo-gradient-subtitle {
    font-size: 1.5rem;
  }

  .devices-showcase-new {
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .device-desktop,
  .device-tablet-new,
  .device-mobile-new {
    position: relative;
    left: auto;
    right: auto;
    transform: none !important;
    opacity: 1 !important;
    bottom: auto !important;
    width: 100%;
    max-width: 300px;
  }

  .device-desktop {
    height: 220px;
  }

  .device-tablet-new {
    height: 300px;
  }

  .device-mobile-new {
    height: 300px;
  }
}


/* Categories Section */
.categories-section {
  background: #2c3e50;
  padding: 4rem 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.categories-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #FFEF17;
  margin-bottom: 3rem;
}

.categories-scroll-container {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.categories-row {
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.categories-row:last-child {
  margin-bottom: 0;
}

.categories-track-infinite {
  display: flex;
  gap: 1rem;
  width: fit-content;
  animation: scroll-right 60s linear infinite;
}

.categories-track-reverse {
  animation: scroll-left 60s linear infinite;
}

@keyframes scroll-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.category-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #34495e;
  border-radius: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid transparent;
  flex-shrink: 0;
  min-width: 250px;
  white-space: nowrap;
}

.category-button:hover {
  background: #3d5268;
  border-color: #FFEF17;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 239, 23, 0.2);
}

.category-button svg {
  flex-shrink: 0;
}

.category-button span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Animation continues on hover */

/* Demo Request Section */

.demo-request-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.demo-request-left {
  padding: 2rem 0;
}

.demo-request-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
  line-height: 1.2;
  position: relative;
}

.demo-request-underline {
  display: block;
  width: 80px;
  height: 4px;
  background: #FFEF17;
  margin-top: 0.5rem;
}

.demo-request-subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  color: #FF8C00;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.demo-request-button {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: #FF8C00;
  color: #ffffff;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  border: none;
  cursor: pointer;
}

.demo-request-button:hover {
  background: #FF7A00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4);
}

.demo-request-description {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  max-width: 500px;
}

.demo-request-right {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  perspective: 1000px;
  overflow: visible;
  padding: 2rem 0;
}

.devices-mockup {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  padding: 1rem 0;
  flex-wrap: nowrap;
}

.device-mockup {
  position: relative;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.5;
  transform: scale(0.65);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-mockup.active {
  opacity: 1;
  transform: scale(0.9);
  z-index: 10;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Desktop Monitor */
.desktop-mockup {
  transform: scale(0.65);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-mockup.active {
  transform: scale(0.9);
}

.desktop-frame {
  width: 400px;
  height: 280px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 0.75rem;
  padding: 0.75rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
}

.desktop-frame::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 20px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.desktop-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  background: linear-gradient(to bottom, #f9fafb 0%, #f3f4f6 100%);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.screen-dots {
  display: flex;
  gap: 0.5rem;
}

.screen-dots span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #d1d5db;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.screen-dots span:nth-child(1) {
  background: #ef4444;
}

.screen-dots span:nth-child(2) {
  background: #f59e0b;
}

.screen-dots span:nth-child(3) {
  background: #10b981;
}

.screen-url {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.screen-content {
  padding: 1.75rem;
  height: calc(100% - 65px);
  overflow: hidden;
  background: #ffffff;
}

.desktop-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.graph-analysis {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.graph-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.5px;
}

.graph-nodes {
  position: relative;
  width: 100%;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 1rem;
  align-items: center;
  justify-items: center;
}

.node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.node:hover {
  transform: scale(1.1);
}

.node-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.node-red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.graph-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.line {
  position: absolute;
  height: 3px;
  background: linear-gradient(to right, #d1d5db 0%, transparent 100%);
  transform-origin: left center;
  opacity: 0.6;
}

.line:nth-child(1) {
  top: 25%;
  left: 12%;
  width: 35%;
  transform: rotate(20deg);
}

.line:nth-child(2) {
  top: 45%;
  left: 25%;
  width: 30%;
  transform: rotate(-25deg);
}

.line:nth-child(3) {
  top: 65%;
  left: 18%;
  width: 40%;
  transform: rotate(15deg);
}

.line:nth-child(4) {
  top: 85%;
  left: 30%;
  width: 35%;
  transform: rotate(-20deg);
}

/* Tablet */
.tablet-mockup {
  transform: scale(0.65);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.tablet-mockup.active {
  transform: scale(0.9);
}

.tablet-frame {
  width: 300px;
  height: 380px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
}

.tablet-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.tablet-content {
  padding: 1.75rem;
  height: 100%;
}

.dashboard-insights {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.insights-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  text-align: center;
  letter-spacing: -0.5px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}

.kpi-item {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: 1rem 0.75rem;
  border-radius: 0.625rem;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  color: #111827;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.world-map {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 220px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #7dd3fc 100%);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #ef4444;
  border-radius: 50%;
  border: 2.5px solid #ffffff;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
  animation: pulse 2s infinite;
}

.map-pin::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #ef4444;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.map-pin:nth-child(1) {
  top: 22%;
  left: 18%;
  animation-delay: 0s;
}

.map-pin:nth-child(2) {
  top: 38%;
  right: 22%;
  animation-delay: 0.4s;
}

.map-pin:nth-child(3) {
  bottom: 32%;
  left: 35%;
  animation-delay: 0.8s;
}

.map-pin:nth-child(4) {
  bottom: 22%;
  right: 18%;
  animation-delay: 1.2s;
}

.map-pin:nth-child(5) {
  top: 52%;
  left: 52%;
  animation-delay: 1.6s;
}

/* Smartphone */
.phone-mockup {
  transform: scale(0.65);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup.active {
  transform: scale(0.9);
}

.phone-frame {
  width: 180px;
  height: 380px;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  border-radius: 2.5rem;
  padding: 0.625rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0.625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 0.375rem;
  background: #374151;
  border-radius: 0 0 0.75rem 0.75rem;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1rem;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.phone-icons {
  display: flex;
  gap: 1rem;
  font-size: 1.125rem;
  opacity: 0.9;
}

.phone-content {
  padding: 1.25rem 1rem;
  height: calc(100% - 75px);
  overflow-y: auto;
  background: #111827;
}

.phone-content::-webkit-scrollbar {
  width: 4px;
}

.phone-content::-webkit-scrollbar-track {
  background: transparent;
}

.phone-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.app-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.app-icon {
  font-size: 1.375rem;
  width: 28px;
  text-align: center;
  filter: grayscale(0.3);
}

.app-name {
  flex: 1;
  font-size: 0.9375rem;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.app-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.125rem;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .demo-request-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .demo-request-right {
    min-height: 450px;
    padding: 1.5rem 0;
    justify-content: center;
  }

  .devices-mockup {
    gap: 1rem;
    padding: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .device-mockup {
    transform: scale(0.6);
  }

  .device-mockup.active {
    transform: scale(0.8);
  }

  .desktop-frame {
    width: 350px;
    height: 245px;
  }

  .tablet-frame {
    width: 260px;
    height: 330px;
  }

  .phone-frame {
    width: 150px;
    height: 320px;
  }

  .phone-frame {
    width: 200px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .demo-request-section {
    padding: 4rem 0;
  }

  .demo-request-title {
    font-size: 2rem;
  }

  .demo-request-subtitle {
    font-size: 1.5rem;
  }

  .demo-request-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .demo-request-right {
    min-height: 350px;
    padding: 1rem 0;
    justify-content: center;
  }

  .devices-mockup {
    gap: 0.75rem;
    padding: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .device-mockup {
    transform: scale(0.55);
  }

  .device-mockup.active {
    transform: scale(0.7);
  }

  .desktop-frame {
    width: 280px;
    height: 195px;
  }

  .tablet-frame {
    width: 220px;
    height: 280px;
  }

  .phone-frame {
    width: 120px;
    height: 260px;
  }

  .phone-frame {
    width: 180px;
    height: 360px;
  }

  .phone-title {
    font-size: 0.9375rem;
  }

  .app-name {
    font-size: 0.8125rem;
  }

  .kpi-item {
    font-size: 1.125rem;
    padding: 0.75rem 0.5rem;
  }
}


@media (max-width: 768px) {
  .categories-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .category-button {
    min-width: 200px;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
  }

  .categories-track-infinite {
    animation-duration: 50s;
  }

  .categories-track-reverse {
    animation-duration: 50s;
  }
}

/* Platform Introduction Section */
.platform-intro-section {
  padding: 6rem 0;
  background: #ffffff;
}

.platform-intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.platform-intro-left {
  position: relative;
}

.platform-intro-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.platform-intro-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.platform-intro-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #10b981;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.platform-intro-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
}

.platform-intro-description {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.platform-intro-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.platform-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
}

.platform-feature-item svg {
  flex-shrink: 0;
  color: #3b82f6;
  margin-top: 0.25rem;
}

.platform-intro-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #3b82f6;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 0.5rem;
}

.platform-intro-button:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

@media (max-width: 968px) {
  .platform-intro-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .platform-intro-left {
    order: 2;
  }

  .platform-intro-right {
    order: 1;
  }

  .platform-intro-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .platform-intro-section {
    padding: 4rem 0;
  }

  .platform-intro-title {
    font-size: 1.75rem;
  }

  .platform-intro-description {
    font-size: 1rem;
  }

  .platform-feature-item {
    font-size: 0.9375rem;
  }
}

/* Branding & Blog Section */
.branding-blog-section {
  padding: 6rem 0;
  background: #ffffff;
}

.branding-blog-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: start;
}

.branding-agency-section {
  display: flex;
  flex-direction: column;
}

.branding-agency-title {
  font-size: 3rem;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.branding-agency-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.branding-showcase {
  position: relative;
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  min-height: 320px;
  overflow: visible;
}

.branding-screens {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 250px;
}

.branding-screen {
  position: absolute;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.screen-1 {
  width: 200px;
  height: 140px;
  top: 20px;
  left: 20px;
  z-index: 3;
}

.screen-2 {
  width: 180px;
  height: 130px;
  top: 50px;
  left: 120px;
  z-index: 2;
}

.screen-3 {
  width: 160px;
  height: 120px;
  top: 80px;
  left: 220px;
  z-index: 1;
}

.screen-header {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.screen-content {
  font-size: 0.625rem;
  color: #6b7280;
}

.color-palette {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.color-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.typography-sample {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.logo-variations {
  font-size: 0.625rem;
  color: #6b7280;
}

.chart-preview {
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 0.25rem;
  margin-top: 0.5rem;
}

.branding-profile {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.profile-avatar {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.profile-info {
  color: #ffffff;
}

.profile-role {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.profile-studio {
  font-size: 1.5rem;
  font-weight: 700;
}

.branding-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #1f2937;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.025em;
}

.branding-learn-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
  transition: left 0.6s ease;
}

.branding-learn-more:hover::before {
  left: 100%;
}

.branding-learn-more:hover {
  color: #7c3aed;
  border-color: #7c3aed;
  background: #faf5ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.branding-learn-more::after {
  content: '→';
  font-size: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.branding-learn-more:hover::after {
  transform: translateX(5px);
}

.blog-inspiration-section {
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.blog-inspiration-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.blog-articles {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex: 1;
}

.blog-article {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.blog-article:hover {
  transform: translateX(5px);
}

.article-thumbnail {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}

.thumbnail-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.thumbnail-1 {
  background: #1f2937;
  color: #ffffff;
}

.thumbnail-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.thumbnail-logos {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.mini-logo {
  font-size: 0.625rem;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.25rem;
}

.thumbnail-2 {
  background: #fef3c7;
}

.thumbnail-shapes {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.shape {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.shape-1 {
  background: #f59e0b;
}

.shape-2 {
  background: #ef4444;
}

.shape-3 {
  background: #10b981;
}

.thumbnail-3 {
  background: #f3f4f6;
  color: #6b7280;
}

.thumbnail-illustration {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0.25rem;
}

.article-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-color: #1f2937;
  transition: text-decoration-color 0.3s ease;
}

.blog-article:hover .article-title {
  text-decoration-color: #7c3aed;
}

.article-read-time {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.blog-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #1f2937;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.75rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.025em;
}

.blog-cta-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
  transition: left 0.6s ease;
}

.blog-cta-link:hover::before {
  left: 100%;
}

.blog-cta-link:hover {
  color: #7c3aed;
  border-color: #7c3aed;
  background: #faf5ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.blog-cta-link::after {
  content: '→';
  font-size: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.blog-cta-link:hover::after {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .branding-blog-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .branding-blog-section {
    padding: 4rem 0;
  }

  .branding-agency-title {
    font-size: 2rem;
  }

  .branding-showcase {
    min-height: 300px;
  }

  .screen-1,
  .screen-2,
  .screen-3 {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }

  .blog-article {
    flex-direction: column;
  }

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

/* Testimonial Showcase Section */
.testimonial-showcase-section {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.testimonial-showcase-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.testimonial-carousel-container {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.testimonial-slide-image {
  position: relative;
  z-index: 1;
}

.testimonial-slide-img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  min-height: 400px;
}

.testimonial-slide-text {
  position: relative;
  padding: 2rem;
  z-index: 2;
}

.testimonial-quote-large {
  position: relative;
  z-index: 2;
}

.quote-text-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.quote-text-full {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.testimonial-author-showcase {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.author-avatar-showcase {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.author-img-showcase {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info-showcase {
  display: flex;
  flex-direction: column;
}

.author-name-showcase {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.author-role-showcase {
  font-size: 0.875rem;
  color: #6b7280;
}

.testimonial-bg-map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='300' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 150 Q100 100 150 150 T250 150' stroke='%23e5e7eb' stroke-width='1' fill='none' opacity='0.3'/%3E%3Cpath d='M100 100 Q150 50 200 100 T300 100' stroke='%23e5e7eb' stroke-width='1' fill='none' opacity='0.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  z-index: 0;
}

.testimonial-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: #ffd700;
  border: none;
  border-radius: 0.5rem;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  pointer-events: auto;
}

.testimonial-nav-arrow:hover {
  background: #ffed4e;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.testimonial-nav-prev {
  left: 2rem;
}

.testimonial-nav-next {
  right: 2rem;
}

.testimonial-carousel-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  width: 24px;
  border-radius: 4px;
  background: #1f2937;
}

@media (max-width: 1024px) {
  .testimonial-slide-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial-nav-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .testimonial-showcase-section {
    padding: 4rem 0;
  }

  .quote-text-main {
    font-size: 1.75rem;
  }

  .testimonial-slide-img {
    min-height: 300px;
  }
}

/* User Engagement Section */
.user-engagement-section {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.user-count-section {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.user-avatars-container {
  position: relative;
  min-height: 500px;
  overflow: visible;
  margin-top: 2rem;
  padding: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-count-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.98);
  padding: 3rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  z-index: 10;
  max-width: 600px;
  width: 90%;
  text-align: center;
}

.user-count-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.user-count-number {
  color: #3b82f6;
}

.user-count-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin: 0;
}

.user-avatars-scattered {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.user-avatar-item.scattered-avatar {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: avatarFloat 4s ease-in-out infinite;
  z-index: 1;
  cursor: pointer;
  transform: scale(1) translateY(0) translateX(0);
}

.user-avatar-item.scattered-avatar.avatar-popup {
  animation: none;
}

.user-avatar-item.scattered-avatar.avatar-popup {
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  border-color: #3b82f6;
  border-width: 5px;
}

.user-avatar-item.scattered-avatar:hover {
  animation-play-state: paused;
}

/* Avatar'ları metin bloğunun etrafına organik şekilde yerleştir */
.user-avatar-item.scattered-avatar:nth-child(1) { top: 5%; left: 8%; animation-delay: 0s; }
.user-avatar-item.scattered-avatar:nth-child(2) { top: 12%; left: 25%; animation-delay: 0.3s; }
.user-avatar-item.scattered-avatar:nth-child(3) { top: 8%; right: 20%; animation-delay: 0.6s; }
.user-avatar-item.scattered-avatar:nth-child(4) { top: 15%; right: 8%; animation-delay: 0.9s; }
.user-avatar-item.scattered-avatar:nth-child(5) { top: 25%; left: 5%; animation-delay: 1.2s; }
.user-avatar-item.scattered-avatar:nth-child(6) { top: 30%; left: 20%; animation-delay: 1.5s; }
.user-avatar-item.scattered-avatar:nth-child(7) { top: 20%; left: 60%; animation-delay: 1.8s; }
.user-avatar-item.scattered-avatar:nth-child(8) { top: 25%; right: 25%; animation-delay: 2.1s; }
.user-avatar-item.scattered-avatar:nth-child(9) { top: 18%; right: 5%; animation-delay: 2.4s; }
.user-avatar-item.scattered-avatar:nth-child(10) { top: 70%; left: 10%; animation-delay: 2.7s; }
.user-avatar-item.scattered-avatar:nth-child(11) { top: 75%; left: 30%; animation-delay: 3s; }
.user-avatar-item.scattered-avatar:nth-child(12) { top: 72%; left: 55%; animation-delay: 3.3s; }
.user-avatar-item.scattered-avatar:nth-child(13) { top: 78%; right: 30%; animation-delay: 3.6s; }
.user-avatar-item.scattered-avatar:nth-child(14) { top: 80%; right: 8%; animation-delay: 3.9s; }
.user-avatar-item.scattered-avatar:nth-child(15) { top: 85%; left: 15%; animation-delay: 4.2s; }
.user-avatar-item.scattered-avatar:nth-child(16) { top: 88%; left: 40%; animation-delay: 4.5s; }
.user-avatar-item.scattered-avatar:nth-child(17) { top: 82%; right: 20%; animation-delay: 4.8s; }
.user-avatar-item.scattered-avatar:nth-child(18) { top: 90%; right: 5%; animation-delay: 5.1s; }
.user-avatar-item.scattered-avatar:nth-child(19) { top: 92%; left: 25%; animation-delay: 5.4s; }
.user-avatar-item.scattered-avatar:nth-child(20) { top: 95%; left: 50%; animation-delay: 5.7s; }
.user-avatar-item.scattered-avatar:nth-child(21) { top: 3%; left: 50%; animation-delay: 6s; }
.user-avatar-item.scattered-avatar:nth-child(22) { top: 10%; left: 35%; animation-delay: 6.3s; }
.user-avatar-item.scattered-avatar:nth-child(23) { top: 65%; right: 15%; animation-delay: 6.6s; }
.user-avatar-item.scattered-avatar:nth-child(24) { top: 68%; left: 5%; animation-delay: 6.9s; }
.user-avatar-item.scattered-avatar:nth-child(25) { top: 73%; right: 40%; animation-delay: 7.2s; }
.user-avatar-item.scattered-avatar:nth-child(26) { top: 22%; left: 70%; animation-delay: 7.5s; }
.user-avatar-item.scattered-avatar:nth-child(27) { top: 68%; left: 70%; animation-delay: 7.8s; }
.user-avatar-item.scattered-avatar:nth-child(28) { top: 77%; right: 50%; animation-delay: 8.1s; }
.user-avatar-item.scattered-avatar:nth-child(29) { top: 28%; left: 80%; animation-delay: 8.4s; }
.user-avatar-item.scattered-avatar:nth-child(30) { top: 87%; left: 65%; animation-delay: 8.7s; }

/* Bazı avatar'ları farklı boyutlarda yap */
.user-avatar-item.scattered-avatar:nth-child(3n) {
  width: 70px;
  height: 70px;
}

.user-avatar-item.scattered-avatar:nth-child(5n) {
  width: 90px;
  height: 90px;
}

.user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

@keyframes avatarFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-10px) translateX(5px);
  }
  50% {
    transform: translateY(-5px) translateX(-5px);
  }
  75% {
    transform: translateY(-8px) translateX(3px);
  }
}

.testimonial-section {
  background: #f8fafc;
  padding: 4rem 2rem;
  margin: 2rem 0;
  border-radius: 1rem;
  position: relative;
}

.testimonial-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-quote-icon {
  font-size: 6rem;
  color: #f59e0b;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.375rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.testimonial-author-avatar,
.testimonial-author-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-author-avatar {
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-author-avatar-placeholder {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonial-author-info {
  text-align: right;
}

.testimonial-author-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.testimonial-author-role {
  font-size: 0.9375rem;
  color: #6b7280;
}

.growth-cta-section {
  text-align: center;
  padding: 3rem 0;
}

.growth-cta-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #0ea5e9;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.growth-cta-button {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: #3b82f6;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.growth-cta-button:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

/* Growth CTA Standalone Section */
.growth-cta-section-standalone {
  padding: 3rem 0;
  background: #ffffff;
  position: relative;
  overflow: visible;
}

.growth-cta-wrapper {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2rem;
}

.growth-cta-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.sparkle {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 1;
  animation: sparklePulse 2s ease-in-out infinite;
}

.sparkle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #f59e0b;
  border-radius: 2px;
  transform-origin: center;
}

.sparkle-line-1 {
  width: 3px;
  height: 20px;
  transform: translate(-50%, -50%) rotate(0deg) translateY(-15px);
}

.sparkle-line-2 {
  width: 3px;
  height: 20px;
  transform: translate(-50%, -50%) rotate(45deg) translateY(-15px);
}

.sparkle-line-3 {
  width: 3px;
  height: 20px;
  transform: translate(-50%, -50%) rotate(90deg) translateY(-15px);
}

.sparkle-line-4 {
  width: 3px;
  height: 20px;
  transform: translate(-50%, -50%) rotate(135deg) translateY(-15px);
}

.sparkle-line-5 {
  width: 3px;
  height: 20px;
  transform: translate(-50%, -50%) rotate(180deg) translateY(-15px);
}

.sparkle-line-6 {
  width: 3px;
  height: 20px;
  transform: translate(-50%, -50%) rotate(225deg) translateY(-15px);
}

.sparkle-line-7 {
  width: 3px;
  height: 20px;
  transform: translate(-50%, -50%) rotate(270deg) translateY(-15px);
}

.sparkle-line-8 {
  width: 3px;
  height: 20px;
  transform: translate(-50%, -50%) rotate(315deg) translateY(-15px);
}

.sparkle-1 {
  top: 5%;
  right: 25%;
  animation-delay: 0s;
}

.sparkle-2 {
  top: 8%;
  right: 35%;
  animation-delay: 0.5s;
}

.sparkle-3 {
  top: 12%;
  right: 50%;
  animation-delay: 1s;
}

@keyframes sparklePulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.3) rotate(180deg);
    opacity: 1;
  }
}

.growth-cta-title-handwritten {
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  font-family: 'Dancing Script', 'Kalam', 'Brush Script MT', 'Lucida Handwriting', cursive;
  font-style: normal;
  position: relative;
  z-index: 2;
  letter-spacing: -0.5px;
}

.growth-title-part1 {
  color: #14b8a6;
  display: inline;
  margin-right: 0.5rem;
}

.growth-title-part2 {
  color: #1e293b;
  display: inline;
}

.growth-cta-button-purple {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: #7c3aed;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  border: none;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.growth-cta-button-purple:hover {
  background: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.growth-cta-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.growth-arrow-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.growth-arrow-icon {
  color: #14b8a6;
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(20, 184, 166, 0.3));
  animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.growth-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.growth-info-text p {
  font-size: 0.9375rem;
  color: #6b7280;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (max-width: 968px) {
  .user-count-title {
    font-size: 2rem;
  }

  .user-count-subtitle {
    font-size: 1.125rem;
  }

  .user-avatars-grid {
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 0.75rem;
  }

  .user-avatar-item {
    width: 50px;
    height: 50px;
  }

  .testimonial-text {
    font-size: 1.125rem;
  }

  .growth-cta-title {
    font-size: 2rem;
  }

  .growth-cta-section-standalone {
    padding: 2rem 0;
  }

  .growth-cta-wrapper {
    padding: 1.5rem 1.5rem;
  }

  .growth-cta-title-handwritten {
    font-size: 3rem;
  }

  .growth-cta-button-purple {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .growth-cta-section-standalone {
    padding: 1.5rem 0;
  }

  .growth-cta-wrapper {
    padding: 1rem 1rem;
  }

  .growth-cta-title-handwritten {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .growth-title-part1,
  .growth-title-part2 {
    display: block;
  }

  .growth-cta-button-purple {
    padding: 1rem 1.5rem;
    font-size: 0.9375rem;
  }

  .sparkle {
    width: 50px;
    height: 50px;
  }

  .sparkle-line {
    height: 15px;
  }
}

@media (max-width: 768px) {
  .user-engagement-section {
    padding: 4rem 0;
  }

  .user-count-content {
    padding: 2rem 1.5rem;
  }

  .user-count-title {
    font-size: 1.75rem;
  }

  .user-count-subtitle {
    font-size: 1rem;
  }

  .user-avatars-container {
    min-height: 400px;
    padding: 2rem 0;
  }

  .user-count-content {
    padding: 2rem 1.5rem;
    max-width: 90%;
  }

  .user-count-title {
    font-size: 1.75rem;
  }

  .user-count-subtitle {
    font-size: 1rem;
  }

  .user-avatar-item.scattered-avatar {
    width: 60px;
    height: 60px;
    border-width: 3px;
  }

  .user-avatar-item.scattered-avatar:nth-child(3n) {
    width: 55px;
    height: 55px;
  }

  .user-avatar-item.scattered-avatar:nth-child(5n) {
    width: 70px;
    height: 70px;
  }

  .testimonial-section {
    padding: 3rem 1.5rem;
    margin: 1.5rem 0;
  }

  .testimonial-quote-icon {
    font-size: 4rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-author {
    flex-direction: column;
    align-items: flex-end;
  }

  .testimonial-author-info {
    text-align: right;
  }

  .growth-cta-title {
    font-size: 1.75rem;
  }

  .growth-cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Cards */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.card-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

/* Stats */
.stats-section {
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: hsl(var(--muted) / 0.3);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-bottom: 4rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

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

.error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Footer */
.footer {
  background: hsl(var(--muted) / 0.3);
  border-top: 1px solid hsl(var(--border));
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  display: block;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: hsl(var(--foreground));
}

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

.footer-social-link {
  padding: 0.5rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

.footer-social-link:hover {
  color: hsl(var(--foreground));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Responsive */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
  .hero-button {
    width: 18rem;
  }
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
  .navbar-actions {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .section-title {
    font-size: 3rem;
  }
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.category-icon {
  background: hsl(var(--primary) / 0.1);
  border-radius: var(--radius);
  padding: 0.75rem;
  display: inline-flex;
  margin-bottom: 1rem;
}

.category-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
}

.category-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.category-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Progress Steps */
.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.step {
  flex: 1;
  text-align: center;
}

.step-indicator {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  border: 2px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--background));
  transition: all 0.2s;
}

.step-indicator.active {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.step-line {
  height: 2px;
  flex: 1;
  background: hsl(var(--border));
  margin: 0 1rem;
}

.step-line.active {
  background: hsl(var(--primary));
}

.step-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}

.step-title.active {
  color: hsl(var(--foreground));
}

/* Utility Classes */
.hidden {
  display: none;
}

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

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

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

.gap-4 {
  gap: 1rem;
}

.flex {
  display: flex;
}

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

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

/* Smart Solution Partner Section */
.smart-solution-section {
  padding: 6rem 0;
  background: #fff;
}

.smart-solution-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.smart-solution-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin-bottom: 1.5rem;
}

.smart-solution-highlight {
  position: relative;
  display: inline-block;
}

.smart-solution-highlight::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  right: 0;
  height: 0.5rem;
  background: #10b981;
  opacity: 0.3;
  z-index: -1;
}

.smart-solution-description {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.7;
  margin-top: 1.5rem;
}

/* AI Assistant Section */



/* Mobile App Section */

.chat-bubbles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-bubble {
  max-width: 70%;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  position: relative;
}

.chat-bubble-left {
  background: #f3f4f6;
  align-self: flex-start;
  border-bottom-left-radius: 0.25rem;
}

.chat-bubble-right {
  background: #10b981;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 0.25rem;
}

.chat-time {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.chat-text {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.mobile-app-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #1f2937;
  border-radius: 2.5rem;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.phone-header {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.phone-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFEF17;
}

.phone-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.phone-welcome {
  text-align: center;
  color: #fff;
}

.phone-welcome h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.phone-welcome p {
  font-size: 0.9375rem;
  color: #9ca3af;
}

.phone-button {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.phone-button:hover {
  transform: translateX(-50%) scale(1.1);
}

@media (max-width: 968px) {
  .smart-solution-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .smart-solution-section {
    padding: 4rem 0;
  }

  .smart-solution-title {
    font-size: 1.75rem;
  }

  .chat-bubble {
    max-width: 85%;
  }

}

/* AI Banner Section */
.ai-banner-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
}

.ai-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: #f8f9fa;
  z-index: 0;
}

.ai-banner-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
  background: linear-gradient(to right, #1e3a8a 0%, #0ea5e9 100%);
  z-index: 0;
}

.ai-banner-section::after {
  background-image:
    linear-gradient(to right, #1e3a8a 0%, #0ea5e9 100%),
    radial-gradient(circle at 30% 50%, rgba(14, 165, 233, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.2) 0%, transparent 50%);
  background-size: 100% 100%, 200px 200px, 150px 150px;
  background-position: center, 30% 50%, 70% 30%;
  background-repeat: no-repeat;
}

.ai-banner-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.ai-banner-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 500px;
  padding: 3rem 2rem;
  position: relative;
}

.ai-banner-left {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ai-robot-character {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.robot-body {
  position: relative;
  z-index: 3;
  width: 200px;
  height: 350px;
}

.robot-head {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
  border: 4px solid #ffffff;
}

.robot-face {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000000;
  border-radius: 50%;
  margin: 8px;
}

.robot-eyes {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.eye {
  width: 24px;
  height: 24px;
  background: #0ea5e9;
  border-radius: 50%;
  animation: blink 3s infinite;
}

@keyframes blink {
  0%, 90%, 100% {
    transform: scaleY(1);
  }
  95% {
    transform: scaleY(0.1);
  }
}

.robot-mouth {
  width: 60px;
  height: 30px;
  border: 3px solid #0ea5e9;
  border-top: none;
  border-radius: 0 0 60px 60px;
  margin-top: 0.5rem;
}

.robot-chest {
  width: 120px;
  height: 100px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  margin: -20px auto 0;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
  border: 3px solid #ffffff;
  position: relative;
}

.ai-chip {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.robot-arm {
  position: absolute;
  right: -40px;
  top: 80px;
  width: 80px;
  height: 20px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border-radius: 10px;
  transform: rotate(-20deg);
}

.magnifying-glass {
  position: absolute;
  right: -20px;
  top: -10px;
  width: 60px;
  height: 60px;
}

.glass-circle {
  width: 50px;
  height: 50px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.glass-handle {
  position: absolute;
  bottom: 10px;
  right: -15px;
  width: 20px;
  height: 30px;
  background: #0ea5e9;
  border-radius: 0 0 10px 10px;
  transform: rotate(45deg);
}

.robot-platform {
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 260px;
  height: 80px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.6) 0%, rgba(14, 165, 233, 0.6) 100%);
  border-radius: 50% 50% 0 0;
  filter: blur(20px);
  opacity: 0.8;
}

.data-panels {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  z-index: 2;
}

.data-panel {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem;
}

.panel-1 {
  left: 20%;
  bottom: 20px;
  width: 80px;
  height: 60px;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  transform: rotate(-5deg);
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, #f97316 0%, #fb923c 100%);
  border-radius: 2px 2px 0 0;
}

.panel-2 {
  left: 35%;
  bottom: 40px;
  width: 100px;
  height: 50px;
  transform: rotate(3deg);
}

.chart-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #10b981, transparent);
  margin-top: 50%;
  position: relative;
}

.chart-line::before,
.chart-line::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  top: -3px;
}

.chart-line::before {
  left: 20%;
}

.chart-line::after {
  right: 20%;
}

.panel-3 {
  left: 50%;
  bottom: 30px;
  width: 70px;
  height: 70px;
  transform: rotate(-2deg);
}

.data-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
}

.data-grid::before {
  content: '';
  grid-column: 1 / -1;
  grid-row: 1;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.data-grid::after {
  content: '';
  grid-column: 1;
  grid-row: 1 / -1;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.ai-banner-right {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 2rem 0;
}

.ai-banner-brand {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 2rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ai-banner-brand::first-letter {
  font-size: 4.5rem;
}

.ai-banner-slogan {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slogan-line-1,
.slogan-line-2 {
  margin-bottom: 0.5rem;
}

.ai-banner-button {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: #ec4899;
  color: #ffffff;
  border-radius: 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4);
}

.ai-banner-button:hover {
  background: #db2777;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.5);
}

@media (max-width: 1024px) {
  .ai-banner-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .ai-banner-left {
    order: 2;
    height: 300px;
  }

  .ai-robot-character {
    height: 300px;
  }

  .robot-body {
    transform: scale(0.8);
  }

  .ai-banner-right {
    order: 1;
    text-align: center;
  }

  .ai-banner-brand {
    font-size: 3rem;
  }

  .ai-banner-slogan {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .ai-banner-section {
    min-height: 400px;
  }

  .ai-banner-content {
    min-height: 400px;
    padding: 1.5rem 1rem;
  }

  .ai-banner-left {
    height: 250px;
  }

  .ai-robot-character {
    height: 250px;
  }

  .robot-body {
    transform: scale(0.7);
  }

  .ai-banner-brand {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .ai-banner-slogan {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }

  .ai-banner-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: #f9fafb;
}

/* Solutions Showcase Section */
.solutions-showcase-section {
  padding: 5rem 0;
  background: #f5f6f7;
}

.solutions-showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.solutions-showcase-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solutions-showcase-left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 1rem;
}

.solutions-icons {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.solution-icon-card {
  width: 280px;
  height: 360px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.solution-icon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-icon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.solution-icon-card:hover::before {
  opacity: 1;
}

.icon-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.icon-text-white {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.icon-text-white-small {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  opacity: 0.9;
}

.solutions-showcase-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solutions-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.solutions-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2563eb;
  letter-spacing: -0.5px;
}

.solutions-subtitle {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #f59e0b;
  letter-spacing: -0.3px;
}

.solutions-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.solutions-footer-bar {
  width: 100%;
  height: 4px;
  background: #2563eb;
  margin-top: 3rem;
}

/* Capabilities Section */
.capabilities-section {
  padding: 6rem 0;
  background: #ffffff;
}

.capabilities-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.capabilities-header {
  text-align: center;
  margin-bottom: 5rem;
}

.capabilities-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.capabilities-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.capability-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.capability-item:last-child {
  margin-bottom: 0;
}

.capability-item-1 .capability-content {
  order: 1;
}

.capability-item-1 .capability-image {
  order: 2;
}

.capability-item-2 .capability-content {
  order: 2;
}

.capability-item-2 .capability-image {
  order: 1;
}

.capability-item-3 .capability-content {
  order: 1;
}

.capability-item-3 .capability-image {
  order: 2;
}

.capability-item-4 .capability-content {
  order: 2;
}

.capability-item-4 .capability-image {
  order: 1;
}

.capability-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.capability-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.5px;
}

.capability-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.capability-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #2563eb;
  color: #ffffff;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.capability-button:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.capability-image {
  position: relative;
  overflow: visible;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
}

.capability-image:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.capability-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(1.05) contrast(1.1);
}

.capability-item:nth-child(1) .capability-img {
  clip-path: polygon(
    15% 5%,
    85% 0%,
    100% 25%,
    95% 75%,
    85% 100%,
    10% 95%,
    0% 70%,
    5% 20%
  );
}

.capability-item:nth-child(2) .capability-img {
  clip-path: polygon(
    10% 0%,
    90% 5%,
    100% 30%,
    90% 85%,
    75% 100%,
    15% 95%,
    0% 75%,
    5% 15%
  );
}

.capability-item:nth-child(3) .capability-img {
  clip-path: polygon(
    5% 10%,
    80% 0%,
    95% 20%,
    100% 70%,
    90% 95%,
    20% 100%,
    0% 80%,
    10% 25%
  );
}

.capability-item:nth-child(4) .capability-img {
  clip-path: polygon(
    20% 0%,
    95% 10%,
    100% 35%,
    85% 90%,
    70% 100%,
    5% 90%,
    0% 60%,
    15% 20%
  );
}

.capability-image:hover .capability-img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.15);
}

@media (max-width: 1024px) {
  .capability-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .capability-image {
    order: -1;
    max-width: 100%;
    aspect-ratio: 1;
  }

  .capability-item-1 .capability-content,
  .capability-item-2 .capability-content,
  .capability-item-3 .capability-content,
  .capability-item-4 .capability-content {
    order: 2;
  }

  .capability-item-1 .capability-image,
  .capability-item-2 .capability-image,
  .capability-item-3 .capability-image,
  .capability-item-4 .capability-image {
    order: 1;
  }

  .capability-title {
    font-size: 2rem;
  }

  .capabilities-title {
    font-size: 2.5rem;
  }

  .capabilities-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .capabilities-section {
    padding: 4rem 0;
  }

  .capabilities-container {
    padding: 0 1rem;
  }

  .capabilities-title {
    font-size: 2rem;
  }

  .capabilities-subtitle {
    font-size: 1.125rem;
  }

  .capabilities-header {
    margin-bottom: 2.5rem;
  }

  .capability-item {
    margin-bottom: 3rem;
  }

  .capability-title {
    font-size: 1.75rem;
  }

  .capability-description {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .solutions-showcase-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .solutions-showcase-left {
    order: 2;
  }

  .solutions-showcase-right {
    order: 1;
  }

  .solutions-panels {
    height: 600px;
  }

  .solutions-main-title {
    font-size: 2rem;
  }

  .solutions-subtitle {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .solutions-showcase-section {
    padding: 3rem 0;
  }

  .solutions-showcase-container {
    padding: 0 1rem;
  }

  .solutions-icons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .solution-icon-card {
    width: 100%;
    max-width: 280px;
    height: 280px;
  }

  .solutions-main-title {
    font-size: 1.75rem;
  }

  .solutions-subtitle {
    font-size: 1.5rem;
  }

  .solutions-description {
    font-size: 1rem;
  }
}

.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin-bottom: 1.5rem;
}

.testimonials-highlight {
  position: relative;
  display: inline-block;
}

.testimonials-highlight::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  right: 0;
  height: 0.5rem;
  background: #FFEF17;
  z-index: -1;
}

.testimonials-description {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.7;
  margin-top: 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.testimonial-avatar,
.testimonial-avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-avatar {
  object-fit: cover;
}

.testimonial-avatar-placeholder {
  background: linear-gradient(135deg, #FFEF17 0%, #FFD700 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: #6b7280;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 4rem 0;
  }

  .testimonials-title {
    font-size: 1.75rem;
  }

  .testimonials-description {
    font-size: 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 3rem 0 6rem 0;
  background: #ffffff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.faq-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  margin: 0;
  font-weight: 400;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
  transition: background-color 0.2s ease;
}

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

.faq-item:hover {
  background: #fafafa;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1f2937;
  transition: color 0.2s ease;
  font-family: inherit;
}

.faq-question:hover {
  color: #2563eb;
}

.faq-question span {
  flex: 1;
  line-height: 1.6;
  text-align: left;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #6b7280;
  width: 20px;
  height: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #2563eb;
}

.faq-item.active .faq-question {
  color: #2563eb;
  font-weight: 600;
}

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

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

.faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  padding-top: 0.75rem;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 2rem 0 4rem 0;
  }

  .faq-container {
    padding: 0 1rem;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-header {
    margin-bottom: 3rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.25rem 0;
  }

  .faq-answer p {
    font-size: 0.9375rem;
  }
}
