/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Banner */
.top-banner {
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  color: white;
  padding: 12px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.top-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.top-banner .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.banner-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.banner-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 40px;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover,
.nav-link.active {
  color: #7b2cbf;
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 20px 0;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: linear-gradient(
    135deg,
    rgba(123, 44, 191, 0.05),
    rgba(29, 181, 132, 0.05)
  );
  border-left-color: #7b2cbf;
  transform: translateX(5px);
}

.dropdown-item i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  color: white;
  border-radius: 8px;
  font-size: 12px;
}

.dropdown-item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-title {
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
}

.dropdown-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.dropdown-trigger i {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.nav-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #ddd;
  color: #333;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #7b2cbf;
  color: #7b2cbf;
}

.btn-primary {
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 44, 191, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%237B2CBF" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.highlight {
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  font-weight: 400;
}

.btn-cta {
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  border: none;
  color: white;
  padding: 18px 36px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(123, 44, 191, 0.3);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(123, 44, 191, 0.4);
}

/* Device Mockups */
.hero-visual {
  position: relative;
  height: 500px;
}

.devices-container {
  position: relative;
  width: 100%;
  height: 100%;
  will-change: transform;
}

/* Responsive hero SVG */
.hero-illustration {
  width: 100%;
  height: 100%;
  display: block;
  transform: translateZ(0); /* trigger compositor */
}

.laptop {
  position: absolute;
  right: 0;
  top: 50px;
  width: 400px;
  height: 280px;
  background: #2a2a2a;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.laptop::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -20px;
  right: -20px;
  height: 15px;
  background: #1a1a1a;
  border-radius: 0 0 20px 20px;
}

.laptop-screen {
  margin: 15px;
  height: calc(100% - 30px);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.dashboard-preview {
  padding: 20px;
  height: 100%;
}

.dashboard-header {
  height: 40px;
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  border-radius: 6px;
  margin-bottom: 15px;
}

.dashboard-stats {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.stat-card {
  flex: 1;
  height: 60px;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  border-radius: 8px;
}

.dashboard-chart {
  height: 120px;
  background: linear-gradient(135deg, #f8f9ff, #e8f0ff);
  border-radius: 8px;
  position: relative;
}

.phone {
  position: absolute;
  right: 100px;
  bottom: 0;
  width: 180px;
  height: 360px;
  background: #1a1a1a;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite 1s;
  z-index: 3;
}

.phone-screen {
  margin: 15px;
  height: calc(100% - 30px);
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.phone-content {
  padding: 20px;
  color: white;
  text-align: center;
}

.time {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 40px;
}

.notifications {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.notification {
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

/* Brands Section */
.brands {
  padding: 80px 0;
  background: #fafafa;
  overflow: hidden;
}

.brands .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.brands .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.brands .section-header p {
  font-size: 16px;
  color: #666;
}

.logo-slider-container {
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  animation: logoSlide 10s linear infinite;
  gap: 20px;
  align-items: center;
}

@keyframes logoSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  margin-top: 10px;
  flex-shrink: 0;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(123, 44, 191, 0.2);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Pause animation on hover */
.logo-slider-container:hover .logo-track {
  animation-play-state: paused;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 24px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  /* Let SVG control visuals instead of fixed mockups on tablet */
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .nav-buttons {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    padding: 40px 0 50px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .logo-item {
    width: 120px;
    height: 70px;
    padding: 12px;
  }

  .logo-track {
    gap: 30px;
  }

  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }
  .hero-visual {
    height: 360px;
  }
  .hero-illustration {
    height: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .btn-cta {
    padding: 15px 30px;
    font-size: 14px;
  }

  .logo-item {
    width: 100px;
    height: 60px;
    padding: 8px;
  }

  .logo-track {
    gap: 25px;
  }

  .brands .section-header h2 {
    font-size: 24px;
  }

  /* Remove fixed device sizes on mobile (using SVG) */
  .hero-visual {
    height: 300px;
  }
  .hero-illustration {
    height: 100%;
  }
}

/* Solutions Slider Section */
.solutions-slider {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
  position: relative;
}

.solutions-slider::before {
  display: none;
}

.slider-container {
  position: relative;
  min-height: 500px; /* Sabit container yüksekliği */
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: white;
  min-height: 500px; /* Sabit wrapper yüksekliği */
  border: 1px solid rgba(0, 0, 0, 0.06); /* Çok hafif border */
}

.slide {
  display: none;
  padding: 30px;
  min-height: 440px; /* Sabit slide yüksekliği */
  max-height: 440px; /* Maksimum yükseklik */
  position: relative;
  overflow: hidden; /* Taşmayı önle */
}

.slide.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Solution Card Layout - Sabit boyutlu */
.solution-card {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 380px; /* Sabit kart yüksekliği */
}

.solution-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 340px; /* Sabit görsel alanı yüksekliği */
}

.animated-placeholder {
  width: 520px;
  height: 340px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(123, 44, 191, 0.1); /* Çok hafif border */
}

.animated-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

/* GIF container - placeholder-bg and placeholder-content removed */

.solution-content {
  padding: 20px 0;
  height: 340px; /* Sabit içerik yüksekliği */
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden; /* Taşan içeriği gizle */
}

.solution-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  line-height: 1.2;
  /* Başlık için maksimum 2 satır */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.solution-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
  /* Paragraf için maksimum 3 satır */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.solution-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1); /* Hafif inner border */
}

.solution-btn:hover {
  transform: translateY(-1px); /* Daha hafif hareket */
  background: linear-gradient(135deg, #8e3dd6, #22c997); /* Renk değişimi */
  opacity: 0.9;
}

.solution-btn i {
  transition: transform 0.3s ease;
}

.solution-btn:hover i {
  transform: translateX(5px);
}

/* Animation keyframes removed - using static GIF containers */

.slide-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #555;
}

.feature-list i {
  color: #1db584;
  font-size: 12px;
  width: 16px;
  height: 16px;
  background: rgba(29, 181, 132, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.nav-btn,
.slider-btn {
  width: 50px;
  height: 50px;
  border: none;
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-btn:hover,
.slider-btn:hover {
  transform: translateY(-2px);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.prev-btn,
.next-btn {
  font-size: 16px;
}

.slider-dots {
  display: flex;
  gap: 15px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  transform: scale(1.2);
}

/* Responsive Design for Slider */
@media (max-width: 1024px) {
  .slide-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .slide {
    padding: 40px;
    min-height: 400px;
  }

  .slide-image {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .solutions-section {
    padding: 60px 0;
  }

  /* Mobilde slider'ı devre dışı bırak - kartları alt alta göster */
  .slider-container {
    overflow: visible;
    height: auto;
    min-height: auto;
  }

  .slider-wrapper {
    transform: none !important;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: auto;
    height: auto;
  }

  .slide {
    opacity: 1 !important;
    display: block !important;
    position: relative !important;
    transform: none !important;
    padding: 20px 15px;
    min-height: auto;
    max-height: none;
    margin-bottom: 20px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .slide:not(.active) {
    opacity: 1 !important;
    display: block !important;
  }

  /* Mobil solution card */
  .solution-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: auto;
    text-align: center;
    padding: 0;
  }

  .solution-visual {
    order: 1;
    height: auto;
    margin-bottom: 15px;
  }

  .animated-placeholder {
    width: 100%;
    max-width: 300px;
    height: 180px;
    margin: 0 auto;
    border-radius: 10px;
  }

  .solution-content {
    order: 2;
    height: auto;
    padding: 0 10px 10px 10px;
  }

  .solution-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.3;
    -webkit-line-clamp: none;
    line-clamp: none;
    display: block;
    overflow: visible;
  }

  .solution-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    -webkit-line-clamp: none;
    line-clamp: none;
    display: block;
    overflow: visible;
  }

  .solution-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin: 0 auto;
    width: fit-content;
    display: inline-flex;
  }

  /* Slider kontrollerini gizle */
  .slider-nav,
  .slider-controls {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .slide {
    padding: 15px 10px;
    margin-bottom: 15px;
  }

  .animated-placeholder {
    max-width: 250px;
    height: 150px;
  }

  .solution-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .solution-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .solution-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* Solution Pages Styles */
.page-hero {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexgrid" width="15" height="15" patternUnits="userSpaceOnUse"><polygon points="7.5,1 13,5 13,11 7.5,15 2,11 2,5" fill="none" stroke="%237B2CBF" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexgrid)"/></svg>');
}

.page-hero-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: #7b2cbf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #1db584;
}

.breadcrumb span {
  color: #999;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.page-hero-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-showcase {
  background: linear-gradient(
    135deg,
    rgba(123, 44, 191, 0.1),
    rgba(29, 181, 132, 0.1)
  );
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7b2cbf;
  position: relative;
  margin: 0 auto;
}

.feature-showcase::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  border-radius: 50%;
  opacity: 0.1;
}

.feature-showcase i {
  position: relative;
  z-index: 2;
}

.features-overview {
  padding: 100px 0;
  background: white;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-item .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 20px;
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
  font-size: 14px;
}

.benefits-section,
.ai-showcase,
.cloud-infrastructure {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.benefits-content,
.ai-content,
.cloud-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefit-item,
.ai-benefit,
.security-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.benefit-icon,
.ai-benefit-icon,
.security-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.benefit-content h4,
.ai-benefit-content h4,
.security-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.benefit-content p,
.ai-benefit-content p,
.security-content p {
  color: #666;
  line-height: 1.6;
}

.dashboard-mockup,
.ai-mockup,
.cloud-mockup {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
}

.mockup-header,
.ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.mockup-dots {
  display: flex;
  gap: 8px;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
}

.mockup-dots span:nth-child(1) {
  background: #ff5f56;
}
.mockup-dots span:nth-child(2) {
  background: #ffbd2e;
}
.mockup-dots span:nth-child(3) {
  background: #27ca3f;
}

.ai-header h4 {
  color: #7b2cbf;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-stats,
.ai-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.mock-stat,
.ai-metric {
  text-align: center;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(123, 44, 191, 0.05),
    rgba(29, 181, 132, 0.05)
  );
  border-radius: 12px;
}

.mock-stat h4 {
  font-size: 24px;
  font-weight: 700;
  color: #7b2cbf;
  margin-bottom: 5px;
}

.mock-stat p {
  font-size: 12px;
  color: #666;
}

.ai-metric {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.metric-icon {
  font-size: 24px;
}

.metric-value {
  font-size: 20px;
  font-weight: 700;
  color: #7b2cbf;
  display: block;
}

.metric-label {
  font-size: 12px;
  color: #666;
}

.mock-chart,
.ai-chart {
  height: 150px;
  background: linear-gradient(135deg, #f8f9ff, #e8f0ff);
  border-radius: 12px;
  position: relative;
}

.chart-bars {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: end;
  gap: 10px;
  height: 100px;
}

.bar {
  flex: 1;
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  border-radius: 4px 4px 0 0;
  opacity: 0.8;
}

.cloud-layers {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.cloud-layer {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: linear-gradient(
    135deg,
    rgba(123, 44, 191, 0.05),
    rgba(29, 181, 132, 0.05)
  );
  border-radius: 12px;
  border-left: 4px solid #7b2cbf;
}

.cloud-layer i {
  color: #7b2cbf;
  font-size: 18px;
  width: 24px;
}

.cloud-status {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.green {
  background: #27ca3f;
}

.pricing-section {
  padding: 100px 0;
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #7b2cbf;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.price {
  margin-bottom: 30px;
}

.currency {
  font-size: 24px;
  color: #7b2cbf;
  font-weight: 600;
}

.amount {
  font-size: 48px;
  font-weight: 700;
  color: #7b2cbf;
}

.period {
  font-size: 16px;
  color: #666;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.pricing-features i {
  color: #1db584;
  font-size: 12px;
}

.pricing-btn {
  width: 100%;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-section .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
}

/* Mobile Responsive for Solution Pages */
@media (max-width: 1024px) {
  .page-hero-content,
  .benefits-content,
  .ai-content,
  .cloud-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .page-hero {
    padding: 100px 0 60px;
  }

  .page-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 80px 0 40px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero-buttons {
    justify-content: center;
  }

  .mock-stats,
  .ai-metrics {
    grid-template-columns: 1fr;
  }

  .ai-metric {
    justify-content: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .cta-content h2 {
    font-size: 28px;
  }
}

/* Solution Cards Styles */
.solutions-cards {
  padding: 80px 0;
  background: #f8f9fa;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.solution-card {
  background: white;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.solution-card:hover {
  transform: translateY(-10px);
}

.solution-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 32px;
}

.solution-card h3 {
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 25px;
}

.solution-features {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.solution-features li {
  display: flex;
  align-items: center;
  margin: 15px 0;
  color: #555;
  font-size: 17px;
  line-height: 1.5;
}

.solution-features li i {
  color: #1db584;
  margin-right: 15px;
  font-size: 16px;
  min-width: 16px;
}

.btn-card {
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  width: 100%;
}

.btn-card:hover {
  background: linear-gradient(135deg, #6a1a9a, #17a071);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(123, 44, 191, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solution-card {
    padding: 30px 20px;
  }

  .solution-card-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .solution-card h3 {
    font-size: 20px;
  }
}

/* Solutions Section Styles */
.solutions-section {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Contact Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: slideDown 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 20px;
}

.close:hover,
.close:focus {
  color: #7b2cbf;
}

.modal h2 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 600;
}

.modal p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: "Inter", sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7b2cbf;
  box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #6a1a9a, #17a071);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(123, 44, 191, 0.3);
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
  .modal-content {
    margin: 10% auto;
    padding: 30px 20px;
    width: 95%;
  }

  .modal h2 {
    font-size: 24px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
  }
}

/* Footer Styles */
.footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 30px 0;
  margin-top: 80px;
  border-top: 4px solid;
  border-image: linear-gradient(135deg, #7b2cbf, #1db584) 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #bdc3c7;
}

.footer .company-name {
  color: #1db584;
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer {
    padding: 20px 0;
    margin-top: 60px;
  }

  .footer p {
    font-size: 14px;
  }
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrapper h2 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 600;
}

.contact-form-wrapper p {
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
  font-size: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-info h2 {
  color: #2c3e50;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 600;
}
.contact-info a {
  text-decoration: none;
  color: #2c3e50;
}
.contact-info a:hover {
  text-decoration: underline;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7b2cbf, #1db584);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-details h4 {
  color: #2c3e50;
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
}

.contact-details p {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Map Section */
.map-section {
  padding: 80px 0;
}

.map-section h2 {
  color: #2c3e50;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(123, 44, 191, 0.1),
    rgba(29, 181, 132, 0.1)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #7b2cbf;
}

.map-placeholder p {
  margin-top: 20px;
  font-size: 18px;
  color: #666;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-form-wrapper h2,
  .contact-info h2,
  .map-section h2 {
    font-size: 24px;
  }

  .contact-form-wrapper p {
    font-size: 16px;
  }

  .contact-item {
    padding: 15px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-right: 15px;
  }

  .map-wrapper {
    height: 300px;
  }

  /* Solution Card Mobile */
  .solution-card {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .animated-placeholder {
    width: 240px;
    height: 170px;
    margin: 0 auto;
  }

  .placeholder-content {
    width: 150px;
    height: 110px;
  }

  .placeholder-content i {
    font-size: 2.5rem;
  }

  .solution-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .solution-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .slide {
    padding: 40px 20px;
    min-height: 350px;
  }
}
