@import url("https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root :root {
  --brand-dark: #0e1337;
  --brand-text: #05081d;
  --brand-text-light: #5b5f7b;
  --brand-bg: #f8f9fa;
  --brand-border: #e2e4f0;
  --brand-accent-blue: #4a47e4;
  --brand-accent-purple: #7209b7;
  --brand-error: #e53e3e;
  --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;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "K2D", sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #222222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* Body'nin en az ekran yüksekliği kadar olmasını sağlar */
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

::selection {
  background-color: #132175;
  color: #ffffff;
  /* Saf beyaz, maksimum kontrast için */
}

::-moz-selection {
  background-color: #132175;
  color: #ffffff;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-weight: 600;
  background-color: transparent;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  color: #111111;
  margin-top: 0;
}

sup {
  margin-top: 13px;
  font-size: 11px;
  font-weight: bold;
}

.main-header {
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 60px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Desktop Navigation - Çift Sütunlu Yapı */
.nav-links.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links .nav-group {
  display: flex;
  align-items: center;
}

.nav-links .nav-group-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links .nav-group-list li {
  position: relative;
  white-space: nowrap;
}

.nav-links .nav-group-list li a {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color 0.2s ease, background-color 0.2s ease;
  border-radius: 6px;
  text-decoration: none;
}

.nav-links .nav-group-list li a i.nav-arrow {
  margin-left: 6px;
  font-size: 0.65em;
  transition: transform 0.25s ease-in-out;
}

.nav-links .nav-group-list li.has-megamenu:hover > a .nav-arrow {
  transform: rotate(180deg);
}

.nav-links .nav-group-list li a:hover {
  color: #000000;
  background-color: #f5f5f5;
}

/* Eski yapı için backward compatibility */
.nav-links:not(.desktop-nav) {
  display: flex;
  align-items: center;
}

.nav-links:not(.desktop-nav) li {
  margin-right: 20px;
}

.nav-links:not(.desktop-nav) li a {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 0;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links:not(.desktop-nav) li a i.nav-arrow {
  margin-left: 5px;
  font-size: 0.6em;
  transition: transform 0.25s ease-in-out;
}

.nav-links:not(.desktop-nav) li.has-megamenu:hover > a .nav-arrow {
  transform: rotate(180deg);
}

.nav-links:not(.desktop-nav) li a:hover {
  color: #000000;
}

.nav-separator {
  color: #dddddd;
  margin-right: 20px;
}

.navbar-right {
  display: flex;
  align-items: center;
}

.logo {
  font-family: "K2D";
  font-weight: bold;
  padding-right: 40px;
  display: flex;
  font-size: 2em;
  padding-bottom: 8px;
}

.footer-logo {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 15px;
  text-align: center;
}

.lang-button {
  background: none;
  border: 1px solid #cccccc;
  padding: 8px 12px;
  margin-right: 15px;
  border-radius: 10px;
  font-size: 14px;
  color: #333333;
}

.lang-button:hover {
  background-color: #f0f0f0;
}

.lang-button i {
  margin-right: 5px;
}

.login-button {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 15px;
  margin-right: 10px;
  background-color: transparent;
  border: 1px solid transparent;
}

.login-button:hover {
  text-decoration: underline;
  color: #333333;
}

.cta-button {
  background-color: #000000;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}

.cta-button:hover {
  background-color: #333333;
  transform: translateY(-1px);
}

.hamburger-menu-button {
  display: none;
  background: none;
  border: none;
  color: #222222;
  font-size: 22px;
  padding: 8px 10px;
  cursor: pointer;
  margin-left: 10px;
  line-height: 1;
  z-index: 1100;
}

.hamburger-menu-button .icon-close {
  display: none;
}

.hamburger-menu-button .icon-hamburger {
  display: inline;
}

.mobile-nav-menu {
  display: block;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.3s ease-out 0.1s, visibility 0s linear 0.4s;
}

.mobile-nav-menu.active {
  max-height: calc(100vh - 60px);
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
  transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.2s ease-in, visibility 0s linear 0s;
}

.mobile-nav-menu ul {
  padding: 10px 0;
}

.mobile-nav-menu ul li a {
  display: block;
  padding: 15px 25px;
  color: #222222;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-menu ul li:last-child a {
  border-bottom: none;
}

.mobile-nav-menu ul li a:hover {
  background-color: #f8f8f8;
  color: #000000;
}

.nav-separator-mobile {
  height: 1px;
  background-color: #eeeeee;
  margin: 10px 25px;
}

/* Mega Menu Positioning - Çift sütun yapısı için düzeltme */
.nav-links .nav-group-list li.has-megamenu {
  position: relative;
}

.mega-menu-panel {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 400px;
  max-width: 450px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0s linear 0.3s;
  pointer-events: none;
  will-change: opacity;
}

.nav-links .nav-group-list li.has-megamenu:hover .mega-menu-panel {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.mega-menu-panel .mega-menu-content.container {
  max-width: 100%;
  padding: 24px 30px;
  display: flex;
  gap: 25px;
}

.mega-menu-panel.small-panel {
  min-width: 480px;
  max-width: 700px;
}

.mega-menu-panel.small-panel .mega-menu-content.container {
  max-width: 100%;
}

.mega-menu-main-links {
  display: flex;
  gap: 35px;
  flex-grow: 1;
}

.mega-menu-main-links .links-column {
  flex: 1;
  min-width: 180px;
}

.mega-menu-main-links .links-column h4 {
  font-size: 11px;
  color: #6c757d;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.9px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eaeaea;
  min-width: 180px;
  display: block;
}

.mega-menu-main-links .links-column ul li {
  margin-bottom: 3px;
}

.mega-menu-main-links .links-column ul li a {
  display: block;
  padding: 7px 10px;
  margin: 0 -10px 3px -10px;
  color: #2c3e50;
  transition: color 0.15s ease, background-color 0.15s ease,
    padding-left 0.2s ease;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
}

.mega-menu-main-links .links-column ul li a:hover {
  color: #000000;
  background-color: #f0f2f5;
  padding-left: 15px;
}

.mega-menu-main-links .link-title {
  display: inline;
  font-weight: 500;
}

.mega-menu-main-links .link-arrow {
  font-size: 0.7em;
  margin-left: 4px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega-menu-main-links .links-column ul li a:hover .link-arrow {
  opacity: 0.85;
  transform: translateX(0);
}

.mega-menu-main-links .link-description {
  display: block;
  font-size: 12px;
  color: #5f6c7b;
  font-weight: 400;
  line-height: 1.35;
  margin-top: 2px;
}

.mega-menu-featured-column {
  min-width: 410px;
  flex-grow: 1;
  margin-left: 25px;
  padding-left: 25px;
  border-left: 1px solid #e5e5e5;
  display: flex;
  /* İçeriği dikey olarak ortalamak için */
  align-items: center;
  /* İçeriği dikey olarak ortalamak için */
}

.featured-block-premium {
  width: 100%;
  background-color: #1a1d24;
  color: #ffffff;
  padding: 50px 50px;
  border-radius: 6px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.featured-block-premium h3 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.featured-block-premium p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #ced4da;
  margin-bottom: 20px;
  flex-grow: 1;
}

.cta-button-dark {
  display: inline-block;
  background-color: #495057;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 13.5px;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  margin-bottom: 20px;
}

.cta-button-dark:hover {
  background-color: #5a6268;
  transform: translateY(-1px);
}

.featured-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #303642;
}

.featured-logos img {
  height: 24px;
  max-width: 65px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) invert(1) opacity(0.5);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.featured-logos img:hover {
  filter: grayscale(0%) brightness(0) invert(1) opacity(0.9);
}

/* Hero Rotating Text */
.hero-headline .rotating-text {
  display: inline-block;
  color: var(--lume-dark);
  min-height: 1.2em;
  vertical-align: bottom;
}

.rotating-text-fade-in {
  animation: fadeIn 0.6s ease-in;
}

.rotating-text-fade-out {
  animation: fadeOut 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-section {
  background-color: var(--lume-bg-light);
  padding: 10px 10px;
  min-height: calc(70vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
  max-width: 550px;
  animation: fadeInText 1s ease-out forwards;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  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: 8px 18px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
  box-shadow: 0 2px 12px rgba(10, 14, 39, 0.2);
}

.hero-badge .badge-icon {
  font-size: 18px;
  line-height: 1;
}

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

.hero-headline {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-headline .highlight {
  color: #000000;
}

.hero-subheadline {
  font-size: 18px;
  color: #444444;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-cta-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 12px 25px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-width: 2px;
  border-style: solid;
}

.cta-primary {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
  position: relative;
  overflow: hidden;
}

.cta-primary:hover {
  background-color: #333333;
  border-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-primary:active {
  transform: scale(0.98) translateY(-1px);
}

.cta-secondary {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}

.cta-secondary i {
  margin-left: 8px;
}

.cta-secondary:hover {
  background-color: #f0f0f0;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-microcopy {
  font-size: 13px;
  color: #666666;
  font-weight: 400;
}

.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInVisual 1.2s ease-out forwards;
  min-width: 0;
}

@keyframes fadeInVisual {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Professional Visual Box */
.pro-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 320.66px;
  background: linear-gradient(
    180deg,
    #0a0e27 0%,
    #0e1337 25%,
    #1a1f3a 50%,
    #0d1128 75%,
    #080b1a 100%
  );
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text Stack */
.pro-visual .text-stack {
  position: relative;
  text-align: center;
  z-index: 10;
  padding: 0 40px;
}

.pro-visual .text-line {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.5px;
}

.pro-visual .text-line:nth-child(1) {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
}

.pro-visual .text-line:nth-child(2) {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
}

.pro-visual .text-line:nth-child(3) {
  position: relative;
  display: inline-block;
  padding: 10px 28px;
  margin-top: 2px;
}

/* Highlight box */
.pro-visual .highlight-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-1deg);
  width: 102%;
  height: 105%;
  border: 2px solid #2d3e5f;
  border-radius: 10px;
  background: rgba(14, 19, 55, 0.3);
  backdrop-filter: blur(8px);
  z-index: -1;
  box-shadow: 0 4px 20px rgba(45, 62, 95, 0.4);
}

/* Gradient text */
.pro-visual .gradient-text {
  background: linear-gradient(90deg, #3d5a80 0%, #6b8cae 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  font-size: 0.9em;
}

/* Background Growth Chart */
.pro-visual .growth-chart {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  height: 120px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.pro-visual .chart-bar {
  flex: 1;
  background: linear-gradient(
    180deg,
    rgba(61, 90, 128, 0.25),
    rgba(45, 62, 95, 0.1)
  );
  border-radius: 4px 4px 0 0;
  position: relative;
  animation: growBar 1.5s ease-out forwards,
    pulseChart 4s ease-in-out 2s infinite;
  transform-origin: bottom;
  border-top: 2px solid #3d5a80;
}

.pro-visual .chart-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(107, 140, 174, 0.4);
  border-radius: 4px 4px 0 0;
}

.pro-visual .chart-bar:nth-child(1) {
  height: 35%;
  animation-delay: 0.1s, 2.1s;
}
.pro-visual .chart-bar:nth-child(2) {
  height: 50%;
  animation-delay: 0.2s, 2.2s;
}
.pro-visual .chart-bar:nth-child(3) {
  height: 45%;
  animation-delay: 0.3s, 2.3s;
}
.pro-visual .chart-bar:nth-child(4) {
  height: 65%;
  animation-delay: 0.4s, 2.4s;
}
.pro-visual .chart-bar:nth-child(5) {
  height: 80%;
  animation-delay: 0.5s, 2.5s;
}
.pro-visual .chart-bar:nth-child(6) {
  height: 75%;
  animation-delay: 0.6s, 2.6s;
}
.pro-visual .chart-bar:nth-child(7) {
  height: 95%;
  animation-delay: 0.7s, 2.7s;
}

@keyframes growBar {
  from {
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes pulseChart {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.7;
    transform: scaleY(0.95);
  }
}

.problem-solution-section.modern-variant {
  padding: 90px 0;
  background-color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.problem-solution-section.modern-variant::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0e0e0 50%, transparent);
}

.problem-solution-section.modern-variant .container {
  max-width: 1200px;
}

.problem-solution-section.modern-variant .section-header {
  margin-bottom: 60px;
}

/* Section title/subtitle global sistemden alınıyor */

/* Challenge-Solution Row */
.problem-solution-grid {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

.challenge-solution-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 25px;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.challenge-solution-row:nth-child(1) {
  animation-delay: 0.1s;
}
.challenge-solution-row:nth-child(2) {
  animation-delay: 0.2s;
}
.challenge-solution-row:nth-child(3) {
  animation-delay: 0.3s;
}

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

.problem-card,
.solution-card {
  border-radius: 12px;
  padding: 28px;
  text-align: left;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Problem Card Styles */
.problem-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.problem-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: #d8d8d8;
}

/* Solution Card Styles */
.solution-card {
  background: linear-gradient(135deg, #000000 10%, #030307 90%);
  border: 1px solid #2a2e36;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.solution-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
  border-color: #3a3f47;
}

/* Card Icons */
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.problem-icon {
  background: #f8f9fa;
  color: #666666;
  border: 1px solid #e8e8e8;
}

.solution-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.problem-card:hover .problem-icon {
  transform: scale(1.05);
  background: #e9ecef;
  color: #333333;
}

.solution-card:hover .solution-icon {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Card Content */
.card-content {
  flex: 1;
}

.card-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.problem-card .card-content h3 {
  color: #1a1a1a;
}

.solution-card .card-content h3 {
  color: #ffffff;
}

.card-content p {
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.problem-card .card-content p {
  color: #666666;
}

.solution-card .card-content p {
  color: #ced4da;
}

/* Solution Arrow */
.solution-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #000000;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.challenge-solution-row:hover .solution-arrow {
  opacity: 1;
  transform: translateX(5px);
}

/* Section CTA */
.section-cta {
  margin-top: 60px;
  text-align: center;
}

.cta-button-primary {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  border: 1px solid #000000;
}

.cta-button-primary:hover {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cta-note {
  margin-top: 12px;
  font-size: 13px;
  color: #888888;
  font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .challenge-solution-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  /* Mobilde arrow aşağıyı gösterir */
  .solution-arrow {
    display: flex;
    transform: rotate(90deg);
    margin: 12px 0;
  }

  /* Problem card üstte */
  .problem-card {
    border-radius: 12px 12px 0 0;
    border-bottom: 2px dashed #e0e0e0;
    margin-bottom: 0;
  }

  /* Solution card altta, direkt bağlı */
  .solution-card {
    border-radius: 0 0 12px 12px;
    margin-top: 0;
  }

  /* Kartlar arası birleşik görünüm */
  .challenge-solution-row + .challenge-solution-row {
    margin-top: 30px;
  }

  .problem-card,
  .solution-card {
    padding: 24px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .problem-solution-section.modern-variant {
    padding: 50px 0;
  }

  .problem-solution-section.modern-variant .section-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .problem-solution-section.modern-variant .section-subtitle {
    font-size: 15px;
    margin-bottom: 35px;
  }

  .problem-card,
  .solution-card {
    padding: 20px 18px;
  }

  .card-icon {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .card-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .card-content p {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .section-cta {
    margin-top: 35px;
  }

  .cta-button-primary {
    padding: 14px 28px;
    font-size: 14.5px;
  }

  .cta-note {
    font-size: 12px;
  }
}

/* Yeni İnteraktif Hizmetler İçerik Alanı */
.interactive-services-content {
  display: flex;
  gap: 95px;
  /* Butonlar ve içerik arası boşluk artırıldı (40px -> 50px) */
  align-items: flex-start;
  background-color: #ffffff;
  /* DEĞİŞİKLİK: İçeriğin ana gövdesini daha belirgin yapmak için arka planı saf beyaza çevrildi */
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  /* DEĞİŞİKLİK: Gölge daha yumuşak ve yaygın hale getirildi */
  padding: 30px;
  /* İç padding artırıldı (25px -> 30px), yatayda daha geniş */
  border: 1px solid #e9ecef;
  /* DEĞİŞİKLİK: Arka plan beyaz olduğu için daha görünür ama yumuşak bir sınır eklendi */
  min-height: 450px;
  /* Minimum yükseklik biraz daha azaltıldı (480px -> 450px) */
  position: relative;
}

.services-selector {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 200px;
  /* Minimum genişlik biraz daha azaltıldı (220px -> 200px) */
  padding-right: 25px;
  /* Sağ padding artırıldı (20px -> 25px) */
  border-right: 1px solid #f0f0f0;
}

.service-tab {
  background-color: transparent;
  border: none;
  padding: 14px 18px;
  /* Padding ayarlandı (15px 20px -> 14px 18px) */
  margin-bottom: 7px;
  /* Butonlar arası boşluk ayarlandı (8px -> 7px) */
  border-radius: 4px;
  font-size: 16px;
  /* Font boyutu biraz azaltıldı (17px -> 16px) */
  font-weight: 500;
  color: #333333;
  /* DEĞİŞİKLİK: Okunabilirlik için renk biraz koyulaştırıldı */
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
  /* EKLENDİ: box-shadow geçişi eklendi */
  display: flex;
  align-items: center;
}

.service-tab:hover {
  background-color: #f0f0f0;
  color: #1a1a1a;
  transform: translateX(5px);
}

.service-tab.active {
  background-color: var(--primary-color, #000000);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  /* DEĞİŞİKLİK: Gölge daha yumuşak hale getirildi */
  transform: translateX(0);
}

.service-tab.active:hover {
  background-color: var(--primary-color-dark, #333333);
  color: #ffffff;
  transform: translateX(0);
  /* GELİŞTİRME: Aktif tab hover durumunda X ekseninde hareket etmemesi için eklendi */
}

.service-details-display {
  flex-grow: 1;
  position: relative;
  min-height: 380px;
  /* Minimum yükseklik daha da azaltıldı (420px -> 380px) */
  transition: min-height 0.3s ease;
}

.service-detail-panel {
  display: none;
  animation: fadeInScale 0.5s ease-out forwards;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 15px;
  /* Padding azaltıldı (20px -> 15px) */
}

.service-detail-panel.active {
  display: block;
  position: static;
  /* DEĞİŞİKLİK: Animasyon bittikten sonra static olması daha iyi, ancak 'absolute' kalması gerekiyorsa eski haline getirin. Genelde static daha öngörülebilir. */
  animation: none;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.98) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.panel-title {
  font-size: 24px;
  /* Font boyutu biraz azaltıldı (32px -> 30px) */
  margin-bottom: 10px;
  /* Boşluk azaltıldı (15px -> 12px) */
  text-align: left;
  color: #222222;
  /* EKLENDİ: Başlık rengi eklendi */
}

.panel-description {
  font-size: 15px;
  /* Font boyutu biraz azaltıldı (16px -> 15px) */
  line-height: 1.6;
  /* Satır yüksekliği biraz azaltıldı (1.7 -> 1.6) */
  margin-bottom: 25px;
  /* Boşluk azaltıldı (30px -> 25px) */
  text-align: left;
  color: #555555;
  /* EKLENDİ: Paragraf rengi eklendi */
}

.diagram-placeholder {
  width: 100%;
  background-color: #f8f8f8;
  border-radius: 8px;
  position: relative;
  padding: 20px 25px;
  /* Yatay padding artırıldı (20px -> 25px), dikeyde azaltıldı (25px -> 20px) */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
  /* Boşluk azaltıldı (30px -> 25px) */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #e0e0e0;
  background-image: linear-gradient(to right, #e9e9e9 1px, transparent 1px),
    /* DEĞİŞİKLİK: Izgara rengi biraz daha yumuşatıldı */
      linear-gradient(to bottom, #e9e9e9 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
}

/* Diyagram Adım Öğesi */
.diagram-step-item {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  padding: 10px 18px;
  /* Padding ayarlandı (12px 20px -> 10px 18px) */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 90%;
  /* Kutuların yatayda daha fazla yayılması için artırıldı (85% -> 90%) */
  width: fit-content;
  /* GELİŞTİRME: İçeriğe göre genişlik alması için bırakıldı, gerekirse %100 yapılabilir. */
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.diagram-step-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.step-counter {
  background-color: var(--primary-color, #000000);
  /* DEĞİŞİKLİK: Ana renk değişkeni kullanıldı */
  color: #ffffff;
  width: 26px;
  /* Boyut küçültüldü (28px -> 26px) */
  height: 26px;
  /* Boyut küçültüldü */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  /* Font küçültüldü (14px -> 13px) */
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 10px;
  /* Boşluk ayarlandı (12px -> 10px) */
  border: 2px solid #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.step-content-box {
  flex-grow: 1;
  text-align: left;
  margin-right: 0px;
  /* Boşluk ayarlandı (15px -> 12px) */
}

.step-content-box .step-title {
  display: flex;
  font-size: 15px;
  /* Font küçültüldü (16px -> 15px) */
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1px;
  /* Boşluk azaltıldı (2px -> 1px) */
  text-align: center;
  justify-content: center;
}

.step-content-box .step-description {
  display: block;
  font-size: 16px;
  /* Font küçültüldü (13px -> 12px) */
  color: #555555;
  line-height: 1.2;
  /* Satır yüksekliği azaltıldı (1.3 -> 1.2) */
}

.step-icon-right {
  font-size: 18px;
  /* Font ayarlandı (20px -> 18px) */
  color: var(--primary-color, #000000);
  flex-shrink: 0;
}

/* Diyagram Okları */
.diagram-arrow {
  font-size: 22px;
  /* Font küçültüldü (24px -> 22px) */
  color: #bbbbbb;
  /* DEĞİŞİKLİK: Ok rengi biraz koyulaştırıldı */
  line-height: 1;
  margin: 8px 0;
  /* Adımlar arası boşluk azaltıldı (10px -> 8px) */
  z-index: 1;
}

.panel-cta {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  /* Diyagram ile buton arasına boşluk azaltıldı (25px -> 20px) */
}

.panel-cta .cta-button {
  padding: 10px 22px;
  font-size: 15px;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  display: inline-block;
  background-color: var(--primary-color, #000000);
  /* EKLENDİ: Buton için ana renk */
  color: #ffffff;
  /* EKLENDİ: Buton yazı rengi */
  border: none;
  /* EKLENDİ: Varsayılan border'ı kaldırmak için */
  cursor: pointer;
  /* EKLENDİ: Kullanıcı deneyimi için */
  text-decoration: none;
  /* EKLENDİ: <a> etiketi ise alt çizgiyi kaldırır */
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
  /* EKLENDİ: Geçiş efektleri */
}

.panel-cta .cta-button:hover {
  /* EKLENDİ: Buton hover durumu */
  background-color: var(--primary-color-dark, #333333);
  color: #ffffff;
  /* GELİŞTİRME: Hover durumunda yazı rengi tutarlılığı */
  transform: translateY(-2px);
  /* EKLENDİ: Hafif yukarı kalkma efekti */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  /* GELİŞTİRME: Hover'da daha belirgin gölge */
}

.features-section {
  padding-top: 30px;
  /* Dikey üst padding azaltıldı (60px -> 50px) */
  padding-bottom: 30px;
  /* Dikey alt padding azaltıldı (60px -> 50px) */
  background-color: #f8f9fa;
  text-align: center;
  overflow-x: hidden;
}

.features-container {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-section .section-subtitle {
  margin-bottom: 30px;
  font-size: 17px;
}

.features-section .section-title {
  font-size: 30px;
}

/* Yeni İnteraktif Hizmetler İçerik Alanı */
.interactive-services-content {
  display: flex;
  gap: 95px;
  /* Butonlar ve içerik arası boşluk artırıldı (40px -> 50px) */
  align-items: flex-start;
  background-color: #ffffff;
  /* DEĞİŞİKLİK: İçeriğin ana gövdesini daha belirgin yapmak için arka planı saf beyaza çevrildi */
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  /* DEĞİŞİKLİK: Gölge daha yumuşak ve yaygın hale getirildi */
  padding: 30px;
  /* İç padding artırıldı (25px -> 30px), yatayda daha geniş */
  border: 1px solid #e9ecef;
  /* DEĞİŞİKLİK: Arka plan beyaz olduğu için daha görünür ama yumuşak bir sınır eklendi */
  min-height: 450px;
  /* Minimum yükseklik biraz daha azaltıldı (480px -> 450px) */
  position: relative;
}

.services-selector {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 200px;
  padding-right: 25px;
  border-right: 1px solid #f0f0f0;
}

.service-tab {
  background-color: transparent;
  border: none;
  padding: 14px 18px;
  margin-bottom: 7px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
  /* EKLENDİ: box-shadow geçişi eklendi */
  display: flex;
  align-items: center;
}

.service-tab:hover {
  background-color: #f0f0f0;
  color: #1a1a1a;
  transform: translateX(5px);
}

.service-tab.active {
  background-color: var(--primary-color, #000000);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateX(0);
}

.service-tab.active:hover {
  background-color: var(--primary-color-dark, #333333);
  color: #ffffff;
  transform: translateX(0);
}

.service-details-display {
  flex-grow: 1;
  position: relative;
  min-height: 380px;
  /* Minimum yükseklik daha da azaltıldı (420px->380px) */
  transition: min-height 0.3s ease;
}

.service-detail-panel {
  display: none;
  animation: fadeInScale 0.5s ease-out forwards;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 15px;
  /* Padding azaltıldı (20px -> 15px) */
}

.service-detail-panel.active {
  display: block;
  position: static;
  animation: none;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.98) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.panel-title {
  font-size: 24px;
  /* Font boyutu biraz azaltıldı (32px -> 30px) */
  margin-bottom: 10px;
  /* Boşluk azaltıldı (15px -> 12px) */
  text-align: left;
  color: #222222;
  /* EKLENDİ: Başlık rengi eklendi */
}

.panel-description {
  font-size: 15px;
  /* Font boyutu biraz azaltıldı (16px -> 15px) */
  line-height: 1.6;
  /* Satır yüksekliği biraz azaltıldı (1.7 -> 1.6) */
  margin-bottom: 25px;
  /* Boşluk azaltıldı (30px -> 25px) */
  text-align: left;
  color: #555555;
  /* EKLENDİ: Paragraf rengi eklendi */
}

.diagram-placeholder {
  width: 100%;
  background-color: #f8f8f8;
  border-radius: 8px;
  position: relative;
  padding: 20px 25px;
  /* Yatay padding artırıldı (20px -> 25px), dikeyde azaltıldı (25px -> 20px) */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
  /* Boşluk azaltıldı (30px -> 25px) */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #e0e0e0;
  background-image: linear-gradient(to right, #e9e9e9 1px, transparent 1px),
    /* DEĞİŞİKLİK: Izgara rengi biraz daha yumuşatıldı */
      linear-gradient(to bottom, #e9e9e9 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
}

/* Diyagram Adım Öğesi */
.diagram-step-item {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  padding: 10px 18px;
  /* Padding ayarlandı (12px 20px -> 10px 18px) */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 90%;
  /* Kutuların yatayda daha fazla yayılması için artırıldı (85% -> 90%) */
  width: fit-content;
  /* GELİŞTİRME: İçeriğe göre genişlik alması için bırakıldı, gerekirse %100 yapılabilir. */
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.diagram-step-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.step-counter {
  background-color: var(--primary-color, #000000);
  /* DEĞİŞİKLİK: Ana renk değişkeni kullanıldı */
  color: #ffffff;
  width: 26px;
  /* Boyut küçültüldü (28px -> 26px) */
  height: 26px;
  /* Boyut küçültüldü */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  /* Font küçültüldü (14px -> 13px) */
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 10px;
  /* Boşluk ayarlandı (12px -> 10px) */
  border: 2px solid #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.step-content-box {
  flex-grow: 1;
  text-align: left;
  margin-right: 12px;
  /* Boşluk ayarlandı (15px -> 12px) */
}

.step-content-box .step-title {
  display: flex;
  font-size: 15px;
  /* Font küçültüldü (16px -> 15px) */
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1px;
  /* Boşluk azaltıldı (2px -> 1px) */
  text-align: center;
}

.step-content-box .step-description {
  display: block;
  font-size: 12px;
  /* Font küçültüldü (13px -> 12px) */
  color: #555555;
  line-height: 1.2;
  /* Satır yüksekliği azaltıldı (1.3 -> 1.2) */
}

.step-icon-right {
  font-size: 18px;
  /* Font ayarlandı (20px -> 18px) */
  color: var(--primary-color, #000000);
  flex-shrink: 0;
}

/* Diyagram Okları */
.diagram-arrow {
  font-size: 22px;
  /* Font küçültüldü (24px -> 22px) */
  color: #bbbbbb;
  /* DEĞİŞİKLİK: Ok rengi biraz koyulaştırıldı */
  line-height: 1;
  margin: 8px 0;
  /* Adımlar arası boşluk azaltıldı (10px -> 8px) */
  z-index: 1;
}

.panel-cta {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  /* Diyagram ile buton arasına boşluk azaltıldı (25px -> 20px) */
}

.panel-cta .cta-button {
  padding: 10px 22px;
  font-size: 15px;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  display: inline-block;
  background-color: var(--primary-color, #000000);
  /* EKLENDİ: Buton için ana renk */
  color: #ffffff;
  /* EKLENDİ: Buton yazı rengi */
  border: none;
  /* EKLENDİ: Varsayılan border'ı kaldırmak için */
  cursor: pointer;
  /* EKLENDİ: Kullanıcı deneyimi için */
  text-decoration: none;
  /* EKLENDİ: <a> etiketi ise alt çizgiyi kaldırır */
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
  /* EKLENDİ: Geçiş efektleri */
}

.panel-cta .cta-button:hover {
  /* EKLENDİ: Buton hover durumu */
  background-color: var(--primary-color-dark, #333333);
  color: #ffffff;
  /* GELİŞTİRME: Hover durumunda yazı rengi tutarlılığı */
  transform: translateY(-2px);
  /* EKLENDİ: Hafif yukarı kalkma efekti */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  /* GELİŞTİRME: Hover'da daha belirgin gölge */
}

.contact-banner-container {
  width: 100%;
  max-width: 950px;
}

/* Banner'ın ana gövdesi */
.contact-banner-content {
  /* === İSTEDİĞİN GRADIENT KODU BURAYA ENTEGRE EDİLDİ === */
  background: linear-gradient(105deg, #1e2a3d 0%, #4a586e 100%);

  color: #ffffff;
  border-radius: 18px;
  /* Yumuşak kenarlar */
  padding: 45px 55px;
  display: flex;
  justify-content: space-between;
  /* İçerikleri iki uca yaslar */
  align-items: center;
  /* Dikey olarak ortalar */
  gap: 30px;
  /* Esnek boşluk */
  box-shadow: 0 12px 35px rgba(42, 55, 78, 0.35);
  /* Derinlik hissi için gölge */
}

/* Sol taraftaki metin alanı */
.text-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.text-content p {
  font-size: 16px;
  margin: 0;
  color: #ced4da;
  /* Ana beyazdan daha yumuşak bir ton */
  max-width: 450px;
  /* Metnin çok uzamasını engeller */
}

/* Sağdaki Buton */
.contact-cta-button {
  display: inline-block;
  background: transparent;
  /* İçi boş */
  color: #ffffff;
  border: 2px solid #ffffff;
  /* Beyaz çerçeve */
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  /* Buton metninin alt satıra kaymasını engeller */
}

/* Butonun üzerine gelince (hover) efekti */
.contact-cta-button:hover {
  background: #ffffff;
  color: #1e2a3d;
  /* Gradient'in başlangıç rengiyle uyumlu metin rengi */
  transform: translateY(-3px);
  /* Hafif yukarı kalkma efekti */
}

/* Mobil ve Tablet Uyumluluğu */
@media (max-width: 768px) {
  .contact-banner-content {
    flex-direction: column;
    /* Öğeleri alt alta dizer */
    text-align: center;
    /* Metni ortalar */
    padding: 40px 30px;
  }

  .text-content {
    margin-bottom: 30px;
    /* Metin ve buton arasına boşluk koyar */
  }
}

/* === Ana Bölüm Stilleri === */
.how-it-works-section.modern-steps-layout {
  padding: 80px 0;
  background-color: var(--lume-bg-light);
  text-align: center;
}

.how-it-works-section.modern-steps-layout .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section title/subtitle global sistemden alınıyor */

/* === İki Sütunlu Yerleşim === */
.steps-layout-container {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  text-align: left;
}

.steps-visual-column {
  flex: 1 1 45%;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  transition: height 0.4s ease-out;
  border-radius: 16px;
}

.steps-accordion-column {
  flex: 1 1 55%;
}

.accordion-steps-container {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-item {
  background-color: #ffffff;
}

.accordion-item:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  background-color: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.accordion-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #0e1337, #1a2555);
  transition: width 0.3s ease;
}

.accordion-item.active > .accordion-header::after {
  animation: progressBar 8s linear forwards;
}

.accordion-item.active.auto-pause > .accordion-header::after {
  animation-play-state: paused;
}

@keyframes progressBar {
  from { width: 0%; }
  to { width: 100%; }
}

.accordion-item.active > .accordion-header,
.accordion-header:hover {
  background-color: #f8f9fa;
}

.accordion-step-number-container {
  display: flex;
  align-items: center;
  color: var(--lume-dark, #0e1337);
  margin-right: 15px;
  flex-shrink: 0;
  width: 2.2em;
  text-align: left;
}

.accordion-step-number {
  font-size: 16px;
  font-weight: 600;
}

.accordion-title {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  flex-grow: 1;
  line-height: 1.45;
}

.accordion-arrow {
  margin-left: 15px;
  font-size: 13px;
  color: #444444;
  transition: transform 0.3s ease-in-out;
  padding-left: 10px;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--lume-dark, #0e1337);
}

.accordion-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  background-color: #ffffff;
  padding-left: 25px;
  padding-right: 25px;
}

.accordion-item.active .accordion-content {
  padding-top: 15px;
  padding-bottom: 20px;
}

.step-description {
  font-size: 14.5px;
  color: #555555;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
  margin-left: calc(2.2em + 15px);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.accordion-visual-mobile {
  display: none;
  /* Mobilde gösterilecek */
}

/* === GSAP ANİMASYON ALANI STİLLERİ === */
#gsap-animation-container,
.accordion-visual-mobile {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#gsap-animation-container .anim-element,
.accordion-visual-mobile .anim-element {
  position: absolute;
  opacity: 0;
  transform-origin: center center;
  color: #212529;
  z-index: 1;
}

.icon-wrapper {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  z-index: 8;
}

.icon-wrapper svg {
  width: 65%;
  height: 65%;
  stroke: #495057;
  stroke-width: 1.5;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

/* === IDLE (BOŞTA KALMA) ANİMASYON STİLLERİ === */
#idle-animation-wrapper,
.accordion-visual-mobile #idle-animation-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}

.idle-background-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(14, 19, 55, 0.15) 0%,
    rgba(14, 19, 55, 0) 70%
  );
  border-radius: 50%;
}

.idle-number-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.idle-number {
  position: absolute;
  font-size: 48px;
  font-weight: 700;
  color: #495057;
  opacity: 0;
}

/* === ADIM 1: Tanışma ve İhtiyaç Analizi === */
#step1-person {
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

#step1-lume {
  top: 50%;
  right: 25%;
  transform: translate(50%, -50%);
  width: 80px;
  height: 80px;
}

#step1-dialogue {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #0e1337, #0a0e28);
  z-index: 9;
}

#step1-dialogue svg {
  stroke: #ffffff;
  stroke-width: 2;
}

.step1-items-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
  padding: 15px;
  box-sizing: border-box;
  z-index: 10;
}

.step1-item {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 1px solid #e9ecef;
  color: #495057;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-1 {
  grid-area: 1 / 1 / 2 / 2;
}

.item-2 {
  grid-area: 1 / 4 / 2 / 5;
}

.item-3 {
  grid-area: 4 / 1 / 5 / 2;
}

.item-4 {
  grid-area: 4 / 4 / 5 / 5;
}

.item-5 {
  grid-area: 2 / 1 / 3 / 2;
}

.item-6 {
  grid-area: 2 / 4 / 3 / 5;
}

.item-7 {
  grid-area: 3 / 1 / 4 / 2;
}

.item-8 {
  grid-area: 3 / 4 / 4 / 5;
}

/* === ADIM 2: Fikirden Tasarıma === */
#step2-design-tool {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #fd7e14, #dc6f02);
  z-index: 5;
}

#step2-design-tool svg {
  stroke: #ffffff;
  stroke-width: 2;
  width: 60%;
  height: 60%;
}

.step2-wireframe {
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid #adb5bd;
  border-radius: 8px;
  box-sizing: border-box;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 4;
}

.step2-wf-header {
  top: 12%;
  left: 18%;
  width: 64%;
  height: 14%;
}

.step2-wf-sidebar {
  top: 28%;
  left: 18%;
  width: 28%;
  height: 52%;
}

.step2-wf-main {
  top: 28%;
  left: 48%;
  width: 34%;
  height: 52%;
}

/* === ADIM 3: Geliştirme & Düzenleme === */
#step3-code-editor {
  width: 80%;
  height: 70%;
  top: 50%;
  left: 50%;
  background: #212529;
  border-radius: 8px;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.editor-header {
  height: 30px;
  background: #343a40;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.editor-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
}

.editor-header .dot:nth-child(1) {
  background: #ff5f56;
}

.editor-header .dot:nth-child(2) {
  background: #ffbd2e;
}

.editor-header .dot:nth-child(3) {
  background: #27c93f;
}

.editor-body {
  padding: 15px;
  font-family: "SF Mono", "Monaco", monospace;
  color: #ced4da;
  font-size: 14px;
}

.code-line {
  white-space: pre;
  margin: 0;
  opacity: 0;
}

.code-line .tag {
  color: #e83e8c;
}

.code-line .class {
  color: #fd7e14;
}

.code-line .comment {
  color: #6c757d;
}

.code-line .cursor {
  color: #f8f9fa;
  background: #f8f9fa;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    background: transparent;
  }
}

/* === ADIM 4: Yayına Alma ve Destek === */
#step4-rocket {
  bottom: -25%;
  left: 45%;
  transform: translateX(-50%) rotate(-45deg);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #0e1337, #1a2555);
  z-index: 10;
}

#step4-rocket svg {
  stroke: #ffffff;
  stroke-width: 1.5;
}

#step4-globe {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  z-index: 8;
}

#step4-globe svg {
  stroke: #0e1337;
  stroke-width: 1.5;
}

.pulse-dot {
  position: absolute;
  background-color: #0e1337;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  z-index: 9;
}

/* === RESPONSIVE DÜZENLEMELER === */
@media (max-width: 992px) {
  .steps-visual-column {
    display: none;
  }

  .steps-accordion-column {
    flex: 0 0 100%;
    max-width: 700px;
    margin: 0 auto;
  }

  .step-description {
    margin-left: 0;
  }

  .accordion-visual-mobile {
    display: block;
    min-height: 300px;
    margin-bottom: 20px;
    position: relative;
  }

  /* MOBİL ANİMASYON DÜZELTMELERİ */
  .accordion-visual-mobile .step1-items-grid {
    display: none;
  }

  .accordion-visual-mobile #step1-person,
  .accordion-visual-mobile #step1-lume,
  .accordion-visual-mobile #step1-dialogue {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .accordion-visual-mobile #step1-person,
  .accordion-visual-mobile #step1-lume {
    width: 60px;
    height: 60px;
  }

  .accordion-visual-mobile #step1-dialogue {
    width: 70px;
    height: 70px;
  }

  .accordion-visual-mobile #step3-code-editor {
    width: 95%;
    height: 85%;
  }

  .accordion-visual-mobile .editor-body {
    font-size: 11px;
    padding: 10px;
  }
}

/* Özel Kart Yerleşimleri (Grid pozisyonları bir öncekiyle aynı) */
.feature-card-v2.layout-item-tall-left {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.feature-card-v2.layout-item-top-right-1 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.feature-card-v2.layout-item-top-right-2 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.feature-card-v2.layout-item-mid-right-1 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.feature-card-v2.layout-item-mid-right-2 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.feature-card-v2.layout-item-full-bottom {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
}

/* Uzun ve Geniş Kartlardaki Görsel Alanları İçin Özel Yükseklikler */
.feature-card-v2.layout-item-tall-left .feature-card-visual-placeholder {
  min-height: 550px;
  /* İstediğin gibi x2 uzatıldı (Standart 160px'in iki katından fazla) */
}

.feature-card-v2.layout-item-full-bottom .feature-card-visual-placeholder {
  min-height: 180px;
}

/* INTEGRATIONS SECTION */
/* =============================================== */
/* ENTEGRASYONLAR BÖLÜMÜ - GÜNCELLENMİŞ STİLLER   */
/* =============================================== */

.integrations-section {
  padding: 80px 0;
  background-color: var(--lume-bg-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.integrations-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0e0e0 50%, transparent);
}

.integrations-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section title/subtitle global sistemden alınıyor */

/* Marquee Container */
.integrations-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
}

.integrations-marquee-wrapper::before,
.integrations-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.integrations-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fa 0%, transparent 100%);
}

.integrations-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fa 0%, transparent 100%);
}

.integrations-marquee {
  display: flex;
  gap: 24px;
  width: max-content; /* İçeriğin sığmasını garanti eder */
  animation: marqueeScroll 40s linear infinite; /* Süreyi biraz artırarak daha yumuşak bir akış sağladım */
  will-change: transform;
}

.integrations-marquee:hover {
  animation-play-state: paused;
}

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

.integrations-grid {
  display: none; /* Hide grid, using marquee instead */
}

.integration-item {
  background-color: #ffffff;
  padding: 28px 36px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e8e8e8;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  min-width: 180px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.integration-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.integration-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #d0d0d0;
}

.integration-item:hover::before {
  opacity: 1;
}

.integration-item img {
  max-width: 75%;
  max-height: 45px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.integration-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

.all-integrations-link-wrapper {
  text-align: center;
  margin-top: 50px;
}

.all-integrations-link-wrapper .cta-button-secondary-alt {
  color: #1a1a1a;
  border: 1px solid #d8d8d8;
  background-color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.all-integrations-link-wrapper .cta-button-secondary-alt:hover {
  border-color: #b8b8b8;
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Integrations Responsive */
@media (max-width: 768px) {
  .integrations-section {
    padding: 60px 0;
  }

  .integrations-section .section-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .integrations-section .section-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .integrations-marquee {
    animation-duration: 25s;
  }

  .integrations-marquee-wrapper::before,
  .integrations-marquee-wrapper::after {
    width: 60px;
  }

  .integration-item {
    height: 85px;
    min-width: 150px;
    padding: 20px 28px;
  }

  .integration-item img {
    max-height: 38px;
  }
}

@media (max-width: 480px) {
  .integrations-marquee {
    animation-duration: 20s;
  }

  .integrations-marquee-wrapper::before,
  .integrations-marquee-wrapper::after {
    width: 40px;
  }

  .integration-item {
    height: 75px;
    min-width: 130px;
    padding: 15px 20px;
  }

  .integration-item img {
    max-height: 32px;
  }
}

/* Reduced motion accessibility - Disabled for marquee to ensure visibility */
/* @media (prefers-reduced-motion: reduce) {
  .integrations-marquee {
    animation: none;
  }

  .integrations-marquee {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .integration-item {
    scroll-snap-align: start;
  }
} */

/* PRICING SECTION (Ana Sayfa) */
.pricing-section:not(.detailed-pricing-comparison-section) {
  /* Sadece ana sayfadaki fiyatlandırma bölümünü hedefler */
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.pricing-section:not(.detailed-pricing-comparison-section) .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-section:not(.detailed-pricing-comparison-section) .pricing-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  background-color: #e0e0e0;
  border-radius: 25px;
  padding: 5px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.pricing-section:not(.detailed-pricing-comparison-section) .toggle-btn {
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  background-color: transparent;
  border-radius: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
}

.pricing-section:not(.detailed-pricing-comparison-section) .toggle-btn.active {
  background-color: #000000;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-section:not(.detailed-pricing-comparison-section) .savings-badge {
  font-size: 0.75em;
  font-weight: 600;
  color: #333333;
  margin-left: 5px;
}

.pricing-section:not(.detailed-pricing-comparison-section) .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-section:not(.detailed-pricing-comparison-section) .pricing-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 35px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #eeeeee;
}

.pricing-section:not(.detailed-pricing-comparison-section) .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.pricing-section:not(.detailed-pricing-comparison-section)
  .pricing-card.highlighted {
  border: 2px solid #000000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.pricing-section:not(.detailed-pricing-comparison-section) .badge-popular {
  position: absolute;
  top: -1px;
  right: -1px;
  background-color: #000000;
  color: #ffffff;
  padding: 6px 20px 6px 15px;
  font-size: 13px;
  font-weight: 600;
  border-bottom-left-radius: 12px;
}

.pricing-section:not(.detailed-pricing-comparison-section) .card-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}

.pricing-section:not(.detailed-pricing-comparison-section) .plan-name {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.pricing-section:not(.detailed-pricing-comparison-section) .plan-for {
  font-size: 14px;
  color: #555555;
  min-height: 40px;
  font-weight: 400;
}

.pricing-section:not(.detailed-pricing-comparison-section) .plan-price {
  margin-bottom: 25px;
}

.pricing-section:not(.detailed-pricing-comparison-section) .price-value {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  display: none;
}

.pricing-section:not(.detailed-pricing-comparison-section)
  .price-value.monthly-price {
  display: inline-block;
}

.pricing-section:not(.detailed-pricing-comparison-section) .period {
  font-size: 16px;
  font-weight: 500;
  color: #555555;
  margin-left: 5px;
}

.pricing-section:not(.detailed-pricing-comparison-section) .features-list {
  margin-bottom: 30px;
  flex-grow: 1;
}

.pricing-section:not(.detailed-pricing-comparison-section) .features-list li {
  font-size: 15px;
  color: #333333;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.pricing-section:not(.detailed-pricing-comparison-section) .features-list li i {
  color: #000000;
  margin-right: 10px;
  font-size: 18px;
  flex-shrink: 0;
}

.pricing-section:not(.detailed-pricing-comparison-section)
  .features-list
  li
  i.text-muted {
  color: #aaaaaa;
}

.pricing-section:not(.detailed-pricing-comparison-section) .plan-cta {
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  text-align: center;
  display: block;
  background-color: #333333;
  color: #ffffff;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}

.pricing-section:not(.detailed-pricing-comparison-section) .plan-cta:hover {
  background-color: #000000;
  transform: translateY(-2px);
}

.pricing-section:not(.detailed-pricing-comparison-section)
  .pricing-card.highlighted
  .plan-cta,
.pricing-section:not(.detailed-pricing-comparison-section) .plan-cta.primary {
  background-color: #000000;
}

.pricing-section:not(.detailed-pricing-comparison-section)
  .pricing-card.highlighted
  .plan-cta:hover,
.pricing-section:not(.detailed-pricing-comparison-section)
  .plan-cta.primary:hover {
  background-color: #333333;
}

.pricing-section:not(.detailed-pricing-comparison-section).show-yearly
  .monthly-price {
  display: none;
}

.pricing-section:not(.detailed-pricing-comparison-section).show-yearly
  .yearly-price {
  display: inline-block;
}

.pricing-section:not(.detailed-pricing-comparison-section) .hero-microcopy {
  /* Ana sayfadaki fiyatlandırma için microcopy */
  font-size: 13px;
  color: #666666;
  font-weight: 400;
  margin-top: 20px;
}

.premium-showcase-section {
  background: linear-gradient(135deg, #000000 30%, #474747 70%);
  color: #ffffff;
  padding: 70px 20px 80px 20px;
  text-align: left;
}

.premium-showcase-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.premium-showcase-text {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  margin-right: 20px;
}

.premium-showcase-title {
  color: #ffffff !important;
  text-align: left !important;
  font-size: 30px !important;
  font-weight: 700;
  margin-bottom: 15px !important;
}

.premium-showcase-description {
  font-size: 16px;
  line-height: 1.75;
  color: #ced4da;
  margin-bottom: 30px;
}

.premium-showcase-section .cta-button-dark-bg {
  display: inline-block;
  background-color: #ffffff;
  color: #1a1d24;
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.premium-showcase-section .cta-button-dark-bg:hover {
  background-color: #e9ecef;
  color: #1a1d24;
  transform: translateY(-2px);
}

.premium-showcase-visual {
  flex: 1;
  min-width: 300px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-showcase-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.brand-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.brand-logos-row img {
  height: 32px;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) invert(1) opacity(0.5);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand-logos-row img:hover {
  filter: grayscale(0%) brightness(0) invert(1) opacity(0.9);
}

.faq-section {
  padding: 80px 20px;
  background-color: var(--lume-bg-light);
  text-align: center;
}

.faq-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section title/subtitle global sistemden alınıyor */

.faq-accordion {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background-color: #f9f9f9;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border: 1px solid #eeeeee;
}

.faq-question {
  background-color: transparent;
  width: 100%;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #222222;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background-color 0.2s ease;
}

.faq-question-text-content {
  flex-grow: 1;
  margin-right: 10px;
  word-break: break-word;
  hyphens: auto;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-icon {
  font-size: 16px;
  color: #000000;
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out;
  background-color: #ffffff;
}

.faq-answer p {
  padding: 20px 25px;
  font-size: 16px;
  line-height: 1.7;
  color: #444444;
  margin: 0;
  font-weight: 400;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.contact-form-section {
  padding: 100px 20px;
  background-color: #ffffff;
  /* White background for alternating pattern */
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  /* Sol sütun biraz daha dar */
  gap: 80px;
  /* Sütunlar arası boşluk */
  align-items: center;
  background-color: #ffffff;
  padding: 60px 80px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(80, 80, 120, 0.08);
}

.contact-form-left {
  text-align: left;
}

.form-subtitle {
  display: block;
  font-size: 20px;
  font-weight: 400;
  color: var(--lume-text-light);
  margin-top: 8px;
}

.trust-indicators {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--lume-text);
  padding: 10px 12px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 8px;
  border-left: 3px solid #10b981;
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(16, 185, 129, 0.1);
  transform: translateX(4px);
}

.trust-item i {
  color: #10b981;
  font-size: 18px;
  flex-shrink: 0;
}

.trust-item span {
  font-weight: 500;
}

.contact-avatars {
  display: flex;
  margin-bottom: 25px;
}

.contact-avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-avatars img:not(:first-child) {
  margin-left: -15px;
  /* Avatarları üst üste bindir */
}

.contact-form-title {
  font-size: 42px;
  /* Başlık boyutu */
  font-weight: 700;
  color: #1a1d24;
  line-height: 1.3;
  margin-bottom: 30px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--lume-dark, #0E1337);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.contact-badge i {
  font-size: 1.1em;
}

.contact-form-right {
  width: 100%;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .input-group {
  flex: 1;
  /* Alanların eşit yer kaplaması için */
  position: relative;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #dfe3e8;
  /* Hafif gri border */
  border-radius: 8px;
  font-size: 15px;
  font-family: "Inter", "K2D", sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #ffffff;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus {
  outline: none;
  border-color: #5353c6;
  box-shadow: 0 0 0 3px rgba(83, 83, 198, 0.15);
}

.contact-form input::placeholder {
  color: #9095a0;
}

.phone-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  padding-left: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-input-group:focus-within {
  /* Input focus olduğunda çerçeveyi de etkile */
  border-color: var(--lume-dark);
  box-shadow: 0 0 0 3px rgba(83, 83, 198, 0.15);
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333333;
  font-weight: 500;
  font-size: 15px;
  padding-right: 10px;
  border-right: 1px solid #dfe3e8;
  margin-right: 10px;
  flex-shrink: 0;
}

.phone-prefix img {
  width: 16px;
  height: auto;
}

.phone-input-group input[type="tel"] {
  border: none;
  /* Çerçeve dış dive taşındı */
  padding-left: 0;
  /* İç boşluk sıfırlandı */
  flex-grow: 1;
  /* Kalan alanı doldur */
}

.phone-input-group input[type="tel"]:focus {
  box-shadow: none;
  /* İç input focus gölgesi kaldırıldı */
}

.form-checkbox-row {
  margin-bottom: 30px;
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  accent-color: var(--lume-dark);
  /* Checkbox rengi */
  cursor: pointer;
}

.checkbox-group label {
  font-size: 13px;
  color: #555555;
}

.checkbox-group label a {
  color: #5353c6;
  text-decoration: underline;
}

.checkbox-group label a:hover {
  color: #3e3e9d;
}

.form-submit-row {
  justify-content: flex-end;
  /* Butonu sağa yasla */
}

.contact-submit-btn {
  background: linear-gradient(135deg, #000000 30%, #474747 70%);
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.contact-submit-btn:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(83, 83, 198, 0.3);
}

.form-message-container {
  padding: 15px 20px;
  margin-bottom: 20px;
  /* Formla arasında boşluk */
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.6;
  border-width: 1px;
  border-style: solid;
}

.form-message-container strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-message-container ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.form-message-container ul li {
  margin-bottom: 4px;
}

.form-message-container ul li:last-child {
  margin-bottom: 0;
}

.form-message-container.error {
  background-color: #fdecea;
  border-color: #f5c6cb;
  color: #721c24;
}

.form-message-container.error strong {
  color: #721c24;
  font-size: 1.05em;
}

.form-message-container.error ul {
  padding-left: 18px;
  list-style-type: disc;
  font-size: 0.95em;
}

.form-message-container.success {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border: 2px solid #10b981;
  color: #065f46;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.25);
  position: relative;
  overflow: hidden;
  animation: successSlideIn 0.5s ease-out;
}

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

.form-message-container.success::before {
  content: '✓';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 56px;
  color: rgba(16, 185, 129, 0.2);
  font-weight: bold;
  animation: checkmarkPulse 1.5s ease-in-out infinite;
}

@keyframes checkmarkPulse {
  0%, 100% {
    opacity: 0.2;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: translateY(-50%) scale(1.05);
  }
}

.form-message-container.success p {
  margin: 0;
  font-weight: 600;
  font-size: 17px;
  color: #047857;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-message-container.success p::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
}

.form-message-container.success p#homepageRedirectCountdown {
  margin-top: 8px;
  font-weight: normal;
  font-size: 0.9em;
  color: #059669;
  opacity: 0.9;
}

.form-message-container.success p#homepageRedirectCountdown::before {
  display: none;
}

.hidden-form-field {
  /*Bu kısım izleme için*/
  opacity: 0 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  height: 0 !important;
  width: 0 !important;
  z-index: -1 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#detailsPopupOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 1060;
  /* Terms modalından biraz daha üstte olabilir */
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#detailsPopupOverlay.active {
  display: flex;
  opacity: 1;
}

#detailsPopupContent {
  /* Zaten .modal-content ile aynı stile sahip olabilir */
  background-color: #ffffff;
  padding: 25px 30px;
  border-radius: 5px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 550px;
  /* Popup biraz daha dar olabilir */
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95) translateY(-10px);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#detailsPopupOverlay.active #detailsPopupContent {
  transform: scale(1) translateY(0);
}

#detailsPopupContent .modal-header {
  /* .modal-header stilini kullanabilir */
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e6ed;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

#detailsPopupContent .modal-header h2 {
  font-size: 20px;
  color: #1a1a1a;
  margin: 0;
}

#detailsPopupContent .close-modal {
  /* .close-modal stilini kullanabilir */
  font-size: 26px;
  font-weight: bold;
  color: #5f6c7b;
  cursor: pointer;
  line-height: 1;
  padding: 0 5px;
  transition: color 0.2s ease;
}

#detailsPopupContent .close-modal:hover {
  color: #1a1a1a;
}

#detailsPopupContent .modal-body-text {
  /* .modal-body-text stilini kullanabilir */
  font-size: 15px;
  line-height: 1.6;
  color: #333333;
}

#detailsPopupContent .form-group {
  margin-bottom: 18px;
}

#detailsPopupContent .form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: #495057;
  margin-bottom: 6px;
}

#detailsPopupContent .form-select,
#detailsPopupContent .form-textarea {
  /* Admin panelindeki form elemanlarına benzer stil */
  width: 100%;
  padding: 10px 12px;
  font-size: 14.5px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-color: #fff;
  box-sizing: border-box;
}

#detailsPopupContent .form-select:focus,
#detailsPopupContent .form-textarea:focus {
  border-color: #5353c6;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(83, 83, 198, 0.25);
}

#detailsPopupContent .form-actions {
  text-align: right;
}

#detailsPopupContent .submit-button {
  /* .contact-form-actual .submit-button stilini kullanabilir */
  padding: 10px 25px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: none;
}

#detailsPopupContent .submit-button:hover {
  background-color: #333333;
}

#detailsFormMessageContainer .form-message-container {
  font-size: 0.9em;
  padding: 10px 15px;
  margin-bottom: 15px;
}

.cta-section {
  width: 100%;
  background: var(--lume-white);
  padding: 120px 20px;
}

.cta-banner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--lume-dark);
  border-radius: 24px;
  padding: 72px 80px;
  display: flex;
  align-items: center;
  gap: 60px;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(14, 19, 55, 0.45);
}

.cta-banner-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.cta-banner-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.cta-headline {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #ffffff;
}

.cta-headline span {
  color: #c6c9ff;
}

.cta-copy {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--lume-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-banner-btn svg {
  width: 22px;
  height: 22px;
}

.cta-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
}

.cta-mini-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.cta-banner-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cta-banner-shapes .shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(0.2px);
}

.shape-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
}

.shape-square {
  width: 200px;
  height: 200px;
  border-radius: 36px;
  right: 160px;
  top: 30%;
}

.shape-circle-small {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  right: 60px;
  bottom: 15%;
  background: rgba(255, 255, 255, 0.12);
}

.shape-corner {
  width: 220px;
  height: 220px;
  right: -40px;
  bottom: -40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  border-top-left-radius: 40px;
}

@media (max-width: 960px) {
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 48px;
  }

  .cta-banner-action {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cta-section {
    padding: 80px 16px;
  }

  .cta-banner {
    padding: 48px 28px;
    border-radius: 28px;
    gap: 32px;
  }

  .cta-banner-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Responsive design */
@media (max-width: 1024px) {
  .cta-title {
    font-size: 40px;
  }

  .cta-description {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 20px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }

  .cta-btn {
    width: 100%;
    max-width: 320px;
  }

  .cta-trust-signals {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 60px 20px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-description {
    font-size: 15px;
  }

  .cta-btn {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.7rem;
  }

  .cta-description {
    font-size: 0.95rem;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse animation for buttons */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 49, 77, 0.4);
  }

  50% {
    box-shadow: 0 6px 20px rgba(37, 49, 77, 0.6);
  }

  100% {
    box-shadow: 0 4px 12px rgba(37, 49, 77, 0.4);
  }
}

.cta-btn-primary {
  animation: pulse 2s infinite;
}

.cta-microcopy {
  font-size: 13px;
  color: #666666;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.cta-microcopy .benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
}

.cta-microcopy i {
  color: #4ade80;
  font-size: 14px;
}

@media (max-width: 768px) {
  .dedicated-cta-section {
    padding: 60px 15px;
  }

  .cta-buttons-group {
    flex-direction: column;
    gap: 15px;
  }

  .cta-button-main,
  .cta-button-secondary-alt {
    width: 100%;
    max-width: 320px;
    padding: 16px 30px;
    font-size: 16px;
  }

  .cta-microcopy {
    flex-direction: column;
    gap: 15px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .dedicated-cta-section {
    padding: 50px 10px;
  }

  .cta-headline {
    margin-bottom: 20px;
  }

  .cta-subtext {
    margin-bottom: 35px;
  }
}

/* Accessibility improvements */
.cta-button-main:focus,
.cta-button-secondary-alt:focus {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .shiny-button::before,
  .dedicated-cta-section::before {
    animation: none;
  }

  .cta-button-main,
  .cta-button-secondary-alt {
    transition: none;
  }
}

.blog-snippet-section {
  padding: 80px 20px;
  background-color: var(--lume-bg-light);
}

.blog-snippet-section .section-title {
  text-align: center;
  justify-content: center;
  font-size: 30px;
}

.blog-snippet-section .section-subtitle {
  text-align: center;
  justify-content: center;
  font-size: 17px;
}

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

.blog-snippet-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-snippet-section .section-subtitle {
  margin-bottom: 0;
}

/* Desktop: Header flex yapısı - section-header içinde */
.blog-snippet-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
}

.blog-snippet-header .section-title {
  margin-bottom: 0;
  text-align: center;
}

.blog-snippet-nav {
  display: none;
}

/* Desktop: Normal grid görünümü */
.blog-home-carousel-wrapper {
  display: block;
}

.blog-home-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    background-color 0.25s ease;
  border: 1px solid #e9ecef;
}

.blog-card:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-color: #ced4da;
  background-color: #fdfdfd;
}

.blog-card-image-link {
  display: block;
  overflow: hidden;
  position: relative;
  /* Kategori etiketinin pozisyonlanması için eklendi */
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: 13px;
  color: #555555;
  margin-bottom: 10px;
  font-weight: 500;
}

.blog-card-meta .meta-separator {
  margin: 0 5px;
}

.blog-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #35124257;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  z-index: 2;
  line-height: 1.3;
  opacity: 1;
}

.blog-card-category:hover {
  background-color: #132175;
  transform: scale(1.03);
}

.blog-card-title {
  font-size: 19px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-title a {
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--primary-color, #000000);
}

.blog-card-excerpt {
  font-size: 14.5px;
  color: #495057;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
  font-weight: 400;
  overflow: hidden;
  display: none;
}

.read-more-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color, #000000);
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.read-more-link i {
  margin-left: 6px;
  font-size: 0.9em;
  transition: transform 0.2s ease;
}

.read-more-link:hover {
  color: var(--primary-hover-color, #333333);
}

.read-more-link:hover i {
  transform: translateX(2px);
}

.all-posts-link-wrapper {
  text-align: center;
  margin-top: 50px;
  /* Blog kartları ile arasında daha iyi bir boşluk */
  margin-bottom: 50px;
  /* Altında gelecek bölümle de boşluk olsun */
}

.section-title .char,
.section-subtitle .char {
  opacity: 0;
  /* SplitText harflerini başlangıçta gizle */
}

/* ==========================================================================
   1. TEMEL BÖLÜM VE KART STİLLERİ
   ========================================================================== */
/* ==========================================================================
   1. TEMEL BÖLÜM VE KART STİLLERİ
   ========================================================================== */

.features-section-v2 {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
  overflow-x: hidden;
}

.features-section-v2 .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section title/subtitle global sistemden alınıyor */

.features-grid-v2.specific-layout-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(3, minmax(270px, auto));
  gap: 25px;
}

.feature-card-v2 {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  text-align: left;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-card-v2:hover {
  border-color: #ced4da;
  background-color: #fdfdfd;
}

.feature-card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1rem;
  color: #adb5bd;
  transition: color 0.2s ease;
  z-index: 10;
}

.feature-card-arrow:hover {
  color: #000000;
}

.feature-card-title-v2 {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  margin-top: 0;
  margin-bottom: 10px;
  padding-right: 30px;
  line-height: 1.4;
}

.feature-card-description-v2 {
  font-size: 14px;
  color: #495057;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-card-visual-placeholder {
  background: linear-gradient(145deg, #f7f8fa, #e6e8f0);
  border: 1px solid #e9ecef;
  border-radius: 6px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.feature-card-v2.layout-item-tall-left {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.feature-card-v2.layout-item-top-right-1 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.feature-card-v2.layout-item-top-right-2 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.feature-card-v2.layout-item-mid-right-1 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.feature-card-v2.layout-item-mid-right-2 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

.feature-card-v2.layout-item-full-bottom {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
}

.feature-card-v2.layout-item-tall-left .feature-card-visual-placeholder {
  min-height: 550px;
}

.feature-card-v2.layout-item-full-bottom .feature-card-visual-placeholder {
  min-height: 180px;
}

/* ==========================================================================
   2. ANİMASYON ELEMENTLERİNİN STİLLERİ
   ========================================================================== */

/* Metin animasyonu için hazırlık */
.section-title .char,
.section-subtitle .word {
  opacity: 0;
  transform: translateY(30px);
}

/* YENİLENMİŞ - 7/24 Destek Animasyonu Stilleri */
#visual-destek .chat-bubble-container {
  position: relative;
  width: 100px;
  height: 100px;
}

#visual-destek .chat-bubble {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(14, 19, 55, 0.1);
}

#visual-destek .chat-bubble.large {
  width: 80px;
  height: 80px;
  background: var(--lume-dark);
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

#visual-destek .chat-bubble.small {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #e0e0e0;
  top: 0;
  right: 0;
}

#visual-destek .typing-dot {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

/* YENİLENMİŞ - Kullanıcı Dostu Panel Animasyonu Stilleri */
#visual-panel .panel-window {
  width: 85%;
  height: 85%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  display: flex;
  overflow: hidden;
}

#visual-panel .panel-sidebar {
  width: 25%;
  background-color: #f8f9fa;
  padding: 15px 10px;
  border-right: 1px solid #e9ecef;
}

#visual-panel .panel-logo {
  width: 30px;
  height: 30px;
  background-color: var(--lume-dark);
  border-radius: 8px;
  margin-bottom: 20px;
}

#visual-panel .panel-menu {
  width: 100%;
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  margin-bottom: 12px;
}

#visual-panel .panel-menu.short {
  width: 70%;
}

#visual-panel .panel-main {
  width: 75%;
  padding: 15px;
}

#visual-panel .panel-header {
  width: 60%;
  height: 12px;
  background-color: #e9ecef;
  border-radius: 4px;
  margin-bottom: 20px;
}

#visual-panel .panel-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 70%;
}

#visual-panel .panel-widget {
  background-color: #f8f9fa;
  border-radius: 4px;
}

#visual-panel .panel-widget.large {
  grid-column: 1 / 3;
}

/* Gelişmiş Güvenlik Animasyonu Stilleri */
#visual-guvenlik .sec-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  border: 1px solid rgba(14, 19, 55, 0.2);
  box-sizing: border-box;
}

#visual-guvenlik .sec-layer-1 {
  width: 120px;
  height: 120px;
}

#visual-guvenlik .sec-layer-2 {
  width: 95px;
  height: 95px;
}

#visual-guvenlik .sec-layer-3 {
  width: 70px;
  height: 70px;
}

#visual-guvenlik .sec-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--lume-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

/* Ölçeklenebilir Altyapı Animasyonu Stilleri */
#visual-altyapi .node-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: 80%;
  height: 80%;
}

#visual-altyapi .node {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: rgba(108, 117, 125, 0.2);
}

/* E-posta Animasyonu Stilleri */
#visual-eposta .email-icon-base {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 50px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 4px;
  transform: translate(-50%, -50%);
}

#visual-eposta .email-icon-flap {
  position: absolute;
  top: calc(50% - 25px);
  left: 50%;
  width: 0;
  height: 0;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-top: 25px solid #ddd;
  transform: translate(-50%, -100%) scaleY(1);
  transform-origin: bottom;
}

/* Performance - Uptime Monitor */
#visual-performans .uptime-monitor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
}

#visual-performans .monitor-screen {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(14, 19, 55, 0.08);
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

#visual-performans .status-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

#visual-performans .status-row:last-of-type {
  margin-bottom: 0;
}

#visual-performans .status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  flex-shrink: 0;
  position: relative;
}

#visual-performans .status-dot.active {
  background: #0e1337;
  box-shadow: 0 0 0 0 rgba(14, 19, 55, 0.7);
  animation: status-pulse 2s infinite;
}

#visual-performans .status-bar {
  flex: 1;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

#visual-performans .status-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0e1337 0%, #1e293b 100%);
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#visual-performans .status-bar.filling::after {
  width: 100%;
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 19, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(14, 19, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(14, 19, 55, 0);
  }
}

@media (max-width: 768px) {
  #visual-performans .monitor-screen {
    padding: 16px;
  }

  #visual-performans .status-bar {
    height: 6px;
  }

  #visual-performans .status-dot {
    width: 10px;
    height: 10px;
  }
}

/* ==========================================================================
   3. RESPONSIVE (MOBİL UYUMLULUK) STİLLERİ
   ========================================================================== */
@media (max-width: 992px) {
  .features-grid-v2.specific-layout-v2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .feature-card-v2.layout-item-tall-left {
    grid-column: 1 / 3;
  }

  .feature-card-v2.layout-item-top-right-1,
  .feature-card-v2.layout-item-top-right-2,
  .feature-card-v2.layout-item-mid-right-1,
  .feature-card-v2.layout-item-mid-right-2 {
    grid-column: auto;
  }

  .feature-card-v2.layout-item-full-bottom {
    grid-column: 1 / 3;
  }

  .feature-card-visual-placeholder,
  .feature-card-v2.layout-item-tall-left .feature-card-visual-placeholder,
  .feature-card-v2.layout-item-full-bottom .feature-card-visual-placeholder {
    min-height: 180px;
  }

  .feature-card-v2.layout-item-tall-left .feature-card-visual-placeholder {
    min-height: 250px;
  }
}

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

  .features-grid-v2.specific-layout-v2 {
    grid-template-columns: 1fr;
  }

  .feature-card-v2.layout-item-tall-left,
  .feature-card-v2.layout-item-full-bottom {
    grid-column: auto;
  }

  .feature-card-v2 {
    padding: 20px;
  }

  .feature-card-title-v2 {
    font-size: 17px;
  }

  .feature-card-description-v2 {
    font-size: 13.5px;
  }

  .feature-card-visual-placeholder,
  .feature-card-v2.layout-item-tall-left .feature-card-visual-placeholder,
  .feature-card-v2.layout-item-full-bottom .feature-card-visual-placeholder {
    min-height: 160px;
  }
}

/* BLOG BÖLÜMÜNDEKİ BUTONUN STİLİ */
.all-posts-link-wrapper .cta-button-secondary-alt {
  color: #2d3748;
  border: 1px solid #cccccc;
  background-color: transparent;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 500;
}

.all-posts-link-wrapper .cta-button-secondary-alt:hover {
  border-color: #ced4da;
  background-color: #fdfdfd;
}

.site-footer {
  flex-shrink: 0;
  background-color: #1a1a1a;
  color: #cccccc;
  padding: 70px 20px 20px 20px;
  font-size: 15px;
  line-height: 1.7;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.footer-column-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-logo-link {
  justify-content: center;
  display: flex;
  margin-bottom: 20px;
}

.footer-logo-img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  display: block;
  width: fit-content;
  margin: 0 auto 15px auto;
  /* Üst: 0, Sağ/Sol: auto, Alt: 15px */
}

.footer-about-text {
  margin-bottom: 25px;
  font-weight: 400;
  color: #e0e0e0;
}

.social-media-links a {
  color: #cccccc;
  font-size: 20px;
  margin-right: 18px;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.social-media-links a:last-child {
  margin-right: 0;
}

.social-media-links a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #cccccc;
  transition: color 0.3s ease, padding-left 0.3s ease;
  font-weight: 400;
}

.footer-links ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #444444;
  padding-top: 25px;
  text-align: center;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
  color: #aaaaaa;
}

.blog-hero {
  background-color: #f8f9fc;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
}

.blog-hero .section-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
  /* var(--blog-dark-color); */
}

.blog-hero .section-subtitle {
  /* Eğer genel .section-subtitle kullanıyorsanız bunu özelleştirebilirsiniz */
  font-size: 18px;
  color: #555555;
  /* var(--blog-text-muted); */
  max-width: 600px;
  margin: 0 auto 40px auto;
}

/* Tekil Blog Kartı */
.blog-card {
  background-color: #ffffff;
  /* var(--blog-light-color); */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eeeeee;
  /* var(--blog-border-color); */
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.blog-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.05);
}

.blog-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #0e1337;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.blog-card-category:hover {
  background-color: rgb(15, 15, 34);
}

.blog-card-content {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  /* var(--blog-dark-color); */
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 56px;
  /* Yaklaşık 2 satır için, isteğe bağlı */
}

.blog-card-title a:hover {
  color: #5353c6;
  /* var(--blog-primary-color); */
}

.blog-card-excerpt {
  font-size: 15px;
  color: #555555;
  /* var(--blog-text-muted); */
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #888888;
  border-top: 1px solid #eeeeee;
  /* var(--blog-border-color); */
  padding-top: 15px;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-card-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-meta i {
  font-size: 1.1em;
  /* İkon boyutu */
}

.blog-card-meta .read-more {
  color: #5353c6;
  /* var(--blog-primary-color); */
  font-weight: 600;
  white-space: nowrap;
}

.blog-card-meta .read-more:hover {
  text-decoration: underline;
}

/* Sayfalama Stilleri */
.pagination {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 500;
  color: #555555;
  /* var(--blog-text-muted); */
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

.pagination a:hover {
  background-color: #f0f0f0;
  border-color: #cccccc;
  color: #111111;
}

.pagination span.current {
  background-color: #1a1a1a;
  /* var(--blog-dark-color); */
  color: #ffffff;
  /* var(--blog-light-color); */
  border-color: #1a1a1a;
  /* var(--blog-dark-color); */
  font-weight: 700;
}

.pagination span.dots {
  border: none;
  background: none;
}

.pagination a.prev i,
.pagination a.next i {
  font-size: 0.9em;
}

@keyframes fadeInUpTableRow {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .nav-links.desktop-nav {
    display: none;
  }
  
  .nav-links:not(.desktop-nav) {
    display: none;
  }

  .hamburger-menu-button {
    display: inline-block;
  }

  .mega-menu-panel {
    display: none !important;
  }
}

/* ==========================================================================
   2. TABLETLER (992px ve altı)
   ========================================================================== */
@media (max-width: 992px) {
  /* Fiyatlandırma Tablosu */
  .pricing-comparison-table {
    grid-template-columns: minmax(180px, 1fr) repeat(3, minmax(180px, 1fr));
  }

  .feature-header-cell,
  .plan-header-cell,
  .feature-name-cell,
  .plan-feature-cell {
    padding: 15px 12px;
    font-size: 0.9rem;
  }

  .plan-header-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .plan-header-cell h3 {
    font-size: 1.2rem;
  }

  .current-price {
    font-size: 1.6rem;
  }

  .badge-popular-table {
    font-size: 0.7rem;
    padding: 4px 10px;
    top: -12px;
  }

  .plan-header-cell.popular {
    padding-top: 30px;
  }

  /* Hero Alanı */
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-badge {
    justify-content: center;
  }

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

  .hero-content {
    order: 2;
    max-width: 100%;
  }

  .hero-visual {
    order: 1;
    margin-bottom: 30px;
  }

  .hero-visual img {
    max-width: 90%;
  }

  .hero-headline {
    font-size: 40px;
  }

  /* Süreç Adımları */
  .process-steps-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .process-step {
    max-width: 450px;
    width: 100%;
    margin-bottom: 20px;
  }

  .step-connector-arrow {
    display: none;
  }

  /* Premium Vitrin */
  .premium-showcase-layout {
    flex-direction: column;
    text-align: center;
  }

  .premium-showcase-text {
    padding-right: 0;
    text-align: center;
  }

  .premium-showcase-title {
    text-align: center !important;
  }

  .premium-showcase-visual {
    margin-top: 20px;
    max-width: 80%;
  }

  /* Testimonials Grid */
  .testimonials-grid-placeholder {
    grid-template-columns: 1fr;
  }

  /* Mega Menü Panel İçeriği */
  .mega-menu-panel .mega-menu-content.container {
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
  }

  .mega-menu-main-links {
    flex-direction: column;
    gap: 20px;
  }

  .mega-menu-main-links .links-column {
    min-width: 100%;
  }

  .mega-menu-featured-column {
    flex-basis: auto;
    margin-left: 0;
    padding-left: 0;
    margin-top: 25px;
    padding-top: 25px;
    border-left: none;
    border-top: 1px solid #3a3f47;
  }

  /* İletişim Formu Grid */
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 40px 50px;
  }

  .contact-form-left {
    text-align: center;
    align-items: center;
  }

  .contact-avatars {
    justify-content: center;
  }

  .contact-form-title {
    font-size: 28px;
  }

  .form-submit-row {
    justify-content: center;
  }

  .contact-submit-btn {
    width: 100%;
    max-width: 300px;
  }

  /* Blog Listeleme Grid (992px) */
  .blog-listing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .blog-hero .section-title {
    font-size: 38px;
  }

  /* Features Grid - 3D Parallax (992px) */
  .features-grid {
    /* Bu .features-grid, 3D parallax olan */
    grid-template-columns: repeat(2, 1fr);
    /* Tablette 2 sütun */
    gap: 25px;
    perspective: 1000px;
    /* Perspektifi azaltabiliriz */
  }

  .feature-card-image-wrapper {
    height: 160px;
  }

  .feature-card-icon {
    font-size: 24px;
    width: 45px;
    height: 45px;
    bottom: 10px;
    right: 10px;
    transform: translateZ(40px);
    /* Z değeri ayarı */
  }

  .feature-card:hover .feature-card-icon {
    transform: translateZ(50px) scale(1.1);
  }

  .parallax-main-image {
    transform: translateZ(15px);
  }

  .feature-card:hover .parallax-main-image {
    transform: translateZ(30px) scale(1.05);
  }

  .parallax-bg-layer {
    transform: translateZ(0);
    /* Arka katman daha az hareket edebilir */
  }

  .feature-card:hover .parallax-bg-layer {
    transform: translateZ(-20px) scale(1.1);
  }

  /* Responsive Düzenlemeler (Features Section - Tabs) (992px) */
  .features-section {
    /* Bu .features-section, tablı olan */
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .features-section .section-subtitle {
    margin-bottom: 30px;
  }

  .interactive-services-content {
    gap: 25px;
    padding: 20px;
    min-height: 400px;
    flex-direction: column;
    /* EKLENDİ: Tablet görünümünde içeriği dikey sırala */
    align-items: stretch;
    /* EKLENDİ: Öğeleri tam genişliğe yay */
  }

  .services-selector {
    min-width: unset;
    width: 100%;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    flex-direction: row;
    /* DEĞİŞİKLİK: Tablette tabları yatayda sırala */
    overflow-x: auto;
    /* EKLENDİ: Çok fazla tab varsa yatay kaydırma */
    justify-content: flex-start;
    /* EKLENDİ: Tabları sola yasla */
    scrollbar-width: thin;
    /* EKLENDİ: Kaydırma çubuğu inceltme (Firefox) */
    scrollbar-color: var(--primary-color, #000000) #f0f0f0;
    /* EKLENDİ: Kaydırma çubuğu rengi (Firefox) */
  }

  .services-selector::-webkit-scrollbar {
    /* EKLENDİ: Webkit tabanlı tarayıcılar için kaydırma çubuğu */
    height: 5px;
  }

  .services-selector::-webkit-scrollbar-thumb {
    /* EKLENDİ: Webkit kaydırma çubuğu tutamacı */
    background-color: var(--primary-color, #000000);
    border-radius: 10px;
  }

  .services-selector::-webkit-scrollbar-track {
    /* EKLENDİ: Webkit kaydırma çubuğu yolu */
    background-color: #f0f0f0;
  }

  .service-tab {
    font-size: 15px;
    padding: 10px 15px;
    margin-bottom: 0px;
    /* DEĞİŞİKLİK: Yatay sıralamada dikey margin sıfırlandı */
    margin-right: 10px;
    flex-shrink: 0;
    /* EKLENDİ: Tabların küçülmesini engelle */
  }

  .service-tab:last-child {
    margin-right: 0;
  }

  .service-details-display {
    min-height: auto;
    /* EKLENDİ: Tablette minimum yükseklik içeriğe göre ayarlanacak */
  }

  .panel-title {
    font-size: 26px;
  }

  .panel-description {
    font-size: 14px;
  }

  .diagram-placeholder {
    padding: 15px 20px;
    margin-bottom: 20px;
  }

  .diagram-step-item {
    max-width: 95%;
    padding: 8px 15px;
  }

  .step-counter {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .step-content-box .step-title {
    font-size: 14px;
  }

  .step-content-box .step-description {
    font-size: 11px;
  }

  .step-icon-right {
    font-size: 16px;
  }

  .diagram-arrow {
    font-size: 18px;
    margin: 6px 0;
  }

  .panel-cta {
    margin-top: 15px;
  }

  .panel-cta .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .hero-cta-buttons {
    justify-content: center;
    align-items: center;
  }
  /* Features Grid v2 - Specific Layout (Tablet) */
  .features-grid-v2.specific-layout-v2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  /* Tablette span'ları daha basit bir akışa göre düzenle */
  .feature-card-v2.layout-item-tall-left {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .feature-card-v2.layout-item-top-right-1,
  .feature-card-v2.layout-item-top-right-2,
  .feature-card-v2.layout-item-mid-right-1,
  .feature-card-v2.layout-item-mid-right-2 {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-card-v2.layout-item-full-bottom {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .feature-card-visual-placeholder,
  .feature-card-v2.layout-item-tall-left .feature-card-visual-placeholder,
  .feature-card-v2.layout-item-full-bottom .feature-card-visual-placeholder {
    min-height: 140px;
  }
}

/* ==========================================================================
   TABLET VE ALTI İÇİN DAHA ERKEN KIRILMA (820px ve altı)
   ========================================================================== */
@media (max-width: 820px) {
  .comparison-block {
    flex-direction: column;
    margin: 0 10px 30px 10px;
    /* Kenar boşlukları ayarlandı */
  }

  .comparison-column.lume-advantages-column {
    margin: 0;
    /* Mobilde kenar boşluğu sıfırlanır, blok padding'i yeterli */
    border-radius: 10px 10px 0 0;
    /* Alt köşeler düzleşir */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    /* Mobilde gölge azaltılabilir */
  }

  .comparison-column.typical-problems-column {
    background-color: #f8f9fa;
    /* Mobilde sağ sütuna da hafif bir arka plan verilebilir */
    padding-left: 30px;
    /* Sol sütunla aynı padding */
    border-radius: 0 0 10px 10px;
    /* Üst köşeler düzleşir */
  }

  .problem-solution-section.modern-variant .container {
    max-width: 600px;
    /* Mobilde container biraz daha dar olabilir */
  }
}

/* ==========================================================================
   3. DİKEY TABLETLER / BÜYÜK TELEFONLAR (768px ve altı)
   ========================================================================== */
@media (max-width: 768px) {
  /* Fiyatlandırma Tablosu */
  .pricing-comparison-table-wrapper {
    margin-left: -20px;
    margin-right: -20px;
    border-left: none;
    border-right: none;
    border-radius: 0;
  }

  .feature-header-cell {
    font-size: 15px;
    position: static;
  }

  .plan-header-cell h3 {
    font-size: 1.1rem;
  }

  .plan-header-description {
    font-size: 0.8rem;
    min-height: 30px;
  }

  .current-price {
    font-size: 1.4rem;
  }

  .plan-select-button {
    font-size: 14px;
    padding: 10px 12px;
  }

  .pricing-toggle-container {
    max-width: 100%;
    flex-direction: column;
    gap: 10px;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }

  .pricing-toggle-container .toggle-btn {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .toggle-separator {
    display: none;
  }

  /* Genel Layout Değişiklikleri */
  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-headline {
    font-size: 32px;
  }

  /* 992px'deki 40px'i ezer */
  .hero-subheadline {
    font-size: 16px;
  }

  /* Bu .features-grid, 3D parallax olan (768px) */
  .features-grid {
    grid-template-columns: 1fr;
    /* Mobilde tek sütun */
    gap: 20px;
    /* 992px'deki 25px'i ezer */
    perspective: none;
    /* Mobilde 3D efekti kapatılabilir */
    transform-style: flat;
    /* 3D'yi devre dışı bırak */
  }

  .feature-card {
    text-align: center;
    transform-style: flat;
    /* 3D'yi devre dışı bırak */
  }

  .feature-card-content {
    align-items: center;
  }

  .feature-card-image-wrapper {
    /* 992px'deki 160px'i ezer */
    height: 180px;
    transform-style: flat;
  }

  /* Mobilde 3D transformları kaldır */
  .parallax-bg-layer,
  .parallax-main-image,
  .feature-card-icon {
    /* 992px'deki transformları ezer */
    position: relative;
    /* Absolute'u kaldır */
    transform: none !important;
    /* Tüm 3D transformları sıfırla */
    transition: none !important;
    /* Geçişleri sıfırla */
    z-index: auto !important;
    /* Z-index'i sıfırla */
    opacity: 1 !important;
    /* Opaklığı sıfırla */
  }

  .feature-card-icon {
    /* 992px'deki stil ve pozisyonları ezer */
    margin: 0 auto 15px auto;
    /* Ortala ve alttan boşluk ver */
    background-color: var(--primary-color, #000000);
    color: #ffffff;
    box-shadow: none;
    /* font-size, width, height 992px'den miras kalır, gerekirse burada ezilir */
  }

  .feature-card:hover .feature-card-icon {
    /* 992px'deki hover'ı ezer */
    background-color: var(--primary-color-dark, #333333);
    transform: none !important;
  }

  .feature-card:hover .feature-card-image {
    transform: none;
    /* Mobilde görsel büyümesini kapat */
  }

  .feature-card:hover .parallax-main-image,
  .feature-card:hover .parallax-bg-layer {
    transform: none !important;
  }

  .feature-item {
    padding: 25px;
    text-align: center;
    align-items: center;
  }

  /* Bu .feature-item, muhtemelen başka bir özellik listesi */
  .pricing-section:not(.detailed-pricing-comparison-section) .pricing-grid {
    grid-template-columns: 1fr;
  }

  .toggle-btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .plan-for {
    min-height: auto;
  }

  .faq-section .container {
    padding: 0 15px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 16px;
  }

  .faq-answer p {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-icon {
    font-size: 14px;
  }

  .step-title {
    font-size: 20px;
  }

  /* Süreç adımları için */
  .step-description {
    font-size: 14px;
  }

  /* Süreç adımları için */
  .step-number-icon {
    width: 80px;
    height: 80px;
    font-size: 28px;
  }

  /* Muhtemelen farklı bir adım bileşeni */
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  /* Muhtemelen farklı bir adım bileşeni */
  .cta-headline {
    font-size: 28px;
  }

  .cta-subtext {
    font-size: 16px;
  }

  .dedicated-cta-section .cta-button-main,
  .dedicated-cta-section .cta-button-secondary-alt {
    font-size: 16px;
    padding: 12px 25px;
  }

  .blog-card-image {
    height: 200px;
  }

  .blog-card-title {
    font-size: 18px;
  }

  .blog-card-excerpt {
    font-size: 14px;
  }

  .integrations-grid {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .integration-item {
    padding: 20px;
  }

  .integration-logo-wrapper {
    height: 60px;
  }

  .integration-logo-wrapper img {
    max-height: 45px;
  }

  .premium-showcase-title {
    font-size: 26px !important;
  }

  /* 992px'deki !important'ı korur */
  .premium-showcase-description {
    font-size: 15px;
  }

  .brand-logos-row {
    justify-content: center;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .site-footer {
    padding: 40px 15px 15px 15px;
  }

  .footer-column-title {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .footer-links ul li {
    margin-bottom: 8px;
  }

  .footer-about,
  .footer-links {
    text-align: center;
    margin-bottom: 20px;
  }

  .social-media-links {
    margin-bottom: 20px;
    justify-content: flex-start;
  }

  /* Problem/Çözüm */
  .problem-solution-section.modern-variant .section-title {
    font-size: 28px;
  }

  .problem-solution-section.modern-variant .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .problem-solution-grid {
    grid-template-columns: 1fr;
  }

  /* min-width:769px'deki stili ezer */
  .problem-card,
  .solution-card {
    text-align: center;
    padding: 20px;
  }

  .card-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .solution-arrow {
    display: none;
  }

  /* min-width:769px'deki stili ezer */

  /* İletişim Formu */
  .contact-form-section {
    padding: 60px 15px;
  }

  .contact-form-grid {
    padding: 25px;
  }

  /* Mobilde form mesaj container boşluğu */
  .contact-form .form-message-container {
    margin-bottom: 10px;
  }

  /* Mobilde form elemanları arası standart boşluk */
  .contact-form .form-row {
    flex-direction: column;
    margin-bottom: 16px;
    gap: 16px;
  }

  .contact-form .input-group {
    margin-bottom: 0;
  }

  .contact-form .form-checkbox-row {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /* Touch-friendly butonlar */
  .cta-primary, .cta-secondary, .cta-button {
    min-height: 48px;
    font-size: 16px; /* iOS zoom prevention */
  }

  .contact-submit-btn {
    min-height: 52px;
    width: 100%;
  }

  .checkbox-group label {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Blog Listeleme Grid (768px) */
  .blog-listing-grid {
    grid-template-columns: 1fr;
  }

  /* 992px'deki 2 sütunu ezer */
  .blog-hero {
    padding: 60px 20px;
  }

  .blog-hero .section-title {
    font-size: 32px;
  }

  /* 992px'deki 38px'i ezer */
  .blog-hero .section-subtitle {
    font-size: 16px;
  }

  .category-filter {
    margin-bottom: 40px;
  }

  .blog-main-content {
    padding: 60px 0;
  }

  /* Responsive Düzenlemeler (Features Section - Tabs) (768px) */
  .features-section {
    /* Bu .features-section, tablı olan. 992px'deki padding'i ezer */
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .features-section .section-title {
    /* Genel .section-title'ı (28px) ezer */
    font-size: 30px;
  }

  .features-section .section-subtitle {
    /* Genel .section-subtitle'ı (16px) ezer. 992px'deki margin'i ezer */
    font-size: 15px;
    margin-bottom: 20px;
  }

  .interactive-services-content {
    /* 992px'deki padding, gap, min-height'ı ezer */
    padding: 15px;
    gap: 15px;
    min-height: auto;
    /* DEĞİŞİKLİK: Mobil için min-height kaldırıldı, içerik belirlesin */
  }

  .services-selector {
    /* 992px'deki stilleri ezer/değiştirir */
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    /* DEĞİŞİKLİK: Daha yumuşak bir ayırıcı */
    /* overflow-x: auto; 992px'den miras alır, wrap ile gerekmeyebilir ama kalabilir */
  }

  .service-tab {
    /* 992px'deki stil ve margin'leri ezer */
    font-size: 14px;
    padding: 8px 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    /* DEĞİŞİKLİK: Alt alta gelen tablar için boşluk artırıldı */
  }

  .panel-title {
    font-size: 22px;
  }

  /* 992px'deki 26px'i ezer */
  .panel-description {
    font-size: 13px;
    margin-bottom: 15px;
  }

  /* 992px'deki 14px'i ezer */
  .diagram-placeholder {
    padding: 10px 15px;
    margin-bottom: 15px;
  }

  /* 992px'dekileri ezer */
  .diagram-step-item {
    max-width: 100%;
    padding: 6px 10px;
  }

  /* 992px'dekileri ezer */
  .step-counter {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  /* 992px'dekileri ezer */
  .step-content-box .step-title {
    font-size: 13px;
  }

  /* 992px'dekileri ezer */
  .step-content-box .step-description {
    font-size: 10px;
  }

  /* 992px'dekileri ezer */
  .step-icon-right {
    font-size: 14px;
  }

  /* 992px'deki 16px'i ezer */
  .diagram-arrow {
    font-size: 16px;
    margin: 5px 0;
  }

  /* 992px'dekileri ezer */
  .panel-cta {
    margin-top: 10px;
  }

  /* 992px'deki 15px'i ezer */

  /* Features Grid v2 - Specific Layout (Mobil) */
  .features-grid-v2.specific-layout-v2 {
    /* 992px'dekini ezer */
    grid-template-columns: 1fr;
    gap: 20px;
    /* 992px'den miras alır, aynı değer */
  }

  .feature-card-v2.layout-item-tall-left,
  .feature-card-v2.layout-item-top-right-1,
  .feature-card-v2.layout-item-top-right-2,
  .feature-card-v2.layout-item-mid-right-1,
  .feature-card-v2.layout-item-mid-right-2,
  .feature-card-v2.layout-item-full-bottom {
    /* 992px'deki grid-column/row'u ezer */
    grid-column: auto;
    grid-row: auto;
  }

  .feature-card-v2 {
    padding: 20px;
  }

  .feature-card-title-v2 {
    font-size: 17px;
    margin-bottom: 8px;
    padding-right: 25px;
  }

  /* Ok için padding korundu */
  .feature-card-description-v2 {
    font-size: 13.5px;
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .feature-card-visual-placeholder,
  .feature-card-v2.layout-item-tall-left .feature-card-visual-placeholder,
  .feature-card-v2.layout-item-full-bottom .feature-card-visual-placeholder {
    /* 992px'deki min-height'ı ezer */
    min-height: 120px;
    font-size: 12px;
  }
}

/* ==========================================================================
   ÖZEL ARALIK: DİKEY TABLETLER (481px - 768px arası)
   ========================================================================== */
@media (max-width: 768px) and (min-width: 481px) {
  /* Problem/Çözüm (Modern Variant) */
  .problem-solution-section.modern-variant .section-subtitle {
    margin-bottom: 50px;
    /* 768px max-width bloğundaki 40px'i bu aralıkta ezer */
  }

  .problem-card,
  .solution-card {
    padding: 20px;
    /* 768px max-width bloğundaki ile aynı, spesifik aralık için teyit */
  }

  .problem-card h3,
  .solution-card h3 {
    font-size: 16px;
  }

  .problem-card p,
  .solution-card p {
    font-size: 13px;
  }
}

/* ==========================================================================
   4. KÜÇÜK TELEFONLAR (480px ve altı)
   ========================================================================== */
@media (max-width: 480px) {
  .main-header {
    padding: 0 10px;
  }

  .logo {
    font-size: 1.5em;
    padding-right: 15px;
    padding-bottom: 4px;
  }

  .navbar-left {
    flex-grow: 1;
  }

  .navbar-right {
    margin-left: 0;
  }

  .lang-button {
    font-size: 11px;
    padding: 5px 7px;
    margin-right: 6px;
  }

  .login-button {
    font-size: 11px;
    padding: 5px 7px;
    margin-right: 2px;
  }

  .navbar-right .cta-button {
    display: none;
  }

  .hamburger-menu-button {
    font-size: 18px;
    padding: 5px 7px;
    margin-left: 4px;
  }

  .hero-section {
    padding: 40px 10px;
    min-height: auto;
  }

  .hero-headline {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-headline .rotating-text {
    display: block;
    min-height: 1.3em;
  }

  /* 768px'deki 32px'i ezer */
  .hero-subheadline {
    font-size: 14px;
  }

  /* 768px'deki 16px'i ezer */
  .hero-section .hero-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-section .cta-primary,
  .hero-section .cta-secondary {
    width: 100%;
    max-width: 280px;
    font-size: 14px;
    padding: 10px 20px;
  }

  .section-title {
    font-size: 24px;
  }

  /* 768px'deki 28px'i ezer. Features-section'daki 30px'i de ezer */
  .section-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  /* 768px'deki 16px'i ve mb:30px'i ezer. Features-section'daki 15px'i ve mb:20px'i de ezer */

  .feature-item:nth-child(n) {
    animation-delay: 0.1s;
  }

  /* Başka bir özellik listesi için */
  .pricing-toggle {
    flex-direction: column;
    display: flex;
    align-items: stretch;
    padding: 10px;
  }

  /* .pricing-toggle-container 768px'de zaten column, burada ek .pricing-toggle için */
  .toggle-btn {
    margin-bottom: 5px;
    font-size: 13px;
    padding: 8px 15px;
  }

  /* 768px'deki .toggle-btn'i ezer */
  .toggle-btn:last-child {
    margin-bottom: 0;
  }

  .savings-badge {
    display: block;
    margin-left: 0;
    margin-top: 3px;
  }

  .price-value {
    font-size: 36px;
  }

  .period {
    font-size: 14px;
  }

  .dedicated-cta-section .cta-headline {
    font-size: 24px;
  }

  /* 768px'deki 28px'i ezer */
  .dedicated-cta-section .cta-buttons-group {
    flex-direction: column;
    gap: 15px;
  }

  .dedicated-cta-section .cta-button-main,
  .dedicated-cta-section .cta-button-secondary-alt {
    width: 100%;
    max-width: 280px;
    font-size: 15px;
  }

  /* 768px'dekileri ezer */

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Muhtemelen .blog-listing-grid ile aynı amaçlı */
  .blog-card-content {
    padding: 20px;
  }

  .integrations-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }

  /* 768px'dekileri ezer */
  .integration-name {
    font-size: 13px;
  }

  .premium-showcase-title {
    font-size: 22px !important;
  }

  /* 768px'deki 26px'i ezer */
  .premium-showcase-description {
    font-size: 14px;
  }

  /* 768px'deki 15px'i ezer */
  .premium-showcase-section .cta-button-dark-bg {
    width: 100%;
    max-width: 280px;
    font-size: 14px;
    padding: 11px 20px;
  }

  .brand-logos-row {
    gap: 15px;
  }

  /* 768px'deki 20px'i ezer */
  .brand-logos-row img {
    height: 25px;
    max-width: 90px;
  }

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

  /* 768px'dekileri ezer */
  .footer-about,
  .footer-links {
    margin-bottom: 15px;
    text-align: center;
  }

  /* 768px'dekileri ezer */
  .social-media-links {
    justify-content: center;
  }

  /* 768px'dekileri ezer */
  .footer-bottom p {
    font-size: 13px;
  }

  .footer-logo-img {
    max-height: 30px;
    text-align: center;
  }

  /* --- 480px MOBİL MENÜ VE SUP AYARLARI --- */
  sup {
    font-size: 8px !important;
    /* BURASI 6px OLARAK DÜZELTİLDİ (Kodda 8px, yorum dikkate alınarak 8px bırakıldı) */
    vertical-align: top;
    position: relative;
    top: -0.8em;
    margin-left: 1px;
    margin-top: 10px;
    /* Margin-top sıfırlandı (Kodda 10px, yorum dikkate alınarak 10px bırakıldı) */
  }

  .logo sup {
    top: -1.2em;
  }

  .mobile-nav-menu ul li a:not(.login-button-mobile):not(.cta-button-mobile) {
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
  }

  .mobile-nav-menu ul li a.login-button-mobile,
  .mobile-nav-menu ul li a.cta-button-mobile {
    margin-left: 20px;
    margin-right: 20px;
    padding: 11px 15px;
    font-size: 14px;
  }

  /* -------------------------------------- */

  /* Blog Card (480px) */
  .blog-card-title {
    font-size: 18px;
    min-height: auto;
  }

  /* 768px ile aynı, teyit */
  .blog-card-excerpt {
    font-size: 14px;
  }

  /* 768px ile aynı, teyit */
  .blog-card-meta {
    font-size: 12px;
  }

  .meta-left {
    gap: 10px;
    flex-basis: 100%;
    /* Tarih ve okuma süresini tam genişlik yap */
    justify-content: space-between;
    /* Aralarını aç */
    margin-bottom: 8px;
    /* Eğer read-more alta geçerse diye */
  }

  .blog-card-meta .read-more {
    flex-basis: 100%;
    text-align: right;
    /* Linki alta alıp sağa yasla */
  }

  .pagination a,
  .pagination span {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  /* Features Grid - 3D Parallax (480px) - Zaten 768px altında sıfırlanmıştı, burada daha ince ayarlar */
  /* .features-section genel bölüm ya da 3D parallax içeren bölüm olabilir. Adlandırmaya dikkat. */
  /* Eğer bu 3D parallax içeren .features-section ise: */
  .features-section.parallax-section {
    /* Örnek bir sınıflandırma, eğer ayrıysa */
    padding: 40px 10px;
  }

  .features-grid {
    /* Bu .features-grid, 3D parallax olan. 768px'deki gap:20px'i ezer */
    gap: 15px;
  }

  .feature-card-image-wrapper {
    /* 768px'deki 180px'i ezer */
    height: 150px;
  }

  .feature-card-content {
    padding: 15px;
  }

  .feature-card-title {
    font-size: 17px;
  }

  .feature-card-description {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .feature-card-link {
    font-size: 13px;
  }

  /* .feature-card-icon vs. 768px'de zaten sıfırlandığı için burada ek ezme gerekmeyebilir. */

  /* Responsive Düzenlemeler (Features Section - Tabs) (480px) */
  .features-section {
    /* Bu .features-section, tablı olan. 768px'deki paddingleri ezer. */
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .features-section .section-title {
    /* .section-title (24px) genelini ezer, 768px'deki (30px) i ezer */
    font-size: 24px;
    /* Zaten genel .section-title ile aynı, teyit amaçlı */
  }

  .features-section .section-subtitle {
    /* .section-subtitle (14px) genelini ezer, 768px'deki (15px) i ezer */
    font-size: 13px;
    margin-bottom: 15px;
    /* 768px'deki mb:20px'yi ezer */
  }

  .interactive-services-content {
    /* 768px'dekileri ezer */
    padding: 10px;
    gap: 10px;
    /* min-height: 300px; // YORUM: Çok küçük mobil min yükseklik kaldırıldı, içerik belirlesin */
  }

  .services-selector {
    /* 768px'dekileri ezer */
    padding-bottom: 8px;
  }

  .service-tab {
    /* 768px'dekileri ezer */
    font-size: 12px;
    padding: 6px 10px;
    /* DEĞİŞİKLİK: Dokunma hedefi için padding biraz artırıldı (5px 8px -> 6px 10px) */
    margin-right: 5px;
    margin-bottom: 5px;
    /* DEĞİŞİKLİK: Mobil butonlar arası dikey boşluk tutarlı hale getirildi */
  }

  .panel-title {
    font-size: 18px;
  }

  /* 768px'deki 22px'i ezer */
  .panel-description {
    font-size: 12px;
  }

  /* 768px'deki 13px'i ezer */
  .diagram-placeholder {
    padding: 8px 10px;
  }

  /* 768px'dekileri ezer */
  .diagram-step-item {
    padding: 4px 8px;
  }

  /* 768px'dekileri ezer */
  .step-counter {
    width: 18px;
    height: 18px;
    font-size: 10px;
    margin-right: 5px;
  }

  /* 768px'dekileri ezer */
  .step-content-box .step-title {
    font-size: 12px;
  }

  /* 768px'dekileri ezer */
  .step-content-box .step-description {
    font-size: 9px;
  }

  /* 768px'dekileri ezer */
  .step-icon-right {
    font-size: 12px;
  }

  /* 768px'deki 14px'i ezer */
  .diagram-arrow {
    font-size: 14px;
    margin: 4px 0;
  }

  /* 768px'deki 16px'i ezer */
  .panel-cta .cta-button {
    font-size: 13px;
    padding: 9px 18px;
    /* DEĞİŞİKLİK: Dokunma hedefi için padding biraz artırıldı (8px 15px -> 9px 18px) */
    /* GELİŞTİRME NOTU: Çok küçük ekranlarda bile butonların tıklanabilirliği (min. 44px yükseklik/genişlik) önemlidir. */
  }

  /* Problem/Çözüm Karşılaştırma Blokları (Modern Variant) */
  .problem-solution-section.modern-variant {
    /* 820px ve 768px'dekileri ezer */
    padding: 60px 0;
  }

  .problem-solution-section.modern-variant .section-title {
    /* Genel .section-title (24px) ezer, 768px'deki (28px) i ezer */
    font-size: 26px;
    /* İkinci 480px bloğundaki değer, diğer 480px section-title (24px) değerini ezer */
  }

  .problem-solution-section.modern-variant .section-subtitle {
    /* Genel .section-subtitle (14px, mb:25px) ezer, 768px'deki (16px, mb:40px) i ezer */
    font-size: 15px;
    margin-bottom: 40px;
    /* İkinci 480px bloğundaki değer */
  }

  .comparison-column {
    /* 820px'dekileri ezer */
    padding: 25px 20px;
    /* Mobilde iç boşluklar */
  }

  .comparison-column ul li {
    font-size: 13.5px;
  }

  .comparison-column ul li i {
    margin-top: 1px;
    font-size: 14px;
  }

  /* Problem/Çözüm Kartları (Modern Variant ve Genel) */
  .problem-card,
  .solution-card {
    /* 768px'deki padding ile aynı, teyit. */
    padding: 20px;
    text-align: center;
  }

  .problem-card h3,
  .solution-card h3 {
    font-size: 16px;
    text-align: center;
  }

  .problem-card p,
  .solution-card p {
    font-size: 13px;
    text-align: center;
  }

  .solution-arrow {
    /* 768px'de display:none idi, burada tekrar görünür ve stil alır */
    display: block;
    /* Veya flex, içeriğe göre. Orjinal display:none'ı ezer. */
    font-size: 16px;
    margin: 3px 0;
    text-align: center;
    /* Eğer flex ise align/justify center */
  }
}

/* ==========================================================================
   5. GENİŞ EKRANLAR İÇİN DÜZELTMELER (769px ve üstü)
   ========================================================================== */
@media (min-width: 769px) {
  /* Problem/Çözüm Grid */
  .problem-solution-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 30px;
    /* İlk tanımda 20px idi, sonraki tanım bunu 30px olarak eziyor. Bu birleştirilmiş halde son değer geçerli. */
  }

  .solution-arrow {
    /* Bu genel .solution-arrow için, 768px altında display:none olabilir */
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg);
    margin: 0;
    text-align: center;
  }

  .problem-solution-grid > .solution-arrow {
    /* Daha spesifik seçici, üsttekini destekler/ezer */
    margin: 0;
    transform: rotate(0deg);
    align-self: center;
    padding: 0 15px;
  }

  /* Nasıl Çalışır (Süreç Adımları) */
  .step-connector-arrow {
    display: flex;
    /* 992px altında none idi, burada tekrar görünür */
  }
}

/* @media (max-width: 1024px) veya mobil menü breakpoint'iniz içinde */
.mobile-nav-menu {
  background-color: #fff;
}

.mobile-nav-main-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item a,
.mobile-nav-item .mobile-accordion-trigger {
  display: block;
  padding: 15px 25px;
  color: #222222;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-item:last-child a,
.mobile-nav-item:last-child .mobile-accordion-trigger {
  border-bottom: none;
}

.mobile-nav-item a:hover,
.mobile-nav-item .mobile-accordion-trigger:hover {
  background-color: #f8f8f8;
  color: #000000;
}

.mobile-nav-item.has-accordion .mobile-accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-accordion-arrow {
  font-size: 0.8em;
  transition: transform 0.3s ease-in-out;
}

.mobile-nav-item.has-accordion.open .mobile-accordion-trigger {
  background-color: #f0f0f0;
  font-weight: 600;
}

.mobile-nav-item.has-accordion.open .mobile-accordion-arrow {
  transform: rotate(180deg);
}

.mobile-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding-top 0.35s ease-out,
    padding-bottom 0.35s ease-out;
  background-color: #f9f9f9;
}

.mobile-accordion-panel.open {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff;
}

.mobile-accordion-panel .mobile-links-column {
  padding: 0 25px 0 40px;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.mobile-accordion-panel .mobile-links-column:last-child {
  margin-bottom: 0;
}

.mobile-accordion-panel h4 {
  font-size: 12px;
  color: #555;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 8px;
  font-weight: 600;
  padding-bottom: 5px;
}

.mobile-accordion-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-accordion-panel ul li a {
  padding: 8px 0;
  font-size: 15px;
  font-weight: normal;
  color: #333;
  border-bottom: none !important;
  background-color: transparent !important;
}

.mobile-accordion-panel ul li a:hover {
  color: #000 !important;
  text-decoration: underline;
}

.mobile-nav-separator {
  height: 1px;
  background-color: #000000;
  margin: 10px 25px;
}

.mobile-nav-item.button-item a {
  text-align: center;
  margin: 5px 25px;
  border-radius: 5px;
  border-bottom: none;
}

.mobile-nav-item.button-item a.login-button-mobile {
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid #ddd;
}

.mobile-nav-item.button-item a.login-button-mobile:hover {
  background-color: #e0e0e0;
}

.mobile-nav-item.button-item a.cta-button-mobile {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}

.mobile-nav-item.button-item a.cta-button-mobile:hover {
  background-color: #333333;
}

/* Pro Visual Responsive Styles */
@media (max-width: 968px) {
  .pro-visual {
    max-width: 100%;
    height: 280px;
  }

  .pro-visual .text-line {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  /* Blog Snippet Carousel Mobile */
  .blog-snippet-section {
    padding: 60px 15px;
  }

  .blog-snippet-section .container {
    position: relative;
  }

  .blog-snippet-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    gap: 12px;
  }

  .blog-snippet-header .section-title {
    text-align: left;
    margin: 0;
  }

  .blog-snippet-nav {
    display: flex;
    gap: 8px;
  }

  .blog-home-carousel-wrapper {
    overflow: hidden;
    position: relative;
  }

  .blog-snippet-nav .nav-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #000;
  }

  .blog-snippet-nav .nav-btn:hover:not(:disabled) {
    border-color: #000;
    background: #f9fafb;
  }

  .blog-snippet-nav .nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .blog-home-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .blog-home-carousel .blog-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  /* Dark theme support for blog carousel navigation */
  html.dark-theme .blog-snippet-nav .nav-btn {
    background: #1f1f1f;
    border-color: #333;
    color: #fff;
  }

  html.dark-theme .blog-snippet-nav .nav-btn:hover:not(:disabled) {
    border-color: #555;
    background: #2a2a2a;
  }

  .pro-visual {
    height: 260px;
  }

  .pro-visual .text-line {
    font-size: 36px;
  }

  .pro-visual .text-stack {
    padding: 0 30px;
  }
}

@media (max-width: 480px) {
  .pro-visual {
    height: 240px;
  }

  .pro-visual .text-line {
    font-size: 28px;
  }

  .pro-visual .growth-chart {
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 80px;
    gap: 10px;
  }
}

/* Contact Info Section (Contact page) */
.contact-info-section {
  padding: 30px 0 60px;
  background-color: #f4f6f9;
}
.contact-info-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-info-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 20px 24px;
  border-radius: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}
.contact-info-card:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 8px;
  color: #333333;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-content {
  text-align: left;
}
.contact-info-content h3 {
  margin: 0 0 4px 0;
  font-size: 13px;
  color: #888888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-info-content a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
}
.contact-info-content a:hover {
  color: #000000;
}

@media (max-width: 768px) {
  .contact-info-section {
    padding: 30px 0 50px;
  }
  .contact-info-grid {
    flex-direction: column;
    gap: 16px;
  }
  .contact-info-card {
    padding: 18px 20px;
    max-width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .contact-info-section {
    padding: 25px 0 40px;
  }
  .contact-info-card {
    padding: 16px 18px;
  }
  .contact-info-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .contact-info-content a {
    font-size: 14px;
  }
}

/* ============================================
   SERVICE TABS - Enhanced with pricing & badges
   ============================================ */

.service-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}

.service-tab .tab-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ffd700;
  color: #0a0e27;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  white-space: nowrap;
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-tab .tab-text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.service-tab .tab-price {
  font-size: 11px;
  color: #666;
  font-weight: 500;
  opacity: 0.8;
}

.service-tab.active .tab-price {
  color: #fff;
  opacity: 1;
}

/* Panel Highlights - Quick feature list with Clean Design */
.panel-highlights {
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  border: 1px solid #e5e7eb;
}

.highlights-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a0e27;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlights-title i {
  color: #3b82f6;
  font-size: 1.3rem;
}

.feature-quick-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

.feature-quick-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
}

.feature-quick-list li > i {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 8px;
  font-size: 18px;
  margin-top: 2px;
}

.feature-quick-list li > i.ri-edit-box-line,
.feature-quick-list li > i.ri-gallery-line,
.feature-quick-list li > i.ri-calendar-event-line,
.feature-quick-list li > i.ri-focus-3-line {
  background: #dbeafe;
  color: #1d4ed8;
}

.feature-quick-list li > i.ri-search-line,
.feature-quick-list li > i.ri-file-list-3-line,
.feature-quick-list li > i.ri-ticket-line,
.feature-quick-list li > i.ri-rocket-line,
.feature-quick-list li > i.ri-article-line {
  background: #dcfce7;
  color: #15803d;
}

.feature-quick-list li > i.ri-share-line,
.feature-quick-list li > i.ri-star-smile-line,
.feature-quick-list li > i.ri-group-line,
.feature-quick-list li > i.ri-checkbox-multiple-line,
.feature-quick-list li > i.ri-coupon-line {
  background: #fef3c7;
  color: #ca8a04;
}

.feature-quick-list li > i.ri-chat-3-line,
.feature-quick-list li > i.ri-trophy-line,
.feature-quick-list li > i.ri-mail-line,
.feature-quick-list li > i.ri-line-chart-line {
  background: #fce7f3;
  color: #be185d;
}

.feature-quick-list li > i.ri-calendar-line,
.feature-quick-list li > i.ri-user-settings-line,
.feature-quick-list li > i.ri-live-line,
.feature-quick-list li > i.ri-smartphone-line,
.feature-quick-list li > i.ri-shield-check-line {
  background: #e0e7ff;
  color: #4338ca;
}

.feature-quick-list li > i.ri-bar-chart-line,
.feature-quick-list li > i.ri-mail-send-line,
.feature-quick-list li > i.ri-pie-chart-line,
.feature-quick-list li > i.ri-flask-line,
.feature-quick-list li > i.ri-flashlight-line,
.feature-quick-list li > i.ri-dashboard-line {
  background: #fed7aa;
  color: #c2410c;
}

.feature-quick-list li > i.ri-shopping-cart-line,
.feature-quick-list li > i.ri-bank-card-line,
.feature-quick-list li > i.ri-truck-line,
.feature-quick-list li > i.ri-bar-chart-box-line {
  background: #dbeafe;
  color: #1d4ed8;
}

.feature-content {
  flex: 1;
}

.feature-content strong,
.feature-quick-list li strong {
  font-weight: 600;
  color: #111827;
  display: inline;
}

.feature-content span,
.feature-quick-list li {
  color: #6b7280;
}

/* Dark theme */
html.dark-theme .hero-badge {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(243, 244, 246, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

html.dark-theme .hero-badge .badge-text {
  color: #0a0e27;
}

html.dark-theme .panel-highlights {
  background: #1e293b;

  border-color: #334155;
}

html.dark-theme .highlights-title {
  color: #f1f5f9;
}

html.dark-theme .feature-quick-list li {
  color: #d1d5db;
}

html.dark-theme .feature-content strong,
html.dark-theme .feature-quick-list li strong {
  color: #f9fafb;
}

html.dark-theme .feature-quick-list li > i {
  opacity: 0.9;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .service-tab .tab-badge {
    font-size: 9px;
    padding: 2px 6px;
    top: -6px;
    right: -6px;
  }

  .service-tab .tab-text {
    font-size: 12px;
  }

  .service-tab .tab-price {
    font-size: 10px;
  }

  .panel-highlights {
    padding: 18px;
    margin: 18px 0;
  }

  .highlights-title {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .feature-quick-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-quick-list li {
    font-size: 13px;
    gap: 10px;
  }

  .feature-quick-list li > i {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }
}


/* ==========================================================================
   MODERN TAB LAYOUT - Minimal Clean Design
   ========================================================================== */
/* .modern-tab-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  margin-top: 50px;
  padding: 0;
}

.tab-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--lume-border);
  padding-right: 32px;
}

.modern-tab-btn {
  background: transparent;
  border: none;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--lume-text-light);
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
}

.modern-tab-btn:hover {
  background: var(--lume-bg-light);
  color: var(--lume-dark);
}

.modern-tab-btn.active {
  background: var(--lume-black);
  color: var(--lume-white);
  font-weight: 600;
}

.tab-content-area {
  position: relative;
}

.modern-tab-panel {
  display: none;
  animation: fadeInPanel 0.25s ease;
}

.modern-tab-panel.active {
  display: block;
}

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

.panel-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.panel-text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel-icon {
  width: 48px;
  height: 48px;
  background: var(--lume-black);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lume-white);
  font-size: 22px;
}

.panel-heading {
  font-size: 32px;
  font-weight: 700;
  color: var(--lume-dark);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
}

.panel-desc {
  font-size: 16px;
  color: var(--lume-text-light);
  line-height: 1.65;
  margin: 0;
}

.panel-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--lume-text);
}

.panel-feature-list li i {
  color: var(--lume-black);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.panel-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--lume-black);
  color: var(--lume-white);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.panel-cta-btn:hover {
  background: var(--lume-dark);
  transform: translateY(-1px);
}

.panel-visual {
  background: var(--lume-bg-light);
  border: 1px solid var(--lume-border);
  border-radius: 12px;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-placeholder {
  width: 80px;
  height: 80px;
  background: var(--lume-white);
  border: 1px solid var(--lume-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lume-text-light);
  font-size: 32px;
}

@media (max-width: 1024px) {
  .modern-tab-layout {
    grid-template-columns: 180px 1fr;
    gap: 36px;
  }

  .panel-content-wrapper {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }

  .panel-heading {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .modern-tab-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tab-sidebar {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--lume-border);
    padding-right: 0;
    padding-bottom: 16px;
    gap: 8px;
  }

  .modern-tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .panel-content-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .panel-visual {
    min-height: 240px;
    order: -1;
  }

  .panel-heading {
    font-size: 24px;
  }
} */

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

.pricing-contact-cta-section9 .pricing-container9 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-cta-wrapper9 {
  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 */
.pricing-cta-wrapper9::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 */
.pricing-cta-wrapper9::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;
}

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

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

.pricing-badge9 {
  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;
}

.pricing-badge9 svg {
  width: 16px;
  height: 16px;
  color: #172554;
}

.pricing-heading9 {
  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;
}

.pricing-btn-group9 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pricing-btn9 {
  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;
}

.pricing-btn-primary9 {
  background-color: #172554;
  color: #ffffff;
  border-color: #172554;
}

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

/* Responsive */
@media (max-width: 900px) {
  .pricing-contact-cta-section9 {
    padding: 60px 0 80px;
  }

  .pricing-cta-wrapper9 {
    padding: 2.5rem;
  }

  .pricing-heading9 {
    font-size: 36px;
  }
}

/* ==========================================================================
   GLOBAL SECTION TYPOGRAPHY SYSTEM - Enterprise + Modern Startup
   ========================================================================== */

/* Primary Section Headers (Main Content Sections) */
.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--lume-dark);
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--lume-text-light);
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}

/* Section Header Container for consistent spacing */
.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-header .section-title {
  margin-bottom: 16px;
}

.section-header .section-subtitle {
  margin-bottom: 0;
}

/* Responsive Typography - Mobile First Approach */
@media (max-width: 1024px) {
  .section-title {
    font-size: 34px;
  }

  .section-subtitle {
    font-size: 16px;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    letter-spacing: -0.01em;
  }

  .section-subtitle {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 40px;
  }

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

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
  }
}