:root {
  --lume-font: "Inter", sans-serif;
  --lume-black: #000000;
  --lume-white: #ffffff;
  --lume-dark: #0e1337;
  --lume-text: #05081d;
  --lume-text-light: #5b5f7b;
  --lume-bg-light: #f9f9f9;
  --lume-border: #e2e4f0;
  --container-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--lume-font);
  color: var(--lume-text);
  background-color: var(--lume-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--lume-dark);
}

/* ==========================================================================
   TEKRAR KULLANILABİLİR ELEMENTLER (Buton, Konteyner)
   ========================================================================== */
.lume-container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.lume-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--lume-dark);
  cursor: pointer;
  transition: all 0.25s ease;
  gap: 8px;
  text-decoration: none; /* a etiketleri için */
}

.lume-button--primary {
  background-color: var(--lume-dark);
  color: var(--lume-white);
}

.lume-button--primary:hover {
  background-color: #333;
  border-color: #333;
  transform: translateY(-2px);
}

.lume-button--secondary {
  background-color: var(--lume-white);
  color: var(--lume-dark);
  border-color: var(--lume-dark);
}

.lume-button--secondary:hover {
  background-color: var(--lume-dark);
  color: var(--lume-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO BÖLÜMÜNE ÖZEL STİLLER
   ========================================================================== */
.hero-section {
  padding: 120px 0 80px 0;
  text-align: center;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.05;
  filter: grayscale(100%);
}

.hero-section .lume-container {
  position: relative;
  z-index: 1;
}

/* Pricing Hero Badge */
.pricing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.85) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 10px 24px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out;
  box-shadow: 0 2px 12px rgba(10, 14, 39, 0.2);
}

.pricing-hero-badge .badge-icon {
  font-size: 20px;
  line-height: 1;
  color: #10b981;
}

.pricing-hero-badge .badge-text {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-content h1 {
  font-size: clamp(40px, 6vw, 64px);
  max-width: 950px;
  margin: 0 auto 24px auto;
  letter-spacing: -2px;
  font-weight: 800;
  color: #0a0e27;
}

.hero-content p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #6b7280;
  max-width: 700px;
  line-height: 1.6;
  margin: 0 auto 40px auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Grid Pattern Background - Subtle Animated */
.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background-image: 
    linear-gradient(to right, rgba(14, 19, 55, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 19, 55, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 1;
}

.hero-grid-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, #fafbfc 100%);
  animation: subtleBreath 6s ease-in-out infinite;
}

@keyframes subtleBreath {
  0%, 100% {
    opacity: 0.95;
  }
  50% {
    opacity: 0.85;
  }
}

.hero-grid-pattern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(14, 19, 55, 0.015) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(14, 19, 55, 0.015) 0%, transparent 50%);
  animation: gentleGlow 8s ease-in-out infinite alternate;
}

@keyframes gentleGlow {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  .hero-grid-pattern {
    background-size: 40px 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grid-pattern::before,
  .hero-grid-pattern::after {
    animation: none;
  }
}

/* ==========================================================================
   2. Kategori Seçim ve Fiyat Kartları Alanı
   ========================================================================== */

.pricing-content-section {
  padding: 80px 20px;
}

.pricing-category-selector {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}

.selector-btn {
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--lume-text);
  background-color: var(--lume-bg-light);
  border-radius: 30px;
  transition: all 0.3s ease;
  border: 1px solid var(--lume-border);
  cursor: pointer;
}

.selector-btn:hover {
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.selector-btn.active {
  background-color: var(--lume-dark);
  color: var(--lume-white);
  border-color: var(--lume-dark);
  box-shadow: 0 4px 15px rgba(14, 19, 55, 0.1);
  transform: translateY(-2px);
}

.selector-btn--special {
  background-color: var(--lume-dark);
  color: var(--lume-white);
  border-color: var(--lume-dark);
}

.selector-btn--special:hover {
  background-color: #333;
  border-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(14, 19, 55, 0.2);
}

.selector-btn--special.active {
  background-color: var(--lume-dark);
  border-color: var(--lume-dark);
  box-shadow: 0 4px 15px rgba(14, 19, 55, 0.3);
  transform: translateY(-2px);
}

.pricing-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  animation: fadeInGrid 0.6s ease-out;
}

.pricing-grid[data-category="ozel"] {
  grid-template-columns: 1fr;
  max-width: 650px;
  margin: 0 auto;
}

.pricing-grid[data-category="ozel"] .pricing-card {
  padding: 48px 40px;
}

.pricing-grid.active {
  display: grid;
}

@keyframes fadeInGrid {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-card {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 14, 39, 0.12);
  border-color: #d1d5db;
}

.pricing-card.highlighted {
  background: linear-gradient(135deg, #0a0e27 0%, #000000 100%);
  border-color: #0a0e27;
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(10, 14, 39, 0.2);
}

.pricing-card.highlighted:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 14, 39, 0.25);
}

.pricing-card.highlighted * {
  color: #ffffff !important;
}

.pricing-card.highlighted .plan-name,
.pricing-card.highlighted .price-value {
  color: #ffffff !important;
}

.pricing-card.highlighted .features-list li i {
  color: #ffffff !important;
}

.pricing-card.highlighted .card-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.badge-popular {
  position: absolute;
  top: -1px;
  right: -1px;
  background-color: var(--lume-dark);
  color: var(--lume-white);
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 0 16px 0 12px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(14, 19, 55, 0.15);
}

.pricing-card.highlighted .badge-popular {
  background-color: var(--lume-white);
  color: var(--lume-dark) !important;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.card-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  color: #0a0e27;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.plan-for {
  font-size: 15px;
  color: #6b7280;
  min-height: 40px;
  font-weight: 400;
  line-height: 1.5;
}

.plan-price {
  margin-bottom: 28px;
}

.price-value {
  font-size: 48px;
  font-weight: 800;
  color: #0a0e27;
  display: inline-block;
  letter-spacing: -1px;
}

.period {
  font-size: 16px;
  font-weight: 500;
  color: #9ca3af;
  margin-left: 8px;
}

.features-list {
  margin-bottom: 32px;
  flex-grow: 1;
  list-style: none;
  padding: 0;
}

.features-list li {
  font-size: 15px;
  color: #374151;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  line-height: 1.5;
}

.features-list li i {
  color: #10b981;
  margin-right: 12px;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.features-list li i.text-muted {
  color: #d1d5db;
}

.plan-cta {
  width: 100%;
  margin-top: auto;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.pricing-card.highlighted .plan-cta.primary,
.plan-cta.primary {
  background-color: #000000;
  color: #ffffff !important;
}

.pricing-card.highlighted .plan-cta.primary:hover {
  background-color: #1f2937;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.pricing-card.highlighted .plan-cta {
  background-color: #ffffff;
  color: #0a0e27 !important;
}

.pricing-card.highlighted .plan-cta:hover {
  background-color: #f3f4f6;
  color: #0a0e27 !important;
  transform: translateY(-1px);
}

/* ==========================================================================
   3. Özellik Karşılaştırma Tablosu (DESKTOP)
   ========================================================================== */

.comparison-tables-container {
  margin-top: 80px;
}

.comparison-section-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.comparison-table-wrapper {
  display: none;
  border: 1px solid var(--lume-border);
  border-radius: 8px;
  overflow: hidden;
  transition: opacity 0.4s ease-out;
}

.comparison-table-wrapper.active {
  display: block;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--lume-border);
}

.comparison-table thead th {
  background-color: var(--lume-bg-light);
  font-size: 18px;
  font-weight: 600;
  color: var(--lume-dark);
  text-align: center;
  border-right: 1px solid var(--lume-border);
  position: sticky;
  top: 0;
  z-index: 1;
}

.comparison-table thead th:first-child {
  text-align: left;
}
.comparison-table thead th:last-child {
  border-right: none;
}

.comparison-table tbody td {
  font-size: 15px;
  color: var(--lume-text-light);
  text-align: center;
  border-right: 1px solid var(--lume-border);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--lume-text);
}
.comparison-table tbody td:last-child {
  border-right: none;
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table .feature-category td {
  background-color: #f1f3f5;
  color: var(--lume-dark);
  font-weight: 600;
  text-align: left;
  font-size: 16px;
}

.comparison-table i.fa-check {
  color: #28a745;
  font-size: 1.2em;
}
.comparison-table i.fa-times {
  color: #dc3545;
  font-size: 1.2em;
}

.mh1 {
  text-align: center;
  font-size: 2em;
  background-color: var(--lume-bg-light);
  padding: 40px;
}
.mail-cta {
  background-color: var(--lume-bg-light);
  width: 100%;
  max-width: 42rem;
  margin: 80px auto;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.6rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  overflow: hidden;
  padding: 2rem;
  text-align: center;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.icon-background {
  width: 4rem;
  height: 4rem;
  background-color: #f3f4f6;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-svg {
  width: 2rem;
  height: 2rem;
  color: #4b5563;
}

.cta-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2.5rem;
  letter-spacing: -0.025em;
}

.email-link {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  letter-spacing: -0.025em;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.email-link:hover {
  color: #000;
}

.underline-effect {
  display: block;
  max-width: 0;
  transition: max-width 0.5s ease-in-out;
  height: 2px;
  background-color: #1f2937;
  margin-top: 0.25rem;
}

.email-link:hover .underline-effect {
  max-width: 100%;
}

.services-section {
  padding: 100px 0;
  background-color: #f9f9f9;
  /* var(--lume-bg-light) */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #ffffff;
  /* var(--lume-white) */
  border: 1px solid #e2e4f0;
  /* var(--lume-border) */
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Kartların aynı boyutta olmasını sağlamak için min-height eklendi */
  min-height: 140px;
  /* GSAP animasyonu için başlangıçta gizli olacak */
  opacity: 0;
  transform: translateY(40px);
}

.service-card:hover {
  transform: translateY(-5px) scale(1.02);
  /* Hover efektini biraz daha belirginleştirdim */
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0e1337;
  /* var(--lume-dark) */
  margin-bottom: 16px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #5b5f7b;
  /* var(--lume-text-light) */
  /* flex-grow kaldırıldı, böylece kart yüksekliği p içeriğine göre değişmez */
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

/* --- Geniş Tablet ve Altı (992px) --- */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card.highlighted {
    transform: scale(1);
  }
  .pricing-card.highlighted:hover {
    transform: translateY(-10px);
  }

  /* ==========================================================================
       YENİ: MOBİL İÇİN TABLOYU KARTLARA DÖNÜŞTÜRME
       ========================================================================== */
  .comparison-table-wrapper {
    overflow-x: initial;
    border: none;
    background-color: transparent;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100% !important;
  }

  .comparison-table tr {
    margin-bottom: 20px;
    border: 1px solid var(--lume-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
  }

  .comparison-table tr:last-of-type {
    margin-bottom: 0;
  }

  .comparison-table td {
    padding: 14px 15px;
    text-align: right;
    position: relative;
    border: none;
    border-bottom: 1px solid var(--lume-border);
    padding-left: 50%;
  }

  .comparison-table tr td:last-child {
    border-bottom: none;
  }

  .comparison-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: calc(50% - 20px);
    font-weight: 500;
    text-align: left;
    color: var(--lume-text);
  }

  .comparison-table td:first-child {
    background-color: var(--lume-bg-light);
    font-weight: 700;
    text-align: center;
    color: var(--lume-dark);
    padding: 12px 15px;
  }

  .comparison-table td:first-child::before {
    display: none;
  }

  .comparison-table tr.feature-category {
    border: none;
    background-color: transparent;
    margin-bottom: 5px;
    border-radius: 0;
    margin-top: 15px;
    box-shadow: none;
  }

  .comparison-table tr.feature-category:first-of-type {
    margin-top: 0;
  }

  .comparison-table tr.feature-category td {
    background-color: transparent;
    color: var(--lume-dark);
    font-weight: 700;
    font-size: 1.3rem;
    text-align: center;
    padding: 10px 0;
    border: none;
  }

  .comparison-table .cta-row {
    display: none;
  }
}

/* --- Tablet ve Telefonlar (768px) --- */
@media (max-width: 768px) {
  .hero-section,
  .page-hero-section.service-hero {
    padding: 80px 20px 60px 20px;
  }

  .pricing-hero-badge {
    padding: 8px 18px;
    margin-bottom: 24px;
  }

  .pricing-hero-badge .badge-text {
    font-size: 13px;
  }

  .pricing-content-section {
    padding: 60px 20px;
  }

  .hero-content h1,
  .page-hero-title {
    font-size: clamp(36px, 10vw, 48px);
  }
  .page-hero-subtitle {
    font-size: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .lume-button {
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* --- Sadece Telefonlar (640px) --- */
@media (max-width: 640px) {
  .mail-cta {
    padding: 2rem;
    margin: 40px auto;
    width: calc(100% - 2rem);
    max-width: none;
  }
  .cta-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .email-link {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

/* --- Küçük Telefonlar (480px) --- */
@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .lume-button {
    width: 100%;
    max-width: 300px;
  }

  .pricing-card {
    padding: 25px;
  }
  .plan-price .price-value {
    font-size: 36px;
  }

  .mail-cta {
    padding: 1.5rem;
    margin: 30px auto;
    width: calc(100% - 1.5rem);
  }
  .cta-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .cta-container {
    padding: 2rem 1.5rem;
  }
  .cta-container .heading {
    font-size: 30px;
  }
  .button-group {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-container .btn {
    width: 100%;
  }
}

/* ==========================================================================
   CONTACT CTA SECTION (Modern Intercom Style)
   ========================================================================== */
.contact-cta-section {
  padding: 80px 0 100px;
  background-color: #f9fafb;
}

.contact-cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 24px;
  border: 1px solid #d1d5db;
  padding: 4rem;
  overflow: hidden;
  position: relative;
}

/* Arkaplan Grid */
.cta-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
      #e5e7eb 0 1px,
      transparent 1px 100%
    ),
    repeating-linear-gradient(90deg, #e5e7eb 0 1px, transparent 1px 100%);
  background-size: 40px 40px;
  background-position: center;
  opacity: 0.7;
  z-index: 1;
  border-radius: 24px;
}

/* Arkaplan Spotlight Efekti */
.cta-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 1) 80%
  );
  z-index: 2;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 1.5rem;
  position: relative;
  z-index: 3;
}

.text-content {
  z-index: 10;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
}

.cta-container .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #f9fafb;
  border: 1px solid #d1d5db;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
}

.cta-container .badge svg {
  width: 16px;
  height: 16px;
  color: #172554;
}

.cta-container .heading {
  font-size: 42px;
  font-weight: 800;
  margin: 1rem 0;
  line-height: 1.2;
  color: #111827;
  background-image: linear-gradient(90deg, #111827, #374151);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.button-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-container .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.cta-container .btn-primary {
  background-color: #172554;
  color: #ffffff;
  border-color: #172554;
}

.cta-container .btn-primary:hover {
  background-color: #1e3a8a;
  border-color: #1e3a8a;
  transform: translateY(-2px);
}

/* Responsive için ek medya sorguları */
@media (max-width: 900px) {
  .contact-cta-section {
    padding: 60px 0 80px;
  }

  .cta-container {
    padding: 2.5rem;
  }

  .cta-container .heading {
    font-size: 36px;
  }
}

/* ==========================================================================
   BESPOKE SOLUTIONS SECTION (Özel Çözüm Kartı)
   ========================================================================== */
.bespoke-solutions-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.bespoke-solutions-section.dark-gradient {
  background: linear-gradient(135deg, #0e1337 0%, #1a1f4d 50%, #0e1337 100%);
  color: var(--lume-white);
}

.bespoke-solutions-section.dark-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  pointer-events: none;
}

.bespoke-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bespoke-header {
  margin-bottom: 40px;
}

.bespoke-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: inherit;
}

.bespoke-solutions-section.dark-gradient .bespoke-title {
  color: var(--lume-white);
}

.bespoke-subtitle {
  font-size: 22px;
  opacity: 0.9;
  margin: 0;
}

.bespoke-body {
  margin-bottom: 50px;
}

.bespoke-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.85;
}

.bespoke-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 0 auto;
  max-width: 800px;
}

.bespoke-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.bespoke-solutions-section.dark-gradient .bespoke-feature-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.bespoke-feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.bespoke-feature-item i {
  color: #10b981;
  font-size: 20px;
  flex-shrink: 0;
}

.bespoke-feature-item span {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.bespoke-footer {
  margin-top: 50px;
}

.bespoke-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 700;
  background: var(--lume-white);
  color: var(--lume-dark);
  border: 2px solid var(--lume-white);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bespoke-cta:hover {
  background: transparent;
  color: var(--lume-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.bespoke-cta i {
  transition: transform 0.3s ease;
}

.bespoke-cta:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .bespoke-solutions-section {
    padding: 60px 0;
  }

  .bespoke-title {
    font-size: 36px;
  }

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

  .bespoke-description {
    font-size: 16px;
  }

  .bespoke-features {
    grid-template-columns: 1fr;
  }

  .bespoke-cta {
    padding: 16px 32px;
    font-size: 16px;
  }
}


