/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #E8740C;
  --orange-hover: #d06508;
  --dark: #1a1a2e;
  --text: #374151;
  --text-light: #6B7280;
  --gray-100: #F9FAFB;
  --gray-200: #F3F4F6;
  --gray-300: #E5E7EB;
  --gray-400: #D1D5DB;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  /* LCP OPT: Sistem fontu fallback — Inter yüklenene kadar metin görünür */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark);
}

.logo-icon { flex-shrink: 0; }
.logo .brand-logo-img { display: block; height: 72px; width: auto; max-width: 320px; object-fit: contain; }
.logo--image { gap: 0; padding: 6px 0; }
@media (max-width: 900px) { .logo .brand-logo-img { height: 60px; max-width: 260px; } }
@media (max-width: 560px) { .logo .brand-logo-img { height: 50px; max-width: 210px; } }

.nav-backdrop { display: none; }

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active { color: var(--dark); }

/* Dropdown Menu (Submenu) 
   ========================================================= */
.nav-list li.menu-item-has-children {
  position: relative;
}

.nav-list li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.6;
  vertical-align: middle;
  transform: translateY(-1px);
}

.nav-list .sub-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15,15,30,0.1), 0 4px 12px rgba(15,15,30,0.04);
  border: 1px solid #E5E7EB;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
  list-style: none;
  margin: 0;
}

/* Hover Bridge Area */
.nav-list .sub-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-list .sub-menu li {
  display: block;
}

.nav-list .sub-menu .nav-link {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  display: block;
  width: 100%;
}

.nav-list .sub-menu .nav-link:hover {
  background: #F9FAFB;
  color: var(--orange);
}

/* Hover over parent opens submenu */
.nav-list li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Sub-sub menus (Level 3+) */
.nav-list .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  margin-left: 5px;
}

/* Mobile adjustments */
@media (max-width: 1024px) {
  .nav-list li.menu-item-has-children > a::after {
    float: right;
    margin-top: 6px;
  }
  .nav-list .sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--orange);
    border-radius: 0;
    padding: 0;
    margin: 5px 0 15px 15px;
    visibility: visible;
    opacity: 1;
    transform: none;
    display: none;
  }
  .nav-list li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
  .nav-list .sub-menu .nav-link {
    padding: 8px 15px;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-login {
  font-size: 0.938rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.btn-login:hover { color: var(--dark); }

.btn-signup {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.938rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: background 0.2s, transform 0.15s;
}

.btn-signup:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/* =========================================================
   Header User Menu (Logged-in Dropdown)
   ========================================================= */
.user-menu { position: relative; }

.user-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--dark, #1a1a2e);
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.user-menu-trigger:hover { border-color: var(--orange, #E8740C); box-shadow: 0 2px 10px rgba(232,116,12,.1); }
.user-menu[data-open="true"] .user-menu-trigger { border-color: var(--orange, #E8740C); }

.user-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange, #E8740C), var(--orange-hover, #d06508));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.user-name { max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-caret { color: #6B7280; transition: transform .2s; }
.user-menu[data-open="true"] .user-caret { transform: rotate(180deg); color: var(--orange, #E8740C); }

.user-menu-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(15,15,30,.12), 0 4px 12px rgba(15,15,30,.06);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 1000;
}
/* Hover & keyboard/click toggle */
.user-menu:hover .user-menu-dropdown,
.user-menu:focus-within .user-menu-dropdown,
.user-menu[data-open="true"] .user-menu-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
/* Hover bridge — dropdown ile trigger arasında boşluğa gelince kapanmasın */
.user-menu-dropdown::before {
  content: "";
  position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}

.user-menu-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #FFF7EC, #FFEAD2);
  border-radius: 10px;
  margin-bottom: 6px;
}
.user-menu-hello { font-size: 12px; color: #6B7280; font-weight: 500; }
.user-menu-head strong { font-size: 15px; color: var(--dark, #1a1a2e); font-weight: 700; }
.user-menu-email { font-size: 12px; color: #6B7280; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.user-menu-list { list-style: none; padding: 0; margin: 0; }
.user-menu-list a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text, #374151);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background .12s, color .12s;
}
.user-menu-list a:hover,
.user-menu-list a:focus-visible {
  background: #FFF1E0;
  color: var(--orange, #E8740C);
}
.user-menu-list svg { color: #6B7280; flex-shrink: 0; }
.user-menu-list a:hover svg,
.user-menu-list a:focus-visible svg { color: var(--orange, #E8740C); }

.user-menu-foot {
  border-top: 1px solid #F3F4F6;
  margin-top: 6px;
  padding-top: 6px;
}
.user-menu-logout {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  color: #DC2626;
  text-decoration: none;
  transition: background .12s;
}
.user-menu-logout:hover { background: #FEF2F2; }
.user-menu-logout svg { color: #DC2626; flex-shrink: 0; }

@media (max-width: 900px) {
  .user-name { max-width: 100px; }
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 40px;
  background: var(--white);
  overflow: hidden;
}

/* Full-overlay SVG for hero connector lines */
.hero-lines-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

/* -- Floating Card Group (Absolute within .hero) -- */
.floating-card {
  position: absolute;
  z-index: 3;
}

.floating-card-group,
.floating-card-group-right {
  position: absolute;
  z-index: 3;
  top: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floating-card-group {
  left: 5%;
}

.floating-card-group-right {
  right: 5%;
}

/* Vertical lines from group to header/footer context */
.floating-line,
.floating-line-v {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gray-400), var(--gray-300));
  margin-bottom: 8px;
  position: relative;
}

.floating-line-v:last-child {
  margin-top: 8px;
  margin-bottom: 0;
  background: linear-gradient(to bottom, var(--gray-300), var(--gray-400), transparent);
}

.floating-line::after,
.floating-line-v:first-child::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 6px rgba(232,116,12,0.4);
}

.floating-card-group-right .floating-line-v:first-child::after {
  background: #10B981;
  box-shadow: 0 0 6px rgba(16,185,129,0.4);
}

/* Stacked cards */
.floating-card-stack {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-300);
  background: var(--white);
}

.sync-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 10px 16px;
  white-space: nowrap;
  font-size: 0.8rem;
}

.floating-card-stack .sync-card + .sync-card {
  border-top: 1px solid var(--gray-200);
}

/* Bottom L-shaped line: down then left */
.floating-bottom-line {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 140px;
  background: linear-gradient(to bottom, var(--gray-300), var(--gray-400));
  pointer-events: none;
}

.floating-bottom-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 2px;
  background: linear-gradient(to left, var(--gray-400), var(--gray-300), transparent);
}

/* Bottom L-shaped line for right side: down then right */
.floating-bottom-line-right {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 109px;
  background: linear-gradient(to bottom, var(--gray-300), var(--gray-400));
  pointer-events: none;
}

.floating-bottom-line-right::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 2px;
  background: linear-gradient(to right, var(--gray-400), var(--gray-300), transparent);
}

.sync-score {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1;
}

.sync-score small {
  font-size: 0.7rem;
  font-weight: 600;
}

.sync-label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.75rem;
}

.sync-toggle {
  display: flex;
  align-items: center;
}

.proxy-badge {
  position: relative;
  width: 110px;
  height: 110px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  overflow: hidden;
}

.badge-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#d1d5db 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.3;
  z-index: 1;
}

.proxy-label {
  position: relative;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.2;
}

.badge-center-icon {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(16,185,129,0.25);
  margin-bottom: 8px;
}

/* -- Hero Center Content -- */
.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 20px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.trust-avatars { display: flex; }

.trust-avatars svg {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -6px;
  flex-shrink: 0;
}

.trust-avatars svg:first-child { margin-left: 0; }

/* Proje logo varyantı — trust-avatars--logos */
.trust-avatars--logos { align-items: center; }
.trust-avatars--logos .trust-avatar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(26,26,46,.12);
  margin-left: -8px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, z-index 0s .2s;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.trust-avatars--logos .trust-avatar-link:first-child { margin-left: 0; }
.trust-avatars--logos .trust-avatar-link:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 14px rgba(26,26,46,.22);
  z-index: 5;
  transition: transform .2s ease, box-shadow .2s ease, z-index 0s;
}
.trust-avatars--logos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
  background: #fff;
  border-radius: 50%;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .trust-avatars--logos .trust-avatar-link { transition: none; }
}

.trust-text {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

/* Hero animasyon stilleri hero.php içindeki <style> bloğunda tanımlıdır. */

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232,116,12,0.35);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,116,12,0.4);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,116,12,0.4);
}

.btn-outline {
  background: var(--white);
  color: var(--dark);
  border: 1.5px solid var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--gray-400);
  background: var(--gray-100);
}

.hero-compliance {
  font-size: 0.8rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 90px;
    padding-bottom: 50px;
  }
  
  .hero-center {
    padding-top: 0;
    width: 100%;
  }

  .hero-title {
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .hero-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1.05rem;
  }

  /* Hide desktop-only floating elements and complex flow section on mobile hero */
  .floating-card-group,
  .floating-card-group-right,
  #heroLinesSvg,
  .flow-section {
    display: none !important;
  }
}

/* ===== Flow Section ===== */
.flow-section {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding: 40px 0;
  overflow: hidden;
}

/* Dotted background across center */
.flow-dots-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, #D1D5DB 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
  pointer-events: none;
}

/* 3-column grid: 1fr 2fr 1fr */
.flow-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.flow-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* ---- COL 1: Left Panel (Tool Logos) ---- */
.flow-left {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

.flow-left-line {
  position: absolute;
  bottom: 100%;
  right: 50%;
  width: 400px;
  height: 280px;
  border-top: 2px dashed #9ca3af; /* Gray-400 for more prominence */
  border-right: 2px dashed #9ca3af;
  border-top-right-radius: 16px;
  
  /* Mask ensures the vertical line is solid, and horizontal fades out to the left */
  -webkit-mask-image: linear-gradient(to left, black 40%, transparent 100%);
  mask-image: linear-gradient(to left, black 40%, transparent 100%);
  
  pointer-events: none;
  z-index: -1;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tool-logo-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: default;
}

.tool-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border-color: var(--gray-400);
}

.tool-logo-card img {
  flex-shrink: 0;
}

/* ---- COL 2: Center Panel ---- */
.flow-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

/* Social icons - absolute left */
.center-icons {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  z-index: 3;
}

.soc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.soc-icon svg { display: block; }

/* SVG lines overlay */
.center-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* SuperCRM pill - centered */
.supercrm-hub {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.supercrm-hub span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

.supercrm-hub img, .supercrm-hub svg {
  max-height: 20px;
  width: auto;
}

/* Connector dots - absolute right */
.hub-connector {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

/* Line behind dots */
.hub-connector::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -4px;
  right: -4px;
  height: 2px;
  background: #E5E7EB;
  transform: translateY(-50%);
  z-index: 0;
}

.connector-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.connector-dot svg { display: block; }

/* ---- COL 3: Right Panel (Contacts) ---- */
.flow-right {
  position: relative;
}

.flow-right-line {
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 400px;
  height: 280px;
  border-top: 2px dashed #9ca3af;
  border-left: 2px dashed #9ca3af;
  border-top-left-radius: 16px;
  -webkit-mask-image: linear-gradient(to right, black 40%, transparent 100%);
  mask-image: linear-gradient(to right, black 40%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s;
}

.contact-card:hover {
  transform: translateX(4px);
}

.contact-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gray-200);
}

.contact-info {
  flex: 1;
  min-width: 0;
}

.contact-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 2px;
  margin-bottom: 6px;
  opacity: 0.85;
}

.contact-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.data-bar {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: #C7D2FE;
  opacity: 0.55;
  width: 80%;
}

.data-bar.short {
  background: #DDD6FE;
  opacity: 0.4;
  width: 55%;
}

/* ===== Logos Strip ===== */
.logos-strip {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px 20px;
  border-top: 1px solid var(--gray-200);
}

.logos-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 28px;
  font-weight: 500;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 20px;
}

.crm-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  opacity: 0.6;
  transition: opacity 0.2s;
  letter-spacing: -0.01em;
}

.crm-logo:hover { opacity: 1; }
.crm-logo.hubspot span { color: var(--orange); }
.crm-logo.freshbooks em { font-style: normal; font-weight: 400; }
.crm-logo.pipedrive { font-weight: 600; letter-spacing: 0.02em; }
.crm-logo sup { font-size: 0.6em; }

.logos-disclaimer {
  font-size: 0.7rem;
  color: #9CA3AF;
  margin-top: 12px;
}

/* ===== How It Works Section ===== */
.hiw-section {
  padding: 80px 0;
  background: var(--white);
}

.hiw-header {
  text-align: center;
  margin-bottom: 60px;
}

.hiw-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7C3AED;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.hiw-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hiw-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Steps */
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hiw-step {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 96px;
  align-items: center;
}

.step-row .hiw-text { order: 1; }
.step-row .hiw-visual { order: 2; }

.step-row-reverse .hiw-visual { order: 1; }
.step-row-reverse .hiw-text { order: 2; }

/* Step number badge */
.hiw-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

.hiw-step-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hiw-step-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 480px;
  opacity: 0.85;
}

/* Visual cards */
.hiw-card {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
}

.hiw-card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
}

/* Card 1: Documentary - dark purple gradient */
.hiw-card-1 .hiw-card-inner {
  background: linear-gradient(135deg, #1a1a2e 0%, #6D28D9 50%, #A78BFA 100%);
}

.hiw-card-1 .hiw-card-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  font-style: italic;
}

/* Card 2: Browser preview - purple glow */
.hiw-card-2 .hiw-card-inner {
  background: linear-gradient(180deg, #1a1a2e 0%, #4C1D95 60%, #C4B5FD 100%);
  flex-direction: column;
  align-items: stretch;
  padding: 0;
}

.hiw-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hiw-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

.hiw-card-text-sm {
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 40px;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hiw-play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* Card 3: Download - light purple gradient */
.hiw-card-3 .hiw-card-inner {
  background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 40%, #C4B5FD 100%);
  min-height: 180px;
  position: relative;
}

/* Decorative circle behind button */
.hiw-card-3 .hiw-card-inner::before {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(109,40,217,0.15);
}

.hiw-card-3 .hiw-card-inner::after {
  content: '';
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(109,40,217,0.1);
}

.hiw-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #7C3AED;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(124,58,237,0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hiw-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.4);
}

/* ===== Stats Section ===== */
.stats-section {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.4;
  max-width: 180px;
}

/* ===== Boost Section ===== */
.boost-section {
  padding: 80px 0;
  background: var(--white);
}

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

.boost-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.boost-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.boost-actions {
  margin-bottom: 48px;
}

.boost-image {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.boost-image svg {
  width: 100%;
  height: auto;
  display: block;
}

.boost-video-wrap {
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-300);
  background: var(--dark);
}

.boost-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  padding: 80px 0 60px;
  background: var(--white);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7C3AED;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.testimonials-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* Marquee wrapper with fade edges */
.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-row {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.marquee-rtl .marquee-track {
  animation: marquee-rtl 35s linear infinite;
}

.marquee-ltr .marquee-track {
  animation: marquee-ltr 45s linear infinite;
}

.marquee-slow .marquee-track {
  animation-duration: 40s;
}

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

/* Testimonial card */
.testimonial-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow 0.2s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.tc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.tc-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.tc-header strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.tc-role {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.tc-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
}

/* ===== Why Us Section ===== */
.why-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.why-header {
  text-align: center;
  margin-bottom: 56px;
}

.why-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7C3AED;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.why-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.why-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.why-card-featured {
  border-color: var(--orange);
  border-width: 2px;
  position: relative;
}

.why-card-featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.why-icon {
  margin-bottom: 20px;
}

.why-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.why-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== Services Section ===== */
.services-section {
  padding: 80px 0;
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7C3AED;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.services-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.services-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

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

/* Large featured card spans full width */
.svc-card-lg {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Card visual area */
.svc-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.svc-visual-1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #E8740C 120%);
  border-radius: 20px 0 0 20px;
  min-height: 280px;
}

.svc-visual-2 { background: var(--gray-100); padding: 32px; }
.svc-visual-3 { background: var(--gray-100); padding: 32px; }
.svc-visual-4 { background: var(--gray-100); padding: 32px; }
.svc-visual-5 { background: var(--gray-100); padding: 32px; }

/* Floating badge inside featured card */
.svc-float-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

/* Decorative circles */
.svc-icon-stack {
  position: relative;
  width: 120px;
  height: 120px;
}

.svc-circle {
  position: absolute;
  border-radius: 50%;
}

.svc-circle-1 {
  width: 120px;
  height: 120px;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
}

.svc-circle-2 {
  width: 80px;
  height: 80px;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
}

.svc-circle-3 {
  width: 40px;
  height: 40px;
  top: 40px;
  left: 40px;
  background: var(--orange);
  box-shadow: 0 4px 20px rgba(232,116,12,0.4);
}

/* Card body */
.svc-card-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.svc-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.svc-card-lg .svc-card-title { font-size: 1.5rem; }

.svc-card-lg .svc-card-desc { margin-bottom: 20px; }

/* Feature checklist */
.svc-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}

.svc-features li svg { flex-shrink: 0; }

/* Small cards: stack visual on top */
.svc-card-sm {
  display: flex;
  flex-direction: column;
}

.svc-card-sm .svc-card-visual {
  border-radius: 0;
}

.svc-card-sm .svc-card-title {
  padding: 24px 24px 0;
}

.svc-card-sm .svc-card-desc {
  padding: 8px 24px 24px;
}

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 40%, #1a1a2e 100%);
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,116,12,0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  margin-bottom: 32px;
}

.cta-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}

.cta-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.cta-trust-avatars {
  display: flex;
}

.cta-trust-avatars svg {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #1a1a2e;
  margin-left: -6px;
}

.cta-trust-avatars svg:first-child { margin-left: 0; }

.cta-trust-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.cta-trust-text strong {
  color: rgba(255,255,255,0.8);
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 80px 0;
  background: var(--gray-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7C3AED;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.contact-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-detail-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-detail-value {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 600;
}

.contact-socials {
  display: flex;
  gap: 12px;
}

.contact-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  color: var(--text-light);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.contact-social:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: rgba(232,116,12,0.05);
}

/* Contact Form */
.contact-form-col {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-md);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--gray-100);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,116,12,0.1);
  background: var(--white);
}

.btn-form {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--dark);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo span {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, border-color 0.2s;
}

.footer-socials a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

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

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

/* ===== Animations ===== */
@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .floating-card,
  .floating-card-group,
  .floating-card-group-right,
  .floating-line,
  .floating-line-v,
  .floating-bottom-line,
  .floating-bottom-line-right,
  .proxy-badge,
  .hero-lines-svg,
  .hero-bg-svg,
  .hero-decoration,
  .hub-rays,
  .orbital,
  .center-lines-svg,
  .hub-connector,
  .curve-li,
  .curve-x,
  .curve-ig,
  .line-right,
  .flow-left-line,
  .flow-right-line { display: none !important; }

  .hero { padding-top: 140px; padding-bottom: 60px; min-height: auto; }
  .hero-content { text-align: center; margin: 0 auto; max-width: 700px; }
  .hero-title { font-size: 2.5rem; }
  .hero-ctas { justify-content: center; }
  .trust-badge { justify-content: center; }

  .flow-dots-bg { display: none; }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .flow-center {
    min-height: auto;
    justify-content: center;
  }

  .center-icons { display: none; }
  .center-lines-svg { display: none; }
  .hub-connector { display: none; }

  .flow-left {
    max-width: 300px;
    margin: 0 auto;
  }

  .avatar-grid {
    max-width: 240px;
    margin: 0 auto;
  }

  .contact-cards {
    max-width: 320px;
    margin: 0 auto;
  }

  .flow-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .stat-item {
    flex-direction: column;
    align-items: center;
  }

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

  .testimonials-title { font-size: 1.8rem; }
  .testimonial-card { width: 280px; }

  .why-title { font-size: 1.8rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .services-title { font-size: 1.8rem; }
  .svc-card-lg { grid-template-columns: 1fr; }
  .svc-visual-1 { border-radius: 20px 20px 0 0; min-height: 200px; }

  .cta-title { font-size: 2.2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }


}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .site-header { z-index: 1200; }
  .mobile-toggle { display: flex; z-index: 1300; position: relative; }
  .header-actions { display: none; }
  .site-header { padding: 14px 0; }
  .logo { font-size: 1.1rem; white-space: nowrap; }

  /* Mobile nav panel */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    box-shadow: -20px 0 60px rgba(0,0,0,0.18);
    padding: 100px 28px 32px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    display: block;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }

  .main-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .main-nav .nav-list li { width: 100%; }
  .main-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 4px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-200);
  }
  .main-nav .nav-link:hover,
  .main-nav .nav-link.active { color: var(--orange); }

  /* Backdrop overlay */
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  body.menu-open { overflow: hidden; }

  /* Animated hamburger → X */
  .mobile-toggle span { transform-origin: center; transition: transform 0.3s, opacity 0.2s; }
  .mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  section { padding-left: 0; padding-right: 0; }

  .hero { padding-top: 130px; padding-bottom: 50px; }
  .hero-title { font-size: 2rem; line-height: 1.15; }
  .hero-desc { font-size: 0.95rem; }
  .hero-badge { font-size: 0.75rem; }

  .hero-ctas { flex-direction: column; align-items: center; }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  .logos-row { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .crm-logo { font-size: 1rem; }

  .boost-section { padding: 60px 0; }
  .boost-title { font-size: 1.7rem; }
  .boost-desc { font-size: 0.95rem; }

  .flow-section { padding: 60px 0; }
  .flow-title { font-size: 1.7rem; }

  .stats-section { padding: 60px 0; }
  .stat-number { font-size: 2.4rem; }

  .testimonials-section { padding: 60px 0; }
  .testimonials-title { font-size: 1.5rem; }
  .testimonials-subtitle { font-size: 0.95rem; }
  .testimonial-card { width: 260px; padding: 18px; }
  .marquee-row { gap: 16px; }
  .why-section { padding: 60px 0; }
  .why-title { font-size: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 24px; }

  .services-section { padding: 60px 0; }
  .services-title { font-size: 1.5rem; }
  .services-subtitle { font-size: 0.95rem; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .svc-card-body { padding: 24px; }
  .svc-card-lg { grid-template-columns: 1fr; }
  .svc-visual-1 { min-height: 180px; border-radius: 20px 20px 0 0; }

  .cta-section { padding: 60px 0; }
  .cta-title { font-size: 1.8rem; }
  .cta-desc { font-size: 1rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-lg, .btn-outline-light { width: 100%; max-width: 320px; justify-content: center; }
  .cta-trust { flex-direction: column; gap: 8px; }

  .contact-section { padding: 60px 0; }
  .contact-title { font-size: 1.6rem; }
  .contact-desc { font-size: 0.95rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info { order: 2; }
  .contact-form-wrap { order: 1; padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }

  .site-footer { padding: 60px 0 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .logo { font-size: 1rem; }
  .hero { padding-top: 120px; }
  .hero-title { font-size: 1.7rem; }
  .hero-desc { font-size: 0.9rem; }

  .trust-badge {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .avatar-grid { max-width: 200px; }
  .stat-number { font-size: 2rem; }

  .boost-title,
  .flow-title,
  .testimonials-title,
  .why-title,
  .services-title,
  .contact-title { font-size: 1.4rem; }
  .cta-title { font-size: 1.5rem; }

  .testimonial-card { width: 240px; padding: 16px; }
  .testimonial-text { font-size: 0.9rem; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-col-title { text-align: center; }

  .svc-card-title { font-size: 1.2rem; }
}

/* ===== FAQ Section (SSS) ===== */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.faq-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}



/* ===== How It Works (HIW) Section ===== */
.hiw-section {
  padding: 100px 0;
  background: var(--white);
}

.hiw-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.hiw-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #7C3AED;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hiw-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hiw-desc {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.6;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.hiw-step {
  display: flex;
  align-items: center;
  gap: 80px;
}

.step-row .hiw-text { order: 1; flex: 1; }
.step-row .hiw-visual { order: 2; flex: 1; }

.step-row-reverse .hiw-text { order: 2; flex: 1; }
.step-row-reverse .hiw-visual { order: 1; flex: 1; }

.hiw-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.hiw-step-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hiw-step-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* HIW Visual Cards & UI Mockups */
.hiw-visual {
  display: flex;
  justify-content: center;
}

.hiw-card {
  width: 100%;
  max-width: 720px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
  border-radius: 28px;
  padding: 0;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video kartı: video tam kapsayıcıyı kaplasın */
.hiw-card.hiw-is-video,
.hiw-card.has-video {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: #000 !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
  overflow: hidden !important;
  position: relative !important;
  aspect-ratio: 16 / 9 !important;
}

/* Video yoksa (fallback) eski oranı koru */
.hiw-card:not(.hiw-is-video):not(.has-video) {
  aspect-ratio: 16/11;
}

/* ── Video: kartı tamamen kaplasın ── */
.hiw-card.has-video .hiw-video,
.hiw-card.hiw-is-video .hiw-video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  transform: none !important;
  display: block !important;
}

/* Fallback (video yokken) */
.hiw-card-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 220px;
  color: rgba(255,255,255,0.2);
  font-size: 4rem;
  font-weight: 800;
}

/* Padding sadece fallback/mockup içeriği olunca */
.hiw-card-inner {
  padding: 30px;
  width: 100%;
  height: 100%;
}

.hiw-card-1 { background: linear-gradient(135deg, #1a1a2e 0%, #E8740C 150%); }
.hiw-card-2 { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); }
.hiw-card-3 { background: linear-gradient(135deg, #E8740C 0%, #1a1a2e 150%); }

.hiw-ui-mockup {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.analysis-status {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.status-label { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 600; }
.status-value { color: #fff; font-size: 3rem; font-weight: 800; line-height: 1; }
.status-value small { font-size: 1rem; opacity: 0.5; margin-left: 4px; }
.status-bar { width: 100%; height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-top: 10px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--orange); border-radius: 4px; box-shadow: 0 0 15px rgba(232,116,12,0.5); }

.mock-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-bottom: 20px;
}

.stat-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 8px solid rgba(232,116,12,0.2);
  border-top-color: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: rotate-soft 10s linear infinite;
}

@keyframes rotate-soft { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.stat-circle span, .stat-circle small { transform: rotate(-360deg); animation: rotate-reverse 10s linear infinite; }
@keyframes rotate-reverse { from { transform: rotate(0); } to { transform: rotate(-360deg); } }

.stat-circle span { color: #fff; font-size: 1.5rem; font-weight: 800; }
.stat-circle small { color: rgba(255,255,255,0.6); font-size: 0.75rem; font-weight: 600; }

.conversion-card {
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  width: 80%;
  border: 1px solid rgba(255,255,255,0.1);
}

.conv-title { display: block; color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.mini-chart { width: 100%; height: auto; overflow: visible; }
.mini-chart path { filter: drop-shadow(0 0 8px rgba(232,116,12,0.4)); }

/* Responsiveness for new HIW */
@media (max-width: 1024px) {
  .hiw-section { padding: 70px 0; }
  .hiw-steps { gap: 70px; }
  .hiw-step {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  /* Force text-first on every step so mobile alternates: text → image */
  .step-row .hiw-text,
  .step-row-reverse .hiw-text { order: 1; }
  .step-row .hiw-visual,
  .step-row-reverse .hiw-visual { order: 2; }

  .hiw-title { font-size: 2.2rem; }
  .hiw-step-title { font-size: 2rem; }
  .hiw-step-num { margin: 0 auto 20px; }
  .hiw-card { width: 100%; max-width: 100%; border-radius: 22px; }
  .hiw-card:not(.hiw-is-video) { aspect-ratio: 16/12; padding: 24px; }
}

@media (max-width: 768px) {
  .hiw-section { padding: 60px 0; }
  .hiw-header { margin-bottom: 50px; }
  .hiw-title { font-size: 1.7rem; }
  .hiw-desc { font-size: 1rem; }
  .hiw-steps { gap: 56px; }
  .hiw-step { gap: 24px; }
  .hiw-step-title { font-size: 1.5rem; }
  .hiw-step-desc { font-size: 0.98rem; }
  .hiw-card { border-radius: 18px; }
  .hiw-card:not(.hiw-is-video) { aspect-ratio: 4/3; padding: 18px; }
  .analysis-status { padding: 24px; }
  .status-value { font-size: 2rem; }
  .stat-circle { width: 110px; height: 110px; border-width: 6px; }
  .conversion-card { width: 90%; padding: 20px; }
}

@media (max-width: 480px) {
  .hiw-title { font-size: 1.45rem; }
  .hiw-step-title { font-size: 1.3rem; }
  .hiw-card:not(.hiw-is-video) { aspect-ratio: 5/4; padding: 14px; }
  .stat-circle { width: 95px; height: 95px; }
  .stat-circle span { font-size: 1.2rem; }
}


.faq-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: padding 0.3s ease;
}

.faq-question span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.3s ease;
}

.faq-icon {
  color: var(--text-light);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

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

.faq-item.active .faq-question span {
  color: var(--orange);
}

.faq-question:hover span {
  color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 0 24px 0;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Mobile Adjustments for FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-title {
    font-size: 2rem;
  }
  .faq-question span {
    font-size: 1rem;
    padding-right: 20px;
  }
}

/* ========================================================
   Scroll Reveal Animations
   ======================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* Revealed state */
.reveal.is-revealed,
.reveal-left.is-revealed,
.reveal-right.is-revealed,
.reveal-scale.is-revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays via data attribute — handled by JS inline style */

/* ========================================================
   Header Interaction Styles (Global)
   ======================================================== */
.acc-noti-wrap, .user-menu { position: relative; }

/* Notification Bell */
.acc-noti-btn { background: #F8FAFC; border: 1.5px solid #E2E8F0; width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; position: relative; color: #1E293B; transition: all 0.2s; }
.acc-noti-btn:hover { border-color: var(--orange); color: var(--orange); background: #FFF7EC; }
.acc-noti-icon { font-size: 1.25rem; }
.acc-noti-badge { position: absolute; top: -6px; right: -6px; background: #DC2626; color: #fff; width: 18px; height: 18px; border-radius: 50%; font-size: 0.65rem; font-weight: 800; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; z-index: 2; }

.acc-noti-dropdown { position: absolute; top: calc(100% + 12px); right: 0; width: 320px; background: #fff; border: 1px solid #E2E8F0; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); z-index: 9999; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: none; display: block !important; }
[data-open="true"] .acc-noti-dropdown { opacity: 1 !important; visibility: visible !important; transform: translateY(0) !important; pointer-events: auto !important; }

.acc-noti-head { padding: 16px 20px; border-bottom: 1px solid #F1F5F9; display: flex; justify-content: space-between; align-items: center; }
.acc-noti-head span { font-weight: 700; color: #1E293B; font-size: 0.95rem; }
.acc-noti-read-all { font-size: 0.75rem; color: var(--orange); font-weight: 600; background: none; border: none; cursor: pointer; padding: 0; }
.acc-noti-read-all:hover { text-decoration: underline; }

.acc-noti-list { max-height: 400px; overflow-y: auto; padding: 8px; }
.acc-noti-item { display: flex; gap: 12px; padding: 12px; border-radius: 10px; text-decoration: none; color: inherit; transition: background 0.15s; margin-bottom: 2px; position: relative; z-index: 1; cursor: pointer; }
.acc-noti-item:hover { background: #F8FAFC; }
.acc-noti-item.is-unread { background: #F0F9FF; border-left: 2px solid #3B82F6; }
.acc-noti-type { width: 32px; height: 32px; background: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; border: 1px solid #E2E8F0; font-size: 1rem; flex-shrink: 0; }
.acc-noti-content { display: flex; flex-direction: column; gap: 2px; }
.acc-noti-title { font-size: 0.85rem; font-weight: 600; color: #1E293B; line-height: 1.4; }
.acc-noti-time { font-size: 0.75rem; color: #94A3B8; }
.acc-noti-empty { padding: 32px 20px; text-align: center; color: #94A3B8; font-size: 0.9rem; }

/* User Menu Header Specifics */
.user-menu-trigger { display: flex; align-items: center; gap: 10px; background: #fff; border: 1.5px solid #E2E8F0; padding: 6px 14px; border-radius: 100px; cursor: pointer; transition: all 0.2s; }
.user-menu-trigger:hover { border-color: var(--orange); }
.user-avatar { width: 30px; height: 30px; background: var(--orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }
.user-name { font-size: 0.9rem; font-weight: 600; color: #1E293B; max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-caret { color: #94A3B8; transition: transform 0.2s; }
[data-open="true"] .user-caret { transform: rotate(180deg); }

.user-menu-dropdown { position: absolute; top: calc(100% + 10px); right: 0; width: 240px; background: #fff; border: 1px solid #E2E8F0; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); z-index: 9999; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.2s; display: block !important; }
[data-open="true"] .user-menu-dropdown { opacity: 1 !important; visibility: visible !important; transform: translateY(0) !important; pointer-events: auto !important; }
.user-menu-head { padding: 16px 20px; border-bottom: 1px solid #F1F5F9; }
.user-menu-hello { display: block; font-size: 0.75rem; color: #94A3B8; margin-bottom: 2px; }
.user-menu-head strong { display: block; font-size: 0.95rem; color: #1E293B; }
.user-menu-email { display: block; font-size: 0.75rem; color: #94A3B8; font-weight: 500; }
.user-menu-list { padding: 8px; list-style: none; }
.user-menu-list a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; text-decoration: none; color: #475569; font-size: 0.88rem; font-weight: 500; transition: all 0.2s; }
.user-menu-list a:hover { background: #F8FAFC; color: var(--orange); }
.user-menu-foot { padding: 8px; border-top: 1px solid #F1F5F9; }
.user-menu-logout { display: flex; align-items: center; gap: 10px; padding: 10px 12px; color: #EF4444 !important; font-weight: 600 !important; }
.user-menu-logout:hover { background: #FEF2F2 !important; }

/* =========================================================
   Author & Expert Boxes (E-E-A-T) — v2 Modern
   Tema: Webmivo (orange #E8740C / dark #1a1a2e)
   ========================================================= */
:where(.author-box, .expert-box) {
  --ab-o: #E8740C;
  --ab-o-h: #d06508;
  --ab-o-soft: #FFF1E0;
  --ab-d: #1a1a2e;
  --ab-t: #374151;
  --ab-tl: #6B7280;
  --ab-bg: #FFFFFF;
  --ab-bd: #E5E7EB;
  --ab-ok: #10B981;
}

.author-box,
.expert-box {
  position: relative;
  margin: 56px 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--ab-bd);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 50px -28px rgba(26, 26, 46, .18),
              0 8px 20px -12px rgba(26, 26, 46, .08);
  transition: box-shadow .25s ease, transform .25s ease;
}
.author-box:hover,
.expert-box:hover {
  box-shadow: 0 32px 60px -28px rgba(26, 26, 46, .25),
              0 10px 24px -12px rgba(26, 26, 46, .1);
  transform: translateY(-2px);
}

/* Üst dekoratif koyu bant */
.author-box::before,
.expert-box::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 88px;
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(232,116,12,.35) 0%, transparent 55%),
    linear-gradient(135deg, #1a1a2e 0%, #24243e 100%);
  z-index: 0;
}

/* İnce turuncu çizgi */
.author-box::after,
.expert-box::after {
  content: "";
  position: absolute; top: 88px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ab-o), #F59E0B, var(--ab-o));
  z-index: 1;
}

/* Expert-box farkı: turuncu bant biraz daha güçlü */
.expert-box::before {
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(232,116,12,.45) 0%, transparent 55%),
    linear-gradient(135deg, #1a1a2e 0%, #2a1a3a 100%);
}

/* Inner wrapper — padding & relative */
.author-box > *,
.expert-box .expert-box-inner,
.expert-box > * {
  position: relative;
  z-index: 2;
}

/* Flex düzeni (inner varsa expert, yoksa author için .author-box doğrudan flex) */
.author-box {
  display: flex; gap: 28px;
  padding: 28px 32px 28px 32px;
  padding-top: 56px; /* bant yüksekliğinin %60'ı */
}
.expert-box { padding: 0; }
.expert-box-inner {
  display: flex; gap: 28px;
  padding: 28px 32px 28px 32px;
  padding-top: 56px;
}

/* ---------- Avatar ---------- */
.author-box-avatar,
.expert-box-avatar {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.author-box-avatar { margin-top: -18px; }
.expert-box-avatar { margin-top: -18px; }

.author-box-avatar a,
.expert-box-avatar a {
  display: block; line-height: 0;
  border-radius: 50%;
  box-shadow: 0 10px 24px -8px rgba(26, 26, 46, .3);
}

.author-box-avatar img,
.author-box-img,
.expert-box-avatar img,
.expert-img {
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px rgba(232,116,12,.18);
  background: #fff;
  width: 104px; height: 104px;
  object-fit: cover;
  transition: transform .3s ease, box-shadow .3s ease;
}
.author-box-avatar:hover img,
.expert-box-avatar:hover img {
  transform: scale(1.04);
  box-shadow: 0 0 0 4px rgba(232,116,12,.3);
}

/* Expert rozeti (verified tik) */
.expert-box-avatar::after {
  content: "";
  position: absolute;
  right: -2px; bottom: 2px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ab-o) 0%, #F59E0B 100%);
  border: 3px solid #fff;
  box-shadow: 0 4px 10px -2px rgba(232,116,12,.5);
  background-image:
    linear-gradient(135deg, var(--ab-o) 0%, #F59E0B 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: cover, 60% 60%;
  background-position: center, center;
  background-repeat: no-repeat;
}

/* ---------- Info ---------- */
.author-box-info,
.expert-box-content {
  flex: 1; min-width: 0;
}

.author-box-header {
  display: flex; gap: 16px;
  justify-content: space-between; align-items: flex-start;
  margin-bottom: 10px;
}

.author-box-label,
.expert-box-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase;
  color: var(--ab-o);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  padding: 5px 10px;
  background: var(--ab-o-soft);
  border-radius: 999px;
  border: 1px solid rgba(232,116,12,.2);
}
.expert-box-badge::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ab-o);
  box-shadow: 0 0 0 3px rgba(232,116,12,.25);
  animation: abPulse 2s infinite;
}
@keyframes abPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232,116,12,.25); }
  50%      { box-shadow: 0 0 0 6px rgba(232,116,12,.05); }
}

.author-box-name,
.expert-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ab-d);
  margin: 2px 0 2px;
  letter-spacing: -.015em;
  line-height: 1.25;
}
.author-box-name a,
.expert-name a {
  color: inherit; text-decoration: none;
  background-image: linear-gradient(var(--ab-o), var(--ab-o));
  background-size: 0 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .3s ease, color .2s ease;
}
.author-box-name a:hover,
.expert-name a:hover {
  color: var(--ab-o);
  background-size: 100% 2px;
}

.expert-title {
  font-size: 0.92rem;
  color: var(--ab-tl);
  font-weight: 600;
  margin: 2px 0 12px;
}

.author-box-stats {
  font-size: 0.8rem;
  color: var(--ab-tl);
  background: var(--ab-o-soft);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(232,116,12,.2);
  white-space: nowrap;
  font-weight: 600;
}
.author-box-stats strong {
  color: var(--ab-o);
  font-weight: 800;
  margin-right: 3px;
}

/* Stats (expert) */
.expert-stats {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 14px;
}
.expert-stat {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700;
  color: var(--ab-d);
  background: var(--ab-o-soft);
  border: 1px solid rgba(232,116,12,.18);
  padding: 6px 12px;
  border-radius: 999px;
}
.expert-stat svg { color: var(--ab-o); width: 14px; height: 14px; }

/* Bio */
.author-box-bio,
.expert-desc {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--ab-t);
  margin: 0 0 16px;
}

/* Expertise (eski class) */
.author-box-expertise {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--ab-o); font-weight: 700;
  margin-bottom: 10px;
}
.author-box-expertise svg { color: var(--ab-o); }

/* Certificates */
.expert-certs {
  margin: 4px 0 18px;
  padding: 14px 16px;
  background: #fafafa;
  border: 1px solid var(--ab-bd);
  border-radius: 14px;
}
.expert-certs strong {
  display: block; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--ab-d); font-weight: 800;
  margin-bottom: 10px;
}
.expert-certs ul {
  padding: 0; margin: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: 6px 8px;
}
.expert-certs li {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--ab-d);
  padding: 5px 11px 5px 9px;
  background: #fff;
  border: 1px solid var(--ab-bd);
  border-radius: 999px;
  position: static;
}
.expert-certs li::before {
  content: "✓";
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(16, 185, 129, .12);
  color: var(--ab-ok);
  border-radius: 50%;
  font-size: 0.72rem; font-weight: 900;
  position: static;
  flex-shrink: 0;
}

/* Footer */
.author-box-footer,
.expert-footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px dashed var(--ab-bd);
}

.author-box-link,
.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 700;
  color: var(--ab-d);
  padding: 8px 14px;
  background: var(--ab-o-soft);
  border: 1px solid rgba(232,116,12,.2);
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s, border-color .2s;
}
.author-box-link svg,
.btn-link svg { transition: transform .2s; }
.author-box-link:hover,
.btn-link:hover {
  background: var(--ab-o); color: #fff;
  border-color: var(--ab-o);
  transform: translateY(-1px);
}
.author-box-link:hover svg,
.btn-link:hover svg { transform: translateX(3px); }

/* Socials */
.author-box-socials,
.expert-socials {
  display: flex; gap: 8px;
}
.author-box-socials a,
.expert-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: var(--ab-tl);
  background: #fff;
  border: 1px solid var(--ab-bd);
  transition: color .2s, background .2s, border-color .2s, transform .2s;
  text-decoration: none;
}
.author-box-socials a:hover,
.expert-socials a:hover {
  color: #fff;
  background: var(--ab-o);
  border-color: var(--ab-o);
  transform: translateY(-2px);
}
.author-box-socials a svg,
.expert-socials a svg { width: 16px; height: 16px; }

/* ---------- Container query (TOC'lu hizmet kolonu için) ---------- */
.wt-content .expert-box,
.wt-content .author-box,
.single-article-content .author-box {
  container-type: inline-size;
}

@container (max-width: 560px) {
  .author-box,
  .expert-box-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 18px;
    padding: 24px 22px;
    padding-top: 48px;
  }
  .author-box-avatar,
  .expert-box-avatar { margin-top: -30px; }
  .author-box-header {
    flex-direction: column; align-items: center; gap: 10px;
  }
  .expert-stats,
  .expert-certs ul { justify-content: center; }
  .author-box-footer,
  .expert-footer {
    flex-direction: column;
    gap: 14px;
    justify-content: center;
  }
  .author-box-socials,
  .expert-socials { justify-content: center; }
}

/* ---------- Mobil fallback (container query desteklenmiyorsa) ---------- */
@media (max-width: 640px) {
  .author-box,
  .expert-box-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 24px 22px;
    padding-top: 48px;
    gap: 18px;
  }
  .author-box-avatar,
  .expert-box-avatar { margin-top: -30px; }
  .author-box-avatar img,
  .expert-box-avatar img,
  .author-box-img,
  .expert-img { width: 92px; height: 92px; }
  .author-box-header {
    flex-direction: column; align-items: center; gap: 10px;
  }
  .expert-stats,
  .expert-certs ul { justify-content: center; }
  .author-box-footer,
  .expert-footer {
    flex-direction: column; gap: 14px; align-items: stretch;
  }
  .author-box-link,
  .btn-link { justify-content: center; }
  .author-box-socials,
  .expert-socials { justify-content: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .author-box, .expert-box,
  .author-box *, .expert-box * {
    transition: none !important;
    animation: none !important;
  }
}

/* ===== Home Projects Slider Section (Screenshot Match) ===== */
.home-projects-slider-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.slider-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 24px;
}

.slider-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.slider-header-left {
  max-width: 700px;
}

.slider-header-left .section-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.slider-header-left .section-desc {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
}

.btn-all-referans-main {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background: #f59e0b; /* Golden Yellow like the screenshot */
  color: #1a1a1a;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-all-referans-main:hover {
  background: #d97706;
}

.projects-slider-relative {
  position: relative;
  margin: 0 -24px;
  padding: 0 24px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.2s;
}

.slider-arrow:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.slider-arrow.slider-prev { left: 0; }
.slider-arrow.slider-next { right: 0; }

.projects-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 20px;
}

.projects-slider-track::-webkit-scrollbar { display: none; }

.success-card {
  flex: 0 0 410px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.success-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}

.success-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.success-card-body {
  padding: 0 4px;
}

.success-card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.success-card-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 24px;
}

.success-card-author {
  margin-bottom: 30px;
}

.author-name {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.author-title {
  font-size: 0.85rem;
  color: #94a3b8;
}

.success-card-stats {
  display: flex;
  gap: 12px;
}

.stat-box {
  flex: 1;
  background: #f8fafc;
  padding: 12px;
  border-radius: 8px;
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a1a1a;
}

.stat-header svg {
  color: #1a1a1a;
  opacity: 0.8;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .slider-header-left .section-title { font-size: 2.5rem; }
  .success-card { flex: 0 0 350px; }
}

@media (max-width: 768px) {
  .slider-header-wrap { flex-direction: column; align-items: flex-start; gap: 20px; }
  .slider-header-left .section-title { font-size: 2rem; }
  .btn-all-referans-main { width: 100%; justify-content: center; }
  .success-card { flex: 0 0 85vw; }
  .slider-arrow { display: none; }
}


/* ===== Home Blog Section ===== */
.home-blog-section {
  padding: 100px 0;
  background: var(--white);
}

.home-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}

.home-section-header-left { flex: 1; }
.home-section-header-right { 
  flex: 1; 
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.btn-all-posts {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 4px;
  transition: color 0.2s;
}

.btn-all-posts:hover { color: var(--orange); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.blog-card-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-card-date .day {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.blog-card-date .month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 2px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #94A3B8;
}

.blog-card-cat a {
  color: var(--orange);
  text-decoration: none;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-title a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-title a:hover { color: var(--orange); }

.blog-card-excerpt {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-card-link::after {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}

.blog-card:hover .blog-card-link::after { width: 40px; }

@media (max-width: 1024px) {
  .projects-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .home-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 40px;
  }
  .home-section-header-left,
  .home-section-header-right { flex: none; width: 100%; }
  .home-section-header-right { gap: 14px; }
}

@media (max-width: 640px) {
  .projects-grid, .blog-grid { grid-template-columns: 1fr; }
  .hiw-step { grid-template-columns: 1fr; gap: 32px; }
  .home-section-header { gap: 14px; margin-bottom: 32px; }
  .home-section-header .section-label {
    font-size: 0.78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--orange, #E8740C);
  }
  .home-section-header .section-title {
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 6px 0 0;
  }
  .home-section-header .section-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text, #4a4a60);
  }
  .home-section-header .btn-all-posts {
    align-self: flex-start;
    font-size: 0.88rem;
  }
}

/* ===== Single Content Area Spacing (Projects, Services, Blog) ===== */
.single-proje-content,
.single-hizmet-content,
.single-content,
.entry-content {
  font-size: 1.065rem;
  line-height: 1.8;
  color: #334155;
}

.single-proje-content p,
.single-hizmet-content p,
.single-content p,
.entry-content p {
  margin-bottom: 24px;
}

.single-proje-content p:last-child,
.single-hizmet-content p:last-child,
.single-content p:last-child,
.entry-content p:last-child {
  margin-bottom: 0;
}

.single-proje-content h2, .single-proje-content h3, .single-proje-content h4,
.single-hizmet-content h2, .single-hizmet-content h3, .single-hizmet-content h4,
.single-content h2, .single-content h3, .single-content h4,
.entry-content h2, .entry-content h3, .entry-content h4 {
  color: var(--dark);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.single-proje-content h2, .single-hizmet-content h2, .single-content h2, .entry-content h2 { font-size: 1.85rem; }
.single-proje-content h3, .single-hizmet-content h3, .single-content h3, .entry-content h3 { font-size: 1.5rem; }

.single-proje-content strong, .single-proje-content b,
.single-hizmet-content strong, .single-hizmet-content b,
.single-content strong, .single-content b,
.entry-content strong, .entry-content b {
  color: var(--dark);
  font-weight: 700;
}

.single-proje-content ul, .single-proje-content ol,
.single-hizmet-content ul, .single-hizmet-content ol,
.single-content ul, .single-content ol,
.entry-content ul, .entry-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}

.single-proje-content li, .single-hizmet-content li, .single-content li, .entry-content li {
  margin-bottom: 10px;
  list-style: disc;
}

.single-proje-content blockquote,
.single-hizmet-content blockquote,
.single-content blockquote,
.entry-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 20px 30px;
  background: #f8fafc;
  font-style: italic;
  margin-bottom: 24px;
  border-radius: 0 12px 12px 0;
}


