﻿@import url('https://fonts.cdnfonts.com/css/satoshi');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap');

@import url('../fonts/Amazed.otf');

@font-face {
  font-family: 'Hellombah';
  src: url('/assets/fonts/hellombah/Hellombah.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.hellombah {
  font-family: 'Hellombah', sans-serif;
}

/* ================= NAV BAR ================= */


/* ================================================= */
/*                 GENEL AYARLAR                     */
/* ================================================= */
body {
  margin: 0;
  padding: 0;
  font-family: Inter, sans-serif;
  color: #333;
}

/* ================================================= */
/*            ANA PENCERE (MACOS PANEL)              */
/* ================================================= */
.panel-container {
  position: relative;
  width: 1280px;
  min-height: 700px;
  margin: 120px auto;
  background: #ffffff;
  border-radius: 18px;
  border: 2px solid #c9c9c9;
  box-shadow: 
    0 12px 32px rgba(0,0,0,0.15),
    inset 0 0 0 1px #e8e8e8;
  overflow: hidden;
}

/* ---------- ÜST BAR (MACOS BUTONLARI) ---------- */
.window-bar {
  width: 100%;
  height: 38px;
  background: linear-gradient(to bottom, #f6f6f6, #eaeaea);
  border-bottom: 1px solid #d3d3d3;
  display: flex;
  align-items: center;
  padding-left: 14px;
  gap: 10px;
  box-sizing: border-box;
}

.win-btn {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
}
.win-red { background: #ff5f57; }
.win-yellow { background: #ffbd2f; }
.win-green { background: #28c940; }

/* ================================================= */
/*               ANA LAYOUT (SOL + SAĞ)              */
/* ================================================= */
.content-wrapper {
  display: flex;
  height: calc(100% - 38px);
  width: 100%;
}

/* ================================================= */
/*                      SIDEBAR                      */
/* ================================================= */
.sidebar {
  width: 300px;
  padding: 24px;
  background: #ffffff;
  border-right: 1px solid #e5e5e5;
  overflow-y: auto;
}

.menu-title {
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 700;
}

.menu-group h3 {
  font-size: 14px;
  margin-top: 22px;
  margin-bottom: 8px;
  color: #666;
  font-weight: 600;
}

.menu-group button {
  width: 100%;
  padding: 12px;
  margin-bottom: 8px;
  background: #f1f1f1;
  border: 1px solid #ddd;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: 0.2s;
  font-size: 15px;
}
.menu-group button:hover {
  background: #e6e6e6;
}

/* ================================================= */
/*                        CHAT                       */
/* ================================================= */
.chat-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.chat-header {
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #e5e5e5;
}

.chat-window {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

/* ================================================= */
/*                   MESAJ BALONLARI                 */
/* ================================================= */
.message {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}

.message-body {
  padding: 14px 18px;
  border-radius: 14px;
  max-width: 75%;
  font-size: 17px;
  line-height: 1.6;
  background: #f2f2f2;
  color: #111;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
  animation: fadeIn 0.25s ease;
}

.message.bot .message-body {
  background: #ececec;
  border-color: #dcdcdc;
}

.message.user .message-body {
  background: #dff7e8;
  border-color: #c5e8d4;
}

.avatar {
  width: 32px;
  height: 32px;
  background: #d4d4d4;
  border-radius: 50%;
  color: #333;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- MESAJ GİRİŞ ANİMASYONU ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================= */
/*                 TYPING ANİMASYONU                 */
/* ================================================= */
.typing {
  padding: 6px 12px;
  background: #ddd;
  display: inline-flex;
  gap: 4px;
  border-radius: 10px;
}

.typing span {
  width: 6px;
  height: 6px;
  background: #555;
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

.typing span:nth-child(2) { animation-delay: .15s }
.typing span:nth-child(3) { animation-delay: .3s }

@keyframes blink {
  0% { opacity: .3 }
  50% { opacity: 1 }
  100% { opacity: .3 }
}

/* ================================================= */
/*                   GRAFİK BUTONU                   */
/* ================================================= */
.chart-btn {
  margin-top: 12px;
  padding: 10px 14px;
  background: #4b7bec;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
}
.chart-btn:hover {
  background: #3867d6;
}

/* ================================================= */
/*                    HERO SECTION                   */
/* ================================================= */

.hero-llm {
  margin: 120px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* --------------------- ANA KART --------------------- */
.hero-container {
  width: 100%;
  max-width: 1500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 90px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 15% 20%, rgba(34,211,238,0.35), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(56,189,248,0.35), transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(74,222,128,0.35), transparent 45%),
    linear-gradient(135deg, #020617, #020617);

  backdrop-filter: blur(14px);

  box-shadow: 
    0 25px 60px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* ------------------ SOL TARAF (METİN) ------------------ */
.hero-left {
  max-width: 720px;
  color: #ffffff;
}

/* ------------------ SAĞ TARAF (GÖRSEL) ------------------ */
.hero-right {
  position: relative;
  width: 520px;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Robot Görseli (artık kullanılmıyor ama dursun) */
.robot-img {
  width: 440px;
  max-width: 100%;
  z-index: 3;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.4));
}

/* Arkaplan partikül canvas */
#particleCanvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ------------------ 3D ICON BAR ------------------ */
.hero-icons {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.icon-3d {
  width: 58px; 
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.25));
  transition: 0.3s ease;
}

.icon-3d:hover {
  transform: translateY(-6px) scale(1.08);
}

/* --------------------- METİN BAŞLIKLARI --------------------- */
.hero-left h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.4px;
}

.subtitle {
  font-size: 20px;
  opacity: 0.85;
  margin-bottom: 22px;
  font-weight: 500;
}

.hero-desc {
  font-size: 19px;
  line-height: 1.75;
  opacity: 0.92;
  margin-bottom: 32px;
}

/* ---------------------- CTA BUTON ---------------------- */
.cta-btn {
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  color: #000;
  padding: 15px 34px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: .35s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(34,197,94,0.4);
}

/* ------------------ IŞIKLI PREMIUM ÇERÇEVE ------------------ */
.hero-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  padding: 1.5px;

  background: linear-gradient(
    120deg,
    rgba(34,211,238,0.9),
    rgba(56,189,248,0.9),
    rgba(74,222,128,0.9)
  );
  background-size: 300% 300%;
  animation: glow 7s linear infinite;

  -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

/* ------------------ HERO ANİMASYONLARI ------------------ */
@keyframes glow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ================================================= */
/*                  RESPONSIVE HERO                  */
/* ================================================= */

@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    padding: 55px 40px;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-right {
    width: 380px;
    height: 380px;
    margin-top: 40px;
  }

  .robot-img {
    width: 310px;
  }

  .hero-left h1 {
    font-size: 38px;
  }

  .hero-desc {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 40px 24px;
  }

  .hero-left h1 {
    font-size: 30px;
  }

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

/* ================================================= */
/*                    ASK SECTION                   */
/* ================================================= */

/* Ana Konteyner */
.ask-section {
  margin: 120px auto;
  text-align: center;
  max-width: 1100px;
  padding: 0 20px;
}

/* Bölüm Başlığı */
.ask-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #222;
}

/* Kartlar için FLEX yapı */
.ask-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

/* Tekil Soru Kartı */
.ask-card {
  background: #ffffff;
  padding: 20px 28px;
  font-size: 17px;
  border-radius: 14px;
  border: 1px solid #eaeaea;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.25s ease;
  cursor: default;
  max-width: 320px;
}

/* Hover Efekti */
.ask-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* Açıklama Metni */
.ask-info {
  margin: 30px auto 20px;
  font-size: 18px;
  color: #444;
  max-width: 800px;
}

/* Alt Özellik İkon Grid */
.features-grid {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Tekil Özellik Kutusu */
.f-item {
  background: #eef4ff;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 17px;
  color: #1f3fa3;
  font-weight: 600;
  transition: 0.25s ease;
  border: 1px solid #d7e5ff;
}

/* Özellik Hover */
.f-item:hover {
  background: #dbe9ff;
  transform: translateY(-4px);
}

/* ASK Responsive */
@media (max-width: 768px) {
  .ask-card {
    max-width: 100%;
  }
}

/* ================================================= */
/*                    WHY SECTION                   */
/* ================================================= */

.why-section {
  margin: 120px auto;
  max-width: 1100px;
  padding: 0 20px;
  text-align: center;
}

.why-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #222;
}

.why-grid {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.why-card {
  background: #ffffff;
  padding: 22px 28px;
  font-size: 18px;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.25s ease;
  max-width: 320px;
}

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

.why-desc {
  font-size: 18px;
  color: #444;
  max-width: 850px;
  margin: 32px auto 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-card {
    max-width: 100%;
  }
}

/* ================================================= */
/*                  BENEFITS SECTION                */
/* ================================================= */

.benefits-section {
  margin: 120px auto;
  text-align: center;
  max-width: 1100px;
  padding: 0 20px;
}

.benefits-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #222;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.benefit-card {
  background: linear-gradient(145deg, #ffffff, #f4f6ff);
  padding: 22px 28px;
  border-radius: 16px;
  font-size: 18px;
  line-height: 1.45;
  color: #2c2c2c;
  border: 1px solid #e6e9ff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.25s ease;
  max-width: 320px;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
  background: linear-gradient(145deg, #eef3ff, #ffffff);
}

@media (max-width: 768px) {
  .benefit-card {
    max-width: 100%;
  }
}

/* ================================================= */
/*                 TIMELINE SECTION                  */
/* ================================================= */

.timeline-section {
  margin: 150px auto;
  max-width: 1300px;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

/* Partikül Arkaplan */
#particleLayer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.timeline-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 70px;
}

.timeline-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  position: relative;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #4c6ef5;
  color: white;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(76,110,245,0.4);
  margin: 0 auto 12px;
}

.timeline-step {
  background: #ffffff;
  padding: 24px 20px;
  border-radius: 22px;
  border: 1px solid #e6e8ff;
  box-shadow: 0 14px 26px rgba(0,0,0,0.06);
  width: 240px;
  position: relative;
  transition: 0.25s ease;
  overflow: hidden;
}

.timeline-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(120deg,#6EA8FF,#4EC8F4,#62F2A4);
  background-size: 300% 300%;
  animation: glow 6s linear infinite;
  -webkit-mask-composite:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.timeline-step:hover {
  transform: translateY(-6px) scale(1.05);
}

.timeline-step.big {
  width: 290px;
  padding: 32px 26px;
}

.timeline-step.medium {
  width: 220px;
}

.timeline-step.step-image {
  width: 260px;
  height: 200px;
  padding: 0;
  background: #f7f9ff;
  perspective: 1000px;
}

.timeline-step.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotateY(-15deg) rotateX(6deg) scale(1.05);
  transition: .4s ease;
}

.timeline-step.step-image:hover img {
  transform: rotateY(-2deg) rotateX(0deg) scale(1.1);
}

.zigzag-up {
  margin-top: -40px;
}

.zigzag-down {
  margin-top: 40px;
}

.zigzag-mid {
  margin-top: 0;
}

.timeline-line {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg,#6ea8ff,#598afc,#82c4ff);
  background-size: 300% 300%;
  animation: pulseLine 4s ease infinite;
}

@keyframes pulseLine {
  0% { background-position: 0% 50%; opacity: .6; }
  50% { background-position: 100% 50%; opacity: 1; }
  100% { background-position: 0% 50%; opacity: .6; }
}

/* ================================================= */
/*              SKILLS SECTION (WHITE)               */
/* ================================================= */

.skills-section {
  padding: 120px 30px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 80px auto;
}

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

/* SKILLS HEADER */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  background: white;
  --webkit-background-clip: text;
  
}

.section-subtitle {
  color: #555;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* HEXAGON GRID */
.skills-hexagon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
}

.skill-hexagon {
  width: 200px;
  height: 230px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.skill-hexagon:hover {
  transform: translateY(-10px);
}

/* HEXAGON INNER (dark premium) */
.hexagon-inner {
  width: 100%;
  height: 100%;
  transform: rotate(30deg);
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    #050b14 0%,
    #071a2e 25%,
    #0b2f52 55%,
    #0e486d 75%,
    #0f5c7a 100%
  );
  border: 1.5px solid rgba(255,255,255,0.08);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  transition: all .35s ease;
}

.skill-hexagon:hover .hexagon-inner {
  border-color: #5cd2ff;
  transform: rotate(30deg) translateY(-6px);
  box-shadow:
    0 0 16px rgba(92, 210, 255, 0.55),
    0 0 42px rgba(92, 210, 255, 0.35),
    0 20px 40px rgba(0,0,0,0.6);
}

/* HEXAGON CONTENT */
.hexagon-content {
  position: absolute;
  inset: 0;
  transform: rotate(-30deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
}

.skill-icon-hex {
  font-size: 48px;
  margin-bottom: 14px;
  color: #5cd2ff;
  animation: float 4s ease-in-out infinite;
}

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

.skill-name-hex {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e5f3ff;
  margin-bottom: 10px;
}

/* PROGRESS BAR */
.skill-level {
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  overflow: hidden;
}

.skill-level-fill {
  height: 100%;
  background: linear-gradient(90deg, #5cd2ff, #38bdf8);
  border-radius: 3px;
  animation: fillLevel 1.8s cubic-bezier(.4,0,.2,1);
}

@keyframes fillLevel {
  0% { width: 0; }
  100% { width: var(--level); }
}

.skill-percentage-hex {
  font-size: 14px;
  color: #cfe9ff;
  margin-top: 8px;
  font-weight: 600;
}

/* CATEGORY TABS */
.skill-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-tab {
  padding: 12px 30px;
  background: #f3f3f3;
  border: 1px solid #dcdcdc;
  border-radius: 30px;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 3px 7px rgba(0,0,0,0.05);
}

.category-tab:hover {
  background: #fdfaff;
  border-color: #9d4fff;
  color: #7d2fff;
}

.category-tab.active {
  background: linear-gradient(135deg, #9d4fff, #5cd2ff);
  border-color: #9d4fff;
  color: #fff;
  box-shadow: 0 5px 25px rgba(157, 79, 255, 0.35);
}

/* ================================================= */
/*            CONVERSATION BLOK ALANI                */
/* ================================================= */

.conversation-block {
  margin: 100px auto;
  width: 100%;
  max-width: 1300px;
}

.conv-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.conv-img {
  width: 180px;
}

.conv-name {
  font-size: 18px;
  opacity: 0.7;
}

.dialog {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bubble {
  padding: 16px 22px;
  border-radius: 18px;
  font-size: 18px;
  max-width: 420px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.customer-bubble {
  background: #ffffff;
  border-left: 4px solid #6c8cff;
  align-self: flex-start;
}

.ai-bubble {
  background: #e8f8ff;
  border-right: 4px solid #45c4ff;
  align-self: flex-end;
}

/* OPTION BUTTONS */
.option-buttons {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.option-buttons button {
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid #dfe6ff;
  background: #f7f9ff;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-style: preserve-3d;
}

.option-buttons button:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 22px rgba(108, 140, 255, 0.25);
}

.option-buttons button.active {
  background: #6c8cff;
  color: #fff;
  border-color: #4c72ff;
  box-shadow: 0 12px 25px rgba(76, 114, 255, 0.35);
  transform: translateY(-4px) scale(1.02);
}

/* BALON ANİMASYONLARI */
@keyframes bubbleFadeLeft {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes bubbleFadeRight {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}

.customer-bubble {
  background: #ffffff;
  border-left: 4px solid #6c8cff;
  align-self: flex-start;
  animation: bubbleFadeLeft .35s ease;
}

.ai-bubble {
  background: #e8f8ff;
  border-right: 4px solid #45c4ff;
  align-self: flex-end;
  animation: bubbleFadeRight .35s ease;
}

/* =========================================================
   KİMLER İÇİN? – 3D CARD
   ========================================================= */

.target-section {
  padding: 90px 5%;
  background: #ffffff;
  text-align: center;
}

.target-title {
  font-family: 'Manrope', sans-serif;
  font-size: 54px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 55px;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1400px;
  margin: 0 auto;
}

.target-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 20px;
  height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  box-shadow: 
    0 10px 22px rgba(0,0,0,.08),
    inset 0 0 0 1px rgba(255,255,255,.6);
  transform-style: preserve-3d;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.target-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, #00cfff, transparent, #8b5cf6);
  opacity: 0;
  transition: .3s;
}

.target-card:hover::before {
  opacity: .22;
}

.target-card:hover {
  transform: translateY(-8px) rotateX(5deg) rotateY(-3deg);
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

.target-card img {
  width: 140px;
  margin-bottom: 14px;
  transform: 
    translateZ(50px)
    rotateX(0deg)
    rotateY(0deg)
    scale(1);
  transition: 
    transform 0.6s ease,
    filter 0.6s ease;
}

.target-card:hover img {
  transform:
    translateZ(70px)
    rotateX(8deg)
    rotateY(-8deg)
    scale(1.08);
  filter: 
    drop-shadow(0 20px 35px rgba(0,0,0,.25))
    brightness(1.1);
}

.target-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  transform: translateZ(22px);
}

.target-card p {
  font-size: 14.5px;
  line-height: 1.5;
  color: #4b5563;
  transform: translateZ(16px);
}

.target-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -120%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.35),
    transparent 70%
  );
  transform: rotate(25deg);
  opacity: 0;
  transition: all 0.7s ease;
  pointer-events: none;
}

.target-card:hover::after {
  top: 120%;
  left: 120%;
  opacity: 1;
}

@media(max-width: 1100px) {
  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .target-grid {
    grid-template-columns: 1fr;
  }

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

  .target-card img {
    width: 120px;
  }
}

/* =========================================================
   CTA SECTION – DEMO TALEP ALANI
   ========================================================= */

.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a, #020617);
  text-align: center;
  border-radius: 120px 120px 0 0;
  margin: 120px 20px -30px 20px;
  position: relative;
  z-index: -1;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 207, 255, 0.15),
    transparent 60%
  );
  z-index: 0;
}

.cta-section * {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 28px;
  line-height: 1.2;
}

.cta-section p {
  font-size: 18px;
  color: #cbd5f5;
  max-width: 700px;
  margin: 0 auto 45px auto;
  line-height: 1.7;
}

.cta-section .cta-btn {
  background: linear-gradient(135deg, #00cfff, #6366f1);
  color: #ffffff;
  border: none;
  padding: 18px 48px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.35);
  transition: all 0.3s ease;
}

.cta-section .cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.5);
  filter: brightness(1.1);
}

.cta-section .cta-btn:active {
  transform: scale(0.96);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 90px 6%;
  }

  .cta-section h2 {
    font-size: 34px;
  }

  .cta-section p {
    font-size: 16px;
  }

  .cta-section .cta-btn {
    padding: 16px 36px;
    font-size: 16px;
  }
}

/* ================================================= */
/*   HERO TERMINAL + VECTOR DB MOCKUP & ROZETLER    */
/* ================================================= */

.hero-badges {
  margin: 18px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

/* Terminal kutusu */
.hero-terminal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: radial-gradient(circle at top left, #1f2937, #020617);
  border-radius: 26px;
  padding: 18px 18px 20px;
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(148, 163, 184, 0.4);
  overflow: hidden;
}

/* Üst bar */
.hero-terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.term-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid rgba(15, 23, 42, 0.7);
}

.term-dot.red { background: #f97373; }
.term-dot.yellow { background: #facc15; }
.term-dot.green { background: #22c55e; }

.term-title {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
}

/* Terminal içerik */
.hero-terminal-main {
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.12), transparent 55%);
  border-radius: 18px;
  padding: 16px 14px;
  font-family: "Space Grotesk", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.3);
  position: relative;
  overflow: hidden;
}

.term-line {
  margin-bottom: 10px;
  line-height: 1.5;
}

.term-line:last-child {
  margin-bottom: 0;
}

.term-line.user {
  color: #e5e7eb;
  opacity: 0.9;
}

.term-prefix {
  color: #22c55e;
  margin-right: 6px;
}

.term-line.ai {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(56, 189, 248, 0.5);
}

.term-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
  margin-right: 8px;
}

/* Yan kartlar (Vector DB, Belge İndeksi, Erişim Logu) */
.hero-terminal-side {
  position: absolute;
  right: -10px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  width: 180px;
  transform: rotate(-8deg);
}

.side-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.9));
  border-radius: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(96, 165, 250, 0.6);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
}

.side-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #bfdbfe;
  margin-bottom: 4px;
}

.side-card p {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  color: #e5e7eb;
}

@media (max-width: 1024px) {
  .hero-terminal-side {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-badges {
    justify-content: center;
  }
}




/* Scrollbar base */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.25) transparent;
}
*::-webkit-scrollbar { width: 8px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.25); border-radius: 10px; }

.ntc-shell {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 18px;
}

.ntc-window {
  width: 100%;
  max-width: 1200px;
  min-height: 720px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ntc-topbar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.9);
}

.ntc-mac-dots { display: flex; gap: 6px; }
.ntc-mac-dots span { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.ntc-dot-close { background: #ff5f57; }
.ntc-dot-min { background: #febb2e; }
.ntc-dot-full { background: #27c93f; }

.ntc-title {
  flex: 1;
  text-align: center;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.3px;
}

.ntc-hamburger {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.ntc-hamburger span { height: 3px; border-radius: 4px; background: #111827; transition: 0.3s; }
.ntc-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.ntc-hamburger.active span:nth-child(2) { opacity: 0; }
.ntc-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.ntc-layout {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 0;
}
.ntc-layout.sidebar-collapsed { grid-template-columns: 0 1fr; }

.ntc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 5;
}
.ntc-overlay.active { opacity: 1; pointer-events: all; }

.ntc-sidebar {
  background: rgba(247,248,252,0.82);
  border-right: 1px solid rgba(0,0,0,0.06);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: 0.3s ease;
  z-index: 10;
}
.ntc-sidebar.closed { transform: translateX(-100%); opacity: 0; pointer-events: none; }

.ntc-profile { display: flex; gap: 12px; align-items: center; padding: 12px; border-radius: 12px; background: #eef2ff; border: 1px solid rgba(0,0,0,0.05); }
.ntc-profile img { width: 40px; height: 40px; border-radius: 12px; }
.ntc-meta { font-size: 13px; line-height: 1.3; }
.ntc-meta strong { display: block; color: #0f172a; }

.ntc-new-chat {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  background: white;
  cursor: pointer;
  text-align: left;
}

.ntc-menu { display: grid; gap: 8px; }
.ntc-menu-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #475569;
  margin-top: 6px;
}

.ntc-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 2000;
}
.ntc-modal.show {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.ntc-modal-content {
  background: #ffffff;
  padding: 22px 24px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.16);
  max-width: 360px;
  width: 90%;
}
.ntc-modal-content h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}
.ntc-modal-content p {
  margin: 0 0 18px 0;
  color: #334155;
  line-height: 1.5;
}
.ntc-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.ntc-modal-actions button {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  font-weight: 600;
}
.ntc-modal-cancel {
  background: #e2e8f0;
  color: #0f172a;
}
.ntc-modal-confirm {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}
.ntc-menu-item {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.05);
  background: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.ntc-menu-item.active { border-color: #a78bfa; box-shadow: 0 0 0 2px rgba(167,139,250,0.25); }

.ntc-main {
  background: transparent;
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: relative;
}

.ntc-scroll-bottom-btn {
  position: absolute;
  left: 50%;
  bottom: 74px;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}
.ntc-scroll-bottom-btn.visible { opacity: 1; pointer-events: all; }
.ntc-scroll-bottom-btn:hover { transform: translate(-50%, -1px); }

.ntc-header {
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  gap: 10px;
  background: rgba(255,255,255,0.85);
}
.ntc-status { width: 10px; height: 10px; background: #22c55e; border-radius: 50%; }

.ntc-messages {
  flex: 1 1 0;
  min-height: 0;
  overflow: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-wrap: break-word;
}
.ntc-messages::-webkit-scrollbar { width: 8px; }
.ntc-messages::-webkit-scrollbar-track { background: transparent; }
.ntc-messages::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 10px; }

.ntc-msg { display: flex; gap: 10px; max-width: 70%; opacity: 0; transform: translateY(4px); animation: msgFade 0.25s ease forwards; }
.ntc-msg.ntc-msg-user { margin-left: auto; flex-direction: row-reverse; }

.ntc-avatar {
  width: 34px; height: 34px; min-width: 34px; flex-shrink: 0;
  border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
  color: #0b172a; box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}
.ntc-msg-bot .ntc-avatar { background: linear-gradient(135deg, #2dd4bf, #22c55e); color: #0b172a; border: 1px solid rgba(255,255,255,0.55); }
.ntc-msg-user .ntc-avatar { background: linear-gradient(135deg, #60a5fa, #38bdf8); color: #0b172a; border: 1px solid rgba(255,255,255,0.55); }

.ntc-bubble { padding: 12px 14px; border-radius: 12px; background: #f8fafc; border: 1px solid rgba(0,0,0,0.05); position: relative; display: grid; gap: 6px; }
.ntc-msg-user .ntc-bubble { background: #4f46e5; color: #fff; border-color: transparent; }
.ntc-bubble-text { word-break: break-word; }
.ntc-timestamp { font-size: 11px; color: #94a3b8; text-align: right; }
.ntc-msg-user .ntc-timestamp { color: #dbeafe; }

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

.ntc-footer { padding: 12px 16px; border-top: 1px solid rgba(0,0,0,0.06); background: rgba(255,255,255,0.92); }
.ntc-start-btn {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.08); background: #fff; cursor: pointer;
}
.ntc-start-btn:hover:not(:disabled) { box-shadow: 0 6px 18px rgba(79,70,229,0.18); border-color: rgba(79,70,229,0.3); }
.ntc-start-btn:active:not(:disabled) { transform: translateY(1px); }
.ntc-start-btn:disabled { opacity: 0.65; cursor: not-allowed; }

.ntc-option-row { display: flex; flex-direction: column; gap: 8px; margin: 4px 0 8px; max-width: 320px; }
.ntc-option-btn { padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.08); background: #fff; cursor: pointer; text-align: left; font-size: 14px; transition: 0.2s ease; }
.ntc-option-btn:hover { border-color: rgba(79,70,229,0.35); box-shadow: 0 4px 12px rgba(79,70,229,0.14); }
.ntc-msg + .ntc-option-row { margin-top: 4px; }

@media (max-width: 900px) {
  .ntc-layout { grid-template-columns: 1fr; }
  .ntc-overlay.active { background: rgba(0,0,0,0.08); }
  .ntc-sidebar { position: absolute; top: 0; left: 0; height: 100%; width: 260px; box-shadow: 8px 0 30px rgba(0,0,0,0.08); transform: translateX(0); opacity: 1; pointer-events: auto; display: block; }
  .ntc-main { grid-column: 1; }
  .ntc-sidebar.closed { transform: translateX(-110%); opacity: 0; pointer-events: none; display: none; }
  .ntc-option-row { max-width: 100%; }
  .chat-window { padding: 110px 18px 40px 18px; max-width: 100%; height: 420px; }
  .bubble { max-width: 90%; font-size: 15px; }
  .ai-slider-section { flex-direction: column; margin: 48px 0; }
  .ai-slider-wrapper { width: 100%; }
  .placeholder-img { height: 420px; }
  .dialog-section h2 { font-size: 42px; }
}

@media (max-width: 640px) {
  .ntc-shell { padding: 16px 10px; }
  .ntc-window { min-height: 92vh; width: 100%; border-radius: 14px; }
  .ntc-topbar { padding: 0 10px; gap: 8px; }
  .ntc-title { font-size: 14px; letter-spacing: 0.2px; }
  .ntc-sidebar { width: 240px; padding: 14px; gap: 10px; }
  .ntc-messages { padding: 12px; }
  .ntc-msg { max-width: 85%; gap: 8px; }
  .ntc-bubble { font-size: 13px; }
  .ntc-timestamp { font-size: 11px; }
  .ntc-start-btn { padding: 10px 12px; }
  .chat-window { padding: 100px 14px 34px 14px; height: 380px; }
  .bubble { max-width: 94%; }
  .ai-slider { gap: 18px; }
  .ai-slider-section { margin: 36px 0; }
  .placeholder-img { height: 340px; }
  .dialog-section h2 { font-size: 36px; }
  .placeholder-img img,
  .ai-slider img,
  .ntc-window img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  .ai-hero-container { padding: 70px 12px; }
  .ai-hero-box { padding: 46px 18px; border-radius: 28px; }
  .ai-hero-box h2 { font-size: 28px; line-height: 1.3; }
  .ai-hero-box p { font-size: 15px; line-height: 1.6; }
  .ai-hero-btn { padding: 14px 28px; font-size: 14px; }
  .text-side h2 { font-size: 34px; line-height: 1.25; }
  .text-side p { font-size: 15px; line-height: 1.6; }
  .dimro-section { margin: 80px 0; }
  .dimro-section.show h2,
  .dimro-row.show h2 { color: #ffffff; }
  .dimro-section.show .text-side h2 { color: #0f172a; }
}

@media (max-width: 480px) {
  .ntc-window { min-height: 90vh; border-radius: 12px; }
  .ntc-topbar { height: 44px; }
  .ntc-sidebar { width: 220px; }
  .ntc-msg { max-width: 90%; }
  .chat-window { padding: 90px 12px 28px 12px; height: 360px; }
  .bubble { max-width: 96%; }
  .ntc-modal-content { width: 94%; }
  .placeholder-img { height: 280px; border-radius: 14px; }
  .dialog-section h2 { font-size: 32px; }
  .ai-hero-container { padding: 60px 10px; }
  .ai-hero-box { padding: 40px 16px; border-radius: 24px; }
  .ai-hero-box h2 { font-size: 24px; }
  .ai-hero-box p { font-size: 14px; }
  .text-side h2 { font-size: 30px; }
  .text-side p { font-size: 14px; }
  .dimro-section { margin: 60px 0; }
}




/* ========================================================= */
/*        WORKFLOW SECTION – Kurumsal İş Akış Tasarımı       */
/* ========================================================= */

.workflow-section {
    max-width: 1300px;
    margin: 140px auto;
    padding: 0 30px;
    font-family: "Inter", "DM Sans", sans-serif;
}

.workflow-header {
    text-align: center;
    margin-bottom: 70px;
}

.workflow-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.4px;
}

.workflow-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #1d4ed8;
    letter-spacing: 0.1px;
}

/* GRID */
.workflow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.workflow-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 26px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
    transition: 0.3s ease;
}

.workflow-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0,0,0,.12);
}

.workflow-card.accent {
    background: linear-gradient(135deg, #eef2ff, #e0f2fe);
    border: none;
}

.wf-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.2px;
    margin-bottom: 14px;
    color: #0f172a;
}

.wf-text {
    font-size: 17px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 16px;
    letter-spacing: 0.1px;
}

/* LİSTELER */
.wf-list,
.wf-check,
.wf-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.wf-list li,
.wf-check li,
.wf-bullets li {
    margin-bottom: 8px;
    font-size: 17px;
    padding-left: 20px;
    position: relative;
    color: #334155;
    font-weight: 600;
    line-height: 1.55;
}

.wf-list li::before {
    content: "•";
    color: #6366f1;
    position: absolute;
    left: 0;
}

.wf-check li::before {
    content: "✓";
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.wf-bullets li::before {
    content: "⦿";
    font-size: 10px;
    left: 0;
    color: #7e22ce;
}

/* AYRAÇ */
.wf-divider {
    height: 1px;
    width: 100%;
    background: #e5e7eb;
    margin: 20px 0;
}

.wf-highlight {
    color: #0f172a;
    font-weight: 600;
}

.wf-green {
    color: #16a34a;
    font-weight: 600;
}

/* ALT BLOK */
.workflow-bottom {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
}

/* CTA BÖLÜMÜ */
.workflow-cta {
    background: linear-gradient(135deg, #1e3a8a, #0f1e4e);
    padding: 36px;
    border-radius: 26px;
    text-align: left;
    color: white;
}

.workflow-cta h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.workflow-cta p {
    font-size: 16px;
    color: #dce5ff;
    margin-bottom: 20px;
}

.workflow-btn {
    padding: 14px 28px;
    border-radius: 14px;
    background: #38bdf8;
    border: none;
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
    cursor: pointer;
    transition: 0.25s;
}

.workflow-btn:hover {
    transform: translateY(-4px);
    background: #7dd3fc;
}

/* Responsive */
@media(max-width: 1000px) {
    .workflow-grid,
    .workflow-bottom {
        grid-template-columns: 1fr;
    }
}
