*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #0F1F6B;
  --navy-dark: #091452;
  --navy-light: #E8EBF7;
  --red: #C0202A;
  --red-light: #FAEAEB;
  --cream: #F5F4F0;
  --white: #FFFFFF;
  --text: #0F1F6B;
  --text-muted: #2E3A6B;
  --text-hint: #9AA0BE;
  --border: rgba(15,31,107,0.1);
  --border-md: rgba(15,31,107,0.18);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Mulish', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV-WRAP — navbar + üst kayan yazı barını taşıyan yüzen alan, %2 boşluklu */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: transparent;
  padding: 2% 2% 0 2%;
}

/* ÜST KAYAN YAZI BARI — navbar ile aynı yüzen stil, kırmızı */
.top-ticker {
  background: var(--red);
  border-radius: 16px;
  overflow: hidden;
  padding: 11px 0;
  margin-bottom: 12px;
  box-shadow: 0 12px 32px rgba(15,31,107,0.18);
  white-space: nowrap;
}
.top-ticker-track {
  display: inline-flex;
  animation: topTickerScroll 18s linear infinite;
}
.top-ticker-track span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #fff; letter-spacing: 1px; text-transform: uppercase;
  padding: 0 2.5rem;
  display: flex; align-items: center; gap: 2.5rem;
}
.top-ticker-track span::after { content: '✦'; opacity: 0.6; font-size: 9px; }
@keyframes topTickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15,31,107,0.18);
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo img { height: 30px; display: block; }
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a {
  font-family: 'Mulish', sans-serif;
  font-size: 16px; font-weight: 600;
  color: var(--navy); text-decoration: none; transition: color 0.2s;
  letter-spacing: -0.2px;
}
.nav-links a:hover { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-cta {
  font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 600;
  background: var(--red); color: #fff; border: none; padding: 14px 28px;
  border-radius: 50px; cursor: pointer; text-decoration: none; transition: opacity 0.2s;
  display: flex; align-items: center; gap: 8px; letter-spacing: -0.2px;
}
.nav-cta:hover { opacity: 0.88; }

/* MEGA MENU */
.nav-item { position: relative; }

.nav-item > a {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
}

.nav-item > a .chevron {
  font-size: 10px; transition: transform 0.25s; display: inline-block;
}

.nav-item.open > a .chevron { transform: rotate(180deg); }

.mega-menu {
  display: none;
  position: fixed;
  left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(15,31,107,0.1);
  z-index: 199;
  padding: 2.5rem 3rem;
}

.mega-menu.open {
  display: block;
  animation: menuFadeIn 0.2s ease;
}

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

.mega-menu-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; gap: 3rem;
}

.mega-menu-inner.cols-2 { grid-template-columns: 1fr 1fr; }
.mega-menu-inner.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

.mega-col-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 800;
  color: var(--navy); letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.mega-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }

.mega-links li a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Mulish', sans-serif; font-size: 16px; font-weight: 400;
  color: var(--text-muted); text-decoration: none;
  padding: 8px 12px; border-radius: 8px;
  transition: all 0.15s;
}

.mega-links li a:hover {
  background: var(--navy-light);
  color: var(--navy);
  padding-left: 16px;
}

.mega-links li a .mega-arrow {
  font-size: 12px; color: var(--red); opacity: 0;
  transition: opacity 0.15s;
}

.mega-links li a:hover .mega-arrow { opacity: 1; }

.mega-links li a .mega-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 0.5px;
  background: var(--red-light); color: var(--red);
  padding: 2px 7px; border-radius: 99px;
}

/* SECTOR PILLS */
.sector-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin: 0 auto 2.5rem;
  width: 100%; max-width: 1000px;
}
.sector-pill {
  font-family: 'Mulish', sans-serif;
  font-size: 13px; font-weight: 600;
  background: #fff; color: var(--navy);
  border: 1.5px solid var(--border-md);
  padding: 9px 14px; border-radius: 99px;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 5px;
  box-shadow: 0 2px 8px rgba(15,31,107,0.06);
  white-space: nowrap; flex-shrink: 0;
}
.sector-pill:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(15,31,107,0.12); }
.sector-pill.active { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(15,31,107,0.25); }

/* HERO */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 11.5rem 3rem 4rem;
  position: relative; overflow: hidden;
  background: #fff;
  text-align: center;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px; z-index: 0;
  opacity: 0.5;
}

.hero-content { position: relative; z-index: 2; max-width: 100%; width: 100%; }
.hero-content h1 { max-width: 900px; margin-left: auto; margin-right: auto; }

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 800; line-height: 1.05; letter-spacing: -2.5px;
  color: var(--navy); margin-bottom: 1.5rem;
}

.hero h1 em { font-style: normal; color: var(--red); }

.hero-desc {
  font-size: 17px; color: var(--text-muted); line-height: 1.7;
  max-width: 620px; font-weight: 400; margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.5s forwards;
}

.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.7s forwards;
}

.btn-primary {
  font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 600;
  background: var(--red); color: #fff; border: none; padding: 16px 32px;
  border-radius: 10px; cursor: pointer; text-decoration: none; transition: opacity 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.btn-primary:hover { opacity: 0.88; }

/* TYPING EFFECT */
.typing-word {
  color: var(--red);
  border-right: 3px solid var(--red);
  animation: blink 0.75s step-end infinite;
  padding-right: 4px;
}
@keyframes blink {
  0%, 100% { border-color: var(--red); }
  50% { border-color: transparent; }
}

/* HERO TITLE ANIMATION */
.hero-title-line {
  display: block;
  overflow: hidden;
}
.hero-title-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-title-line:nth-child(2) .hero-title-inner { animation-delay: 0.18s; }
.hero-title-line:nth-child(3) .hero-title-inner { animation-delay: 0.30s; }

.typing-wrapper { display: inline-block; white-space: nowrap; }
.hero-line-fit .hero-title-inner { white-space: nowrap; display: inline-block; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* MOBİL HAMBURGER MENÜ */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px;
  background: transparent; border: none; cursor: pointer;
  padding: 0;
}
.nav-burger span {
  display: block; width: 100%; height: 2.5px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  margin-top: 12px;
  box-shadow: 0 12px 32px rgba(15,31,107,0.18);
  transition: max-height 0.35s ease;
}
.mobile-menu.open { max-height: 80vh; overflow-y: auto; }

.mobile-links { list-style: none; padding: 0.5rem 0; }
.mobile-links > li { border-bottom: 1px solid var(--border); }
.mobile-links > li:last-child { border-bottom: none; }
.mobile-links > li > a {
  display: block; padding: 1rem 1.5rem;
  font-family: 'Mulish', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--navy); text-decoration: none;
}
.mobile-links > li > a:active { background: var(--cream); }

.mobile-accordion-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem; background: transparent; border: none; cursor: pointer;
  font-family: 'Mulish', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--navy); text-align: left;
}
.mobile-accordion-btn .chevron { transition: transform 0.25s; font-size: 12px; }
.mobile-accordion-btn.open .chevron { transform: rotate(180deg); }

.mobile-accordion-panel {
  list-style: none; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--cream);
}
.mobile-accordion-panel.open { max-height: 500px; }
.mobile-accordion-panel li a {
  display: block; padding: 0.8rem 2rem;
  font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
}
.mobile-accordion-panel li a:active { color: var(--red); }

.mobile-cta {
  display: block; margin: 1rem 1.5rem 1.5rem;
  text-align: center;
  font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 700;
  background: var(--red); color: #fff; padding: 14px 24px;
  border-radius: 10px; text-decoration: none;
}


/* NASIL ÇALIŞIYORUZ */
.process-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 3rem;
}
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-label { font-size: 13px; font-weight: 500; color: var(--text-hint); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.75rem; }
.process-steps { display: flex; align-items: center; flex-wrap: wrap; }
.process-step {  background: var(--cream); display: flex; align-items: center; gap: 14px; flex: 1; min-width: 180px; padding: 1rem 1.25rem; border-radius: 12px; transition: background 0.2s; }
.process-num { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 1px; flex-shrink: 0; }
.process-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--navy-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.process-content { flex: 1; }
.process-title { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.process-arrow { font-size: 18px; color: var(--red); opacity: 0.35; flex-shrink: 0; padding: 0 0.25rem; }

.process-cta {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.process-cta-note { font-size: 13px; color: var(--text-hint); font-weight: 300; }

/* HAKKIMIZDA */
.about-section { padding: 6rem 3rem; background: var(--white); }
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-visual {
  background: var(--navy) center/cover no-repeat;
  border-radius: 16px; padding: 3rem;
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,31,107,0.55) 0%, rgba(91,33,107,0.35) 50%, rgba(15,31,107,0.65) 100%);
}
.about-visual-text {
  font-family: 'Space Grotesk', sans-serif; font-size: 100px; font-weight: 800;
  color: rgba(255,255,255,0.12); letter-spacing: -5px; text-align: center;
  line-height: 1; position: relative; z-index: 1; user-select: none;
}
.about-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: var(--red); color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 8px 14px; border-radius: 6px; z-index: 2;
}
.section-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; color: var(--red);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.25rem;
}
.section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--red); }
.about-title {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--navy); margin-bottom: 1.5rem;
}
.about-content p { font-size: 18px; color: var(--text-muted); line-height: 1.9; font-weight: 400; margin-bottom: 1.25rem; }

/* ÇALIŞTIĞIMIZ MARKALAR */
.logos-section { padding: 4rem 3rem; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos-inner { max-width: 1200px; margin: 0 auto; }
.logos-label {
  text-align: center; font-size: 13px; font-weight: 600; color: var(--text-hint);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2rem;
}
.logos-swiper { width: 100%; overflow: hidden; }
.logo-slide {
  width: 100%; display: flex; align-items: center; justify-content: center;
}
.logo-slide img {
  height: 36px; width: auto; object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.25s ease;
}
.logo-slide img:hover { filter: grayscale(0%) opacity(1); }

/* PROJELER */
.projects-section { padding: 6rem 3rem; background: var(--cream); }
.projects-inner { max-width: 1200px; margin: 0 auto; }
.projects-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap;
}
.projects-title {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.05; letter-spacing: -1.5px; color: var(--navy);
}
.projects-subtitle { font-size: 18px; color: var(--text-muted); line-height: 1.9; max-width: 420px; font-weight: 400; }

.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.project-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  text-decoration: none; display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(15,31,107,0.12); }

.project-thumb { height: 260px; overflow: hidden; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.project-card:hover .project-thumb img { transform: scale(1.04); }

.project-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.project-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 0.875rem; }
.project-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  background: var(--navy-light); color: var(--navy);
  padding: 3px 10px; border-radius: 99px;
}
.project-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.3px; margin-bottom: 0.6rem; line-height: 1.3;
}
.project-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; font-weight: 300; flex: 1; }
.project-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.project-link { font-size: 14px; font-weight: 600; color: var(--red); }
.project-year { font-size: 13px; color: var(--text-hint); }

/* CRM PANEL */
.crm-section { background: var(--navy); padding: 6rem 3rem; overflow: hidden; position: relative; }
.crm-section::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(circle, rgba(192,32,42,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.crm-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; align-items: center; gap: 5rem; position: relative; z-index: 1; }
.crm-content { position: relative; z-index: 1; }
.crm-title {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  color: #fff; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 1.25rem;
  text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 8px;
}
.crm-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; font-weight: 400; max-width: 460px; margin-bottom: 2rem; }
.crm-feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 2.5rem; }
.crm-feature-list li {
  position: relative; padding-left: 18px;
  font-size: 16px; color: #fff; line-height: 1.5;
}
.crm-feature-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
.crm-sectors { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2rem; }
.crm-sector-btn {
  font-family: 'Mulish', sans-serif; font-size: 14px; font-weight: 600;
  padding: 11px 22px; border-radius: 99px; border: 1px solid rgba(255,255,255,0.2);
  background: transparent; color: #fff; cursor: pointer; transition: all 0.2s;
}
.crm-sector-btn:hover { border-color: #ffffff; }
.crm-sector-btn.active { background: var(--red); border-color: var(--red); }
.crm-demo-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 700;
  background: var(--red); color: #fff; padding: 16px 32px; border-radius: 10px;
  text-decoration: none; transition: opacity 0.2s;
}
.crm-demo-btn:hover { opacity: 0.88; }

/* CRM VISUAL (mockup paneli) */
.crm-visual { position: relative; z-index: 1; }
.crm-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.45); }
.crm-card-header { background: #f4f4f6; padding: 12px 16px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid #e8e8ee; }
.crm-dot { width: 10px; height: 10px; border-radius: 50%; }
.crm-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600; color: #444; margin-left: 6px; }
.crm-card-body { padding: 16px; }
.crm-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.crm-stat-box { background: #f8f9fb; border-radius: 10px; padding: 12px; text-align: center; border: 1px solid #eee; }
.crm-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1; }
.crm-stat-label { font-size: 10px; color: #999; margin-top: 3px; }
.crm-list { display: flex; flex-direction: column; gap: 8px; }
.crm-list-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: #f8f9fb; border-radius: 10px; border: 1px solid #eee; }
.crm-avatar { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #fff; flex-shrink: 0; }
.crm-item-info { flex: 1; }
.crm-item-name { font-size: 12px; font-weight: 600; color: #222; line-height: 1.3; }
.crm-item-sub { font-size: 10px; color: #aaa; }
.crm-badge { font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 99px; text-transform: uppercase; letter-spacing: 0.5px; }
.crm-card-2 { position: absolute; right: -30px; top: 30px; width: 190px; background: #fff; border-radius: 12px; box-shadow: 0 16px 48px rgba(0,0,0,0.25); padding: 14px; z-index: 2; }
.crm-card-2-title { font-size: 10px; font-weight: 600; color: #aaa; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.crm-mini-bar-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.crm-mini-bar-label { font-size: 10px; color: #666; width: 48px; flex-shrink: 0; }
.crm-mini-bar-bg { flex: 1; height: 5px; background: #eee; border-radius: 99px; overflow: hidden; }
.crm-mini-bar-fill { height: 100%; border-radius: 99px; }
.crm-mini-val { font-size: 10px; font-weight: 700; color: var(--navy); width: 24px; text-align: right; }
.crm-panel-fade { animation: crmPanelFade 0.4s ease; }
@keyframes crmPanelFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* SEKTÖRÜNÜZE ÖZEL DİJİTAL ÇÖZÜMLER */
.pkgcards-section { padding: 6rem 3rem; background: var(--cream); }
.pkgcards-inner { max-width: 1200px; margin: 0 auto; }
.pkgcards-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap;
}
.pkgcards-title {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.05; letter-spacing: -1.5px; color: var(--navy);
}
.pkgcards-subtitle { font-size: 18px; color: var(--text-muted); line-height: 1.9; max-width: 420px; font-weight: 400; }

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

.pkgcard {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden; text-decoration: none; display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pkgcard:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(15,31,107,0.14); }

.pkgcard-thumb { height: 160px; overflow: hidden; }
.pkgcard-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.pkgcard:hover .pkgcard-thumb img { transform: scale(1.06); }

.pkgcard-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.pkgcard-tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  background: var(--navy-light); color: var(--navy);
  padding: 5px 12px; border-radius: 99px; margin-bottom: 0.9rem;
}
.pkgcard-body h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 800;
  color: var(--navy); letter-spacing: -0.3px; margin-bottom: 1rem; line-height: 1.3;
}
.pkgcard-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 1.25rem; flex: 1; }
.pkgcard-list li {
  font-size: 14px; color: var(--text-muted); font-weight: 500;
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.pkgcard-list li::before { content: '→'; color: var(--red); font-size: 11px; flex-shrink: 0; margin-top: 3px; font-weight: 700; }
.pkgcard-link {
  font-size: 14px; font-weight: 700; color: var(--red);
  padding-top: 1rem; border-top: 1px solid var(--border);
}

/* TEKLİF FORMU */
.cta-section { padding: 6rem 3rem; background: var(--cream); }
.cta-box {
  max-width: 1200px; margin: 0 auto; background: var(--navy); border-radius: 20px;
  padding: 4rem; display: flex; flex-direction: column; gap: 2.5rem;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(192,32,42,0.2) 0%, transparent 70%); pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-box h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 4vw, 48px); font-weight: 800;
  color: #fff; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 1rem;
}
.cta-box h2 span { color: var(--red); }
.cta-box p { font-size: 15px; color: #ffffffcc; font-weight: 300; }
.cta-form { position: relative; z-index: 1; }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr 1.5fr auto; gap: 12px; align-items: stretch; }
.cta-input {
  font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 400;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.12);
  color: #fff; padding: 14px 18px; border-radius: 10px; outline: none;
  transition: border-color 0.2s, background 0.2s; width: 100%;
}
.cta-input::placeholder { color: rgba(255,255,255,0.35); }
.cta-input:focus { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.12); }
.cta-select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px;
}
.cta-select option, .cta-select optgroup { background: #0F1F6B; color: #fff; }
.btn-cta {
  font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 600;
  background: var(--red); color: #fff; border: none; padding: 14px 28px;
  border-radius: 10px; cursor: pointer; text-decoration: none;
  transition: opacity 0.2s; white-space: nowrap; text-align: center;
}
.btn-cta:hover { opacity: 0.88; }
.cta-form-note { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 12px; font-weight: 400; }

/* FOOTER */
footer {
  background: var(--navy-dark); padding: 2.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 800;
  color: #fff; text-decoration: none; letter-spacing: -0.3px; text-transform: uppercase;
}
.footer-logo span { color: var(--red); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.2); }

/* WHATSAPP */
.wa-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: transform 0.2s;
}
.wa-btn:hover { transform: scale(1.08); }

@media (max-width: 900px) {
  .nav-wrap { padding: 3% 3% 0 3%; }
  nav { padding: 0.9rem 1.25rem; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 9rem 1.5rem 3rem; }
  .hero h1 { font-size: clamp(30px, 9vw, 42px); letter-spacing: -2px; }
  .sector-pills { display: none; }
  .process-section { padding: 2rem 1.5rem; }
  .process-steps { flex-direction: column; align-items: stretch; }
  .process-arrow { display: none; }
  .about-section { padding: 4rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .logos-section { padding: 3rem 1.5rem; }
  .logo-slide img { height: 28px; }
  .crm-section { padding: 4rem 1.5rem; }
  .crm-inner { grid-template-columns: 1fr; gap: 2rem; }
  .crm-visual { display: none; }
  .crm-sectors { display: none; }
  .projects-section { padding: 4rem 1.5rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .pkgcards-section { padding: 4rem 1.5rem; }
  .pkgcards-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 4rem 1.5rem; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .cta-form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
}
@media (max-width: 1100px) and (min-width: 901px) {
  .pkgcards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .pkgcards-grid { grid-template-columns: 1fr; }
}



  /* ORTAK */
    .yu-section-eyebrow {
      display: flex; align-items: center; gap: 10px;
      font-size: 13px; font-weight: 700; color: var(--red);
      letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.25rem;
    }
    .yu-section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--red); }
    .yu-btn-primary {
      font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 700;
      background: var(--red); color: #fff; border: none; padding: 16px 32px;
      border-radius: 10px; cursor: pointer; text-decoration: none; transition: opacity 0.2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .yu-btn-primary:hover { opacity: 0.88; }
    .yu-btn-outline {
      font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 500;
      background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.25);
      padding: 16px 32px; border-radius: 10px; cursor: pointer; text-decoration: none;
      transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
    }
    .yu-btn-outline:hover { border-color: rgba(255,255,255,0.6); }

    /* 1. HERO */
    .yu-about-hero { padding: 11.5rem 3rem 4rem; background: var(--white); }
    .yu-about-hero-inner { max-width: 900px; margin: 0 auto; }
    .yu-about-hero h1 {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(34px, 5vw, 64px);
      font-weight: 800; line-height: 1.1; letter-spacing: -2px; color: var(--navy); margin-bottom: 1.5rem;
    }
    .yu-about-hero h1 em { font-style: normal; color: var(--red); }
    .yu-about-hero p {
      font-size: 19px; color: var(--text-muted); line-height: 1.8; font-weight: 400; max-width: 720px;
    }

    /* 2. DEĞERLERİMİZ — 6 PRENSİP */
    .yu-values-section { padding: 5rem 3rem 6rem; background: var(--cream); }
    .yu-values-inner { max-width: 1200px; margin: 0 auto; }
    .yu-values-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap;
    }
    .yu-values-title {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(30px, 3.5vw, 48px);
      font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--navy);
    }
    .yu-values-subtitle { font-size: 18px; color: var(--text-muted); line-height: 1.8; max-width: 420px; font-weight: 400; }
    .yu-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .yu-value-card {
      background: var(--white); border: 1px solid var(--border); border-radius: 20px;
      padding: 2rem; transition: transform 0.2s, box-shadow 0.2s;
    }
    .yu-value-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,31,107,0.1); }
    .yu-value-num { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 800; color: var(--red); letter-spacing: 1px; margin-bottom: 1.25rem; }
    .yu-value-icon {
      width: 48px; height: 48px; border-radius: 12px; background: var(--navy-light);
      display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
    }
    .yu-value-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; letter-spacing: -0.3px; }
    .yu-value-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; font-weight: 400; }

    /* 3. BÜYÜK AJANS DEĞİL, DOĞRU AJANS */
    .yu-comparison-section { padding: 6rem 3rem; background: var(--white); }
    .yu-comparison-inner { max-width: 1200px; margin: 0 auto; }
    .yu-comparison-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
    .yu-comparison-title {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(30px, 3.5vw, 48px);
      font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--navy);
    }
    .yu-comparison-subtitle { font-size: 18px; color: var(--text-muted); line-height: 1.8; max-width: 420px; font-weight: 400; }
    .yu-comparison-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }

    .yu-team-card {
      background: var(--navy) center/cover no-repeat;
      border-radius: 20px; padding: 2.5rem; min-height: 460px;
      display: flex; flex-direction: column; justify-content: space-between;
      position: relative; overflow: hidden;
    }
    .yu-team-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(15,31,107,0.7) 0%, rgba(91,33,107,0.45) 55%, rgba(15,31,107,0.8) 100%);
    }
    .yu-team-card-top { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-start; }
    .yu-team-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); }
    .yu-team-badge {
      background: var(--red); color: #fff; font-family: 'Space Grotesk', sans-serif;
      font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
      padding: 8px 14px; border-radius: 6px;
    }
    .yu-team-stat { position: relative; z-index: 1; text-align: center; }
    .yu-team-stat-num {
      font-family: 'Space Grotesk', sans-serif; font-size: 90px; font-weight: 800;
      color: #fff; letter-spacing: -4px; line-height: 1;
    }
    .yu-team-stat-num span { color: var(--red); }
    .yu-team-stat-label { font-size: 15px; color: rgba(255,255,255,0.75); font-weight: 500; margin-top: 0.5rem; }
    .yu-team-card-bottom { position: relative; z-index: 1; font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; }

    .yu-comparison-list { display: flex; flex-direction: column; }
    .yu-comparison-item {
      display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem;
      padding: 1.5rem 0; border-bottom: 1px solid var(--border);
    }
    .yu-comparison-item:last-child { border-bottom: none; padding-bottom: 0; }
    .yu-comparison-num { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 800; color: var(--red); letter-spacing: -1px; }
    .yu-comparison-item h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
    .yu-comparison-item p { font-size: 15px; color: var(--text-muted); line-height: 1.7; font-weight: 400; }

    /* 4. FINAL CTA */
    .yu-final-cta-section { padding: 6rem 3rem; background: var(--cream); }
    .yu-final-cta-box {
      max-width: 1200px; margin: 0 auto; background: var(--navy); border-radius: 20px;
      padding: 4rem; display: flex; justify-content: space-between; align-items: center;
      gap: 2.5rem; flex-wrap: wrap; position: relative; overflow: hidden;
    }
    .yu-final-cta-box::before {
      content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(192,32,42,0.2) 0%, transparent 70%); pointer-events: none;
    }
    .yu-final-cta-content { position: relative; z-index: 1; max-width: 600px; }
    .yu-final-cta-box h2 {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(26px, 3.5vw, 42px); font-weight: 800;
      color: #fff; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 1rem;
    }
    .yu-final-cta-box h2 span { color: var(--red); }
    .yu-final-cta-box p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; font-weight: 400; }
    .yu-final-cta-actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .yu-about-hero { padding: 9rem 1.5rem 3rem; }
      .yu-values-section { padding: 3.5rem 1.5rem 4rem; }
      .yu-values-grid { grid-template-columns: 1fr; }
      .yu-comparison-section { padding: 4rem 1.5rem; }
      .yu-comparison-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .yu-team-card { min-height: 360px; }
      .yu-team-stat-num { font-size: 64px; }
      .yu-final-cta-section { padding: 4rem 1.5rem; }
      .yu-final-cta-box { padding: 2.5rem 1.5rem; flex-direction: column; align-items: flex-start; }
      .yu-final-cta-actions { width: 100%; }
      .yu-final-cta-actions a { text-align: center; justify-content: center; }
    }

    
    /* HERO */
    .yu-ref-hero { padding: 2rem 3rem 4rem; background: var(--white); }
    .yu-ref-hero-inner { max-width: 900px; margin: 0 auto; }
    .yu-ref-pill {
      display: inline-flex; align-items: center;
      font-size: 12px; font-weight: 700; color: var(--red);
      letter-spacing: 2px; text-transform: uppercase;
      background: var(--red-light); padding: 8px 18px; border-radius: 99px;
      margin-bottom: 1.5rem;
    }
    .yu-ref-hero h1 {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(34px, 5vw, 62px);
      font-weight: 800; line-height: 1.1; letter-spacing: -2px; color: var(--navy); margin-bottom: 1.5rem;
    }
    .yu-ref-hero h1 em { font-style: normal; color: var(--red); }
    .yu-ref-hero p { font-size: 18px; color: var(--text-muted); line-height: 1.8; font-weight: 400; max-width: 640px; }

    /* LOGO GRID */
    .yu-ref-logos-section { padding: 1rem 3rem 6rem; background: var(--white); }
    .yu-ref-logos-inner { max-width: 1200px; margin: 0 auto; }
    .yu-ref-logos-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    }
    .yu-ref-logo-card {
      background: var(--cream); border: 1px solid var(--border); border-radius: 16px;
      padding: 1.5rem 1.25rem; display: flex; align-items: center; gap: 12px;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .yu-ref-logo-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(15,31,107,0.08); background: var(--white); }
    .yu-ref-logo-icon {
      width: 38px; height: 38px; border-radius: 50%; background: var(--navy);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .yu-ref-logo-name { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; color: var(--text-muted); line-height: 1.3; }
    .yu-ref-logo-name small { display: block; font-size: 11px; font-weight: 500; color: var(--text-hint); margin-top: 1px; letter-spacing: 0.3px; }

    /* MÜŞTERİLERİMİZ NE DİYOR */
    .yu-testi-section { padding: 6rem 3rem; background: var(--navy); position: relative; overflow: hidden; }
    .yu-testi-section::before {
      content: ''; position: absolute; top: -100px; left: -100px; width: 500px; height: 500px;
      border-radius: 50%; background: radial-gradient(circle, rgba(91,33,107,0.35) 0%, transparent 70%);
      pointer-events: none;
    }
    .yu-testi-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
    .yu-testi-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
    .yu-section-eyebrow-light {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.65);
      letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.25rem;
    }
    .yu-section-eyebrow-light::before { content: ''; width: 20px; height: 2px; background: var(--red); }
    .yu-testi-title {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 1rem;
    }
    .yu-testi-subtitle { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.8; font-weight: 400; }

    .yu-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .yu-testi-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px; padding: 2rem;
    }
    .yu-testi-quote { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 0.5rem; }
    .yu-testi-text { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.75; font-weight: 400; margin-bottom: 2rem; }
    .yu-testi-footer { display: flex; align-items: center; gap: 14px; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); }
    .yu-testi-avatar {
      width: 44px; height: 44px; border-radius: 50%; background: var(--red);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: #fff;
    }
    .yu-testi-name { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; }
    .yu-testi-role { font-size: 13px; color: rgba(255,255,255,0.5); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .yu-ref-breadcrumb { padding-left: 1.5rem; padding-right: 1.5rem; }
      .yu-ref-hero { padding: 1.5rem 1.5rem 3rem; }
      .yu-ref-logos-section { padding: 0.5rem 1.5rem 4rem; }
      .yu-ref-logos-grid { grid-template-columns: 1fr 1fr; }
      .yu-testi-section { padding: 4rem 1.5rem; }
      .yu-testi-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 560px) {
      .yu-ref-logos-grid { grid-template-columns: 1fr; }
    }

        /* BREADCRUMB + HERO */
    .yu-contact-hero { padding-top: 180px; padding-left: 3rem; padding-right: 3rem; padding-bottom: 4rem; background: var(--white); transition: padding-top 0.15s ease; }
    .yu-contact-hero-inner { max-width: 900px; margin: 0 auto; }
    .yu-contact-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); margin-bottom: 2rem; }
    .yu-contact-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
    .yu-contact-breadcrumb a:hover { color: var(--navy); }
    .yu-contact-breadcrumb span { color: var(--red); font-weight: 600; }

    .yu-contact-pill {
      display: inline-flex; align-items: center;
      font-size: 12px; font-weight: 700; color: var(--red);
      letter-spacing: 2px; text-transform: uppercase;
      background: var(--red-light); padding: 8px 18px; border-radius: 99px;
      margin-bottom: 1.5rem;
    }
    .yu-contact-hero h1 {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(34px, 5vw, 62px);
      font-weight: 800; line-height: 1.1; letter-spacing: -2px; color: var(--navy); margin-bottom: 1.5rem;
    }
    .yu-contact-hero h1 em { font-style: normal; color: var(--red); }
    .yu-contact-hero p { font-size: 18px; color: var(--text-muted); line-height: 1.8; font-weight: 400; max-width: 640px; }

    /* İLETİŞİM KANALLARI */
    .yu-channels-section { padding: 5rem 3rem 6rem; background: var(--white); }
    .yu-channels-inner { max-width: 1200px; margin: 0 auto; }
    .yu-channels-header { text-align: center; max-width: 620px; margin: 0 auto 3.5rem; }
    .yu-channels-title {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 800; color: var(--navy); letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 1rem;
    }
    .yu-channels-subtitle { font-size: 17px; color: var(--text-muted); line-height: 1.8; font-weight: 400; }

    .yu-channels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .yu-channel-card {
      background: var(--cream); border: 1px solid var(--border); border-radius: 20px;
      padding: 2.5rem 2rem; text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .yu-channel-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,31,107,0.08); }
    .yu-channel-icon {
      width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 1.5rem;
      display: flex; align-items: center; justify-content: center;
    }
    .yu-channel-icon.whatsapp { background: #E3F8EC; }
    .yu-channel-icon.phone { background: var(--navy-light); }
    .yu-channel-icon.email { background: var(--red-light); }
    .yu-channel-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; }
    .yu-channel-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; font-weight: 400; margin-bottom: 1.25rem; }
    .yu-channel-link { font-size: 16px; font-weight: 700; color: var(--navy); text-decoration: none; display: block; margin-bottom: 0.5rem; }
    .yu-channel-link:hover { color: var(--red); }
    .yu-channel-meta { font-size: 13px; color: var(--text-hint); }
    .yu-channel-status { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: #1a9e54; }
    .yu-channel-status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #1a9e54; }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .yu-contact-hero { padding-left: 1.5rem; padding-right: 1.5rem; padding-bottom: 3rem; }
      .yu-channels-section { padding: 3.5rem 1.5rem 4rem; }
      .yu-channels-grid { grid-template-columns: 1fr; }
    }


    /* HERO */
    .yu-blog-hero { padding-top: 180px; padding-left: 3rem; padding-right: 3rem; padding-bottom: 3rem; background: var(--white); transition: padding-top 0.15s ease; }
    .yu-blog-hero-inner { max-width: 900px; margin: 0 auto; }
    .yu-blog-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); margin-bottom: 2rem; }
    .yu-blog-breadcrumb a { color: var(--text-muted); text-decoration: none; }
    .yu-blog-breadcrumb a:hover { color: var(--navy); }
    .yu-blog-breadcrumb span { color: var(--red); font-weight: 600; }
    .yu-blog-hero h1 {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(32px, 4.5vw, 56px);
      font-weight: 800; letter-spacing: -1.5px; color: var(--navy); margin-bottom: 1rem; line-height: 1.1;
    }
    .yu-blog-hero p { font-size: 18px; color: var(--text-muted); line-height: 1.8; max-width: 600px; }

    /* BLOG GRID */
    .yu-blog-section { padding: 1rem 3rem 4rem; background: var(--white); }
    .yu-blog-inner { max-width: 1200px; margin: 0 auto; }
    .yu-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }

    .yu-blog-card { text-decoration: none; display: block; }
    .yu-blog-thumb {
      display: flex; height: 220px; border-radius: 14px; overflow: hidden; margin-bottom: 1.25rem;
    }
    .yu-blog-thumb-text {
      flex: 1; background: var(--navy-dark); color: #fff;
      display: flex; align-items: center; padding: 1.5rem;
      font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 800;
      text-transform: uppercase; line-height: 1.4; letter-spacing: 0.2px;
    }
    .yu-blog-thumb-img { flex: 1; background-size: cover; background-position: center; }

    .yu-blog-date { font-size: 13px; color: var(--text-hint); margin-bottom: 0.6rem; }
    .yu-blog-card h2 {
      font-family: 'Space Grotesk', sans-serif; font-size: 21px; font-weight: 800;
      color: var(--navy); letter-spacing: -0.3px; line-height: 1.3; margin-bottom: 0.6rem;
      transition: color 0.2s;
    }
    .yu-blog-card:hover h2 { color: var(--red); }
    .yu-blog-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; font-weight: 400; margin-bottom: 1.25rem; }
    .yu-blog-divider { height: 1px; background: var(--border); }

    /* PAGINATION */
    .yu-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 3.5rem; }
    .yu-page-btn {
      width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border-md);
      background: var(--white); color: var(--navy); font-family: 'Mulish', sans-serif;
      font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s;
      display: flex; align-items: center; justify-content: center; text-decoration: none;
    }
    .yu-page-btn:hover { border-color: var(--navy); }
    .yu-page-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
    .yu-page-btn.arrow { font-size: 16px; }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .yu-blog-hero { padding-left: 1.5rem; padding-right: 1.5rem; padding-bottom: 2rem; }
      .yu-blog-section { padding: 1rem 1.5rem 3rem; }
      .yu-blog-grid { grid-template-columns: 1fr; gap: 28px; }
    }

       /* HERO */
    .yu-post-hero { padding-top: 180px; padding-left: 3rem; padding-right: 3rem; padding-bottom: 2.5rem; background: var(--white); transition: padding-top 0.15s ease; }
    .yu-post-hero-inner { max-width: 760px; margin: 0 auto; }
    .yu-post-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); margin-bottom: 2rem; flex-wrap: wrap; }
    .yu-post-breadcrumb a { color: var(--text-muted); text-decoration: none; }
    .yu-post-breadcrumb a:hover { color: var(--navy); }
    .yu-post-breadcrumb span { color: var(--red); font-weight: 600; }
    .yu-post-date { font-size: 14px; color: var(--text-hint); margin-bottom: 1rem; }
    .yu-post-hero h1 {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(30px, 4.5vw, 48px);
      font-weight: 800; letter-spacing: -1.5px; color: var(--navy); line-height: 1.15;
    }

    /* COVER IMAGE */
    .yu-post-cover { max-width: 900px; margin: 2.5rem auto; padding: 0 3rem; }
    .yu-post-cover img { width: 100%; height: 420px; object-fit: cover; border-radius: 16px; display: block; }

    /* CONTENT */
    .yu-post-content { max-width: 760px; margin: 0 auto; padding: 0 3rem 5rem; }
    .yu-post-content p { font-size: 18px; color: var(--text-muted); line-height: 1.9; font-weight: 400; margin-bottom: 1.5rem; }
    .yu-post-content h2 {
      font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 800;
      color: var(--navy); letter-spacing: -0.5px; margin: 2.5rem 0 1.25rem;
    }
    .yu-post-content ul { margin: 0 0 1.5rem; padding-left: 1.25rem; }
    .yu-post-content ul li { font-size: 18px; color: var(--text-muted); line-height: 1.9; margin-bottom: 0.6rem; }

    /* BACK TO BLOG */
    .yu-post-back-row { max-width: 760px; margin: 0 auto; padding: 0 3rem 4rem; }
    .yu-post-back { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: var(--red); text-decoration: none; }
    .yu-post-back:hover { opacity: 0.8; }

    /* DİĞER YAZILAR */
    .yu-related-section { padding: 4rem 3rem 6rem; background: var(--cream); }
    .yu-related-inner { max-width: 1200px; margin: 0 auto; }
    .yu-related-title {
      font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 800;
      color: var(--navy); letter-spacing: -0.5px; margin-bottom: 2rem;
    }
    .yu-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .yu-related-card { text-decoration: none; display: block; background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
    .yu-related-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(15,31,107,0.1); }
    .yu-related-thumb { height: 150px; background-size: cover; background-position: center; }
    .yu-related-body { padding: 1.25rem; }
    .yu-related-date { font-size: 12px; color: var(--text-hint); margin-bottom: 0.4rem; }
    .yu-related-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.4; }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .yu-post-hero { padding-left: 1.5rem; padding-right: 1.5rem; padding-bottom: 1.5rem; }
      .yu-post-cover { padding: 0 1.5rem; }
      .yu-post-cover img { height: 220px; }
      .yu-post-content { padding: 0 1.5rem 3rem; }
      .yu-post-back-row { padding: 0 1.5rem 3rem; }
      .yu-related-section { padding: 3rem 1.5rem 4rem; }
      .yu-related-grid { grid-template-columns: 1fr; }
    }

        .yu-section-eyebrow {
      display: flex; align-items: center; gap: 10px;
      font-size: 13px; font-weight: 700; color: var(--red);
      letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.25rem;
    }
    .yu-section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--red); }
    .yu-section-eyebrow-light { color: rgba(255,255,255,0.65); }
    .yu-section-eyebrow-light::before { background: var(--red); }

    /* 1. HERO */
    .yu-svc-hero { padding-top: 180px; padding-left: 3rem; padding-right: 3rem; padding-bottom: 4rem; background: var(--white); transition: padding-top 0.15s ease; }
    .yu-svc-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .yu-svc-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); margin-bottom: 2rem; flex-wrap: wrap; }
    .yu-svc-breadcrumb a { color: var(--text-muted); text-decoration: none; }
    .yu-svc-breadcrumb a:hover { color: var(--navy); }
    .yu-svc-breadcrumb span { color: var(--red); font-weight: 600; }
    .yu-svc-hero h1 {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(34px, 4.5vw, 58px);
      font-weight: 800; line-height: 1.1; letter-spacing: -2px; color: var(--navy); margin-bottom: 1.5rem;
    }
    .yu-svc-hero h1 em { font-style: normal; color: var(--red); }
    .yu-svc-hero-desc { font-size: 18px; color: var(--text-muted); line-height: 1.8; font-weight: 400; margin-bottom: 2.5rem; max-width: 540px; }
    .yu-svc-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .yu-btn-primary {
      font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 700;
      background: var(--red); color: #fff; border: none; padding: 16px 32px;
      border-radius: 10px; cursor: pointer; text-decoration: none; transition: opacity 0.2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .yu-btn-primary:hover { opacity: 0.88; }
    .yu-btn-outline {
      font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 500;
      background: transparent; color: var(--navy); border: 1.5px solid var(--border-md);
      padding: 16px 32px; border-radius: 10px; cursor: pointer; text-decoration: none;
      transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
    }
    .yu-btn-outline:hover { border-color: var(--navy); }
    .yu-svc-hero-img { border-radius: 20px; overflow: hidden; }
    .yu-svc-hero-img img { width: 100%; height: 460px; object-fit: cover; display: block; }

    /* 2. HİZMETİN KAPSAMI */
    .yu-scope-section { padding: 6rem 3rem; background: var(--white); }
    .yu-scope-inner { max-width: 1200px; margin: 0 auto; }
    .yu-scope-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
    .yu-scope-title {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(30px, 3.5vw, 48px);
      font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--navy);
    }
    .yu-scope-subtitle { font-size: 18px; color: var(--text-muted); line-height: 1.8; max-width: 420px; font-weight: 400; }
    .yu-scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .yu-scope-card { background: var(--cream); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; transition: transform 0.2s, box-shadow 0.2s; }
    .yu-scope-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,31,107,0.08); }
    .yu-scope-icon {
      width: 48px; height: 48px; border-radius: 12px; background: var(--white);
      border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
    }
    .yu-scope-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; letter-spacing: -0.3px; }
    .yu-scope-card p { font-size: 15px; color: var(--text-muted); line-height: 1.75; font-weight: 400; }

    /* 3. NASIL ÇALIŞIYORUZ */
    .yu-process-section { padding: 6rem 3rem; background: var(--navy); position: relative; overflow: hidden; }
    .yu-process-section::before {
      content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px;
      border-radius: 50%; background: radial-gradient(circle, rgba(192,32,42,0.15) 0%, transparent 70%); pointer-events: none;
    }
    .yu-process-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
    .yu-process-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
    .yu-process-title {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(30px, 3.5vw, 48px);
      font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: #fff;
    }
    .yu-process-subtitle { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 380px; font-weight: 400; }
    .yu-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .yu-process-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 1.75rem; }
    .yu-process-num { font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 800; color: var(--red); letter-spacing: -1.5px; margin-bottom: 1rem; }
    .yu-process-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 0.6rem; }
    .yu-process-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; font-weight: 400; margin-bottom: 1.25rem; }
    .yu-process-badge {
      display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
      background: rgba(192,32,42,0.25); color: #ff9b9f; padding: 5px 12px; border-radius: 99px;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .yu-svc-hero { padding-left: 1.5rem; padding-right: 1.5rem; padding-bottom: 3rem; }
      .yu-svc-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .yu-svc-hero-img img { height: 280px; }
      .yu-scope-section { padding: 4rem 1.5rem; }
      .yu-scope-grid { grid-template-columns: 1fr; }
      .yu-process-section { padding: 4rem 1.5rem; }
      .yu-process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    }
    @media (max-width: 560px) {
      .yu-process-grid { grid-template-columns: 1fr; }
    }

        .yu-section-eyebrow {
      display: flex; align-items: center; gap: 10px;
      font-size: 13px; font-weight: 700; color: var(--red);
      letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.25rem;
    }
    .yu-section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--red); }
    .yu-section-eyebrow-light { color: rgba(255,255,255,0.65); }
    .yu-section-eyebrow-light::before { background: var(--red); }

    /* 1. HERO */
    .yu-pkg-hero { padding-top: 180px; padding-left: 3rem; padding-right: 3rem; padding-bottom: 4rem; background: var(--white); transition: padding-top 0.15s ease; }
    .yu-pkg-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .yu-pkg-hero-img { border-radius: 20px; overflow: hidden; position: relative; }
    .yu-pkg-hero-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
    .yu-pkg-stats { position: absolute; bottom: 0; left: 0; right: 0; display: flex; gap: 12px; padding: 1.25rem; background: linear-gradient(to top, rgba(9,20,82,0.85), transparent); }
    .yu-pkg-stat { flex: 1; }
    .yu-pkg-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 800; color: #fff; }
    .yu-pkg-stat-num span { color: #ff8b90; }
    .yu-pkg-stat-label { font-size: 12px; color: rgba(255,255,255,0.75); }

    .yu-pkg-pill {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; color: var(--red);
      letter-spacing: 1px; text-transform: uppercase;
      background: var(--red-light); padding: 8px 18px; border-radius: 99px;
      margin-bottom: 1.5rem;
    }
    .yu-pkg-hero h1 {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(32px, 4.2vw, 52px);
      font-weight: 800; line-height: 1.15; letter-spacing: -1.5px; color: var(--navy); margin-bottom: 1.5rem;
    }
    .yu-pkg-hero h1 em { font-style: normal; color: var(--red); }
    .yu-pkg-hero-desc { font-size: 17px; color: var(--text-muted); line-height: 1.85; font-weight: 400; margin-bottom: 1.75rem; }
    .yu-pkg-hero-desc strong { color: var(--navy); font-weight: 700; }

    .yu-pkg-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 1.75rem; }
    .yu-pkg-tag {
      display: flex; align-items: center; gap: 8px;
      font-size: 14px; font-weight: 700; color: var(--navy);
      background: var(--cream); border: 1px solid var(--border); border-radius: 10px;
      padding: 10px 16px;
    }
    .yu-pkg-tag::before { content: '✓'; color: #1a9e54; font-weight: 800; }

    .yu-btn-primary {
      font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 700;
      background: var(--red); color: #fff; border: none; padding: 16px 32px;
      border-radius: 10px; cursor: pointer; text-decoration: none; transition: opacity 0.2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .yu-btn-primary:hover { opacity: 0.88; }

    /* 2. PAKET SENİN İÇİN PRATİKTE NE YAPIYOR */
    .yu-profiles-section { padding: 6rem 3rem; background: var(--navy); }
    .yu-profiles-inner { max-width: 1200px; margin: 0 auto; }
    .yu-profiles-title {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 3.5vw, 46px);
      font-weight: 800; color: #fff; letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 1rem;
    }
    .yu-profiles-subtitle { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.8; font-weight: 400; margin-bottom: 3rem; max-width: 640px; }
    .yu-profiles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .yu-profile-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 2rem; }
    .yu-profile-top { display: flex; align-items: center; gap: 12px; margin-bottom: 1.25rem; }
    .yu-profile-num {
      font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 800; color: var(--red);
      background: rgba(192,32,42,0.15); padding: 4px 10px; border-radius: 6px;
    }
    .yu-profile-tag { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
    .yu-profile-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 0.75rem; line-height: 1.35; }
    .yu-profile-card p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; font-weight: 400; }
    .yu-profile-card p strong { color: #fff; font-weight: 700; }

    /* 3. NE BEKLEYEBİLİRSİN */
    .yu-expect-section { padding: 6rem 3rem; background: var(--cream); }
    .yu-expect-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
    .yu-expect-title {
      font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 3.5vw, 46px);
      font-weight: 800; color: var(--navy); letter-spacing: -1.5px; line-height: 1.2; margin-bottom: 1rem;
    }
    .yu-expect-subtitle { font-size: 17px; color: var(--text-muted); line-height: 1.8; font-weight: 400; max-width: 720px; margin: 0 auto 3rem; }
    .yu-expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 2rem; }
    .yu-expect-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2rem; }
    .yu-expect-badge {
      display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px;
      color: var(--red); background: var(--red-light); padding: 5px 14px; border-radius: 99px; margin-bottom: 1.25rem;
    }
    .yu-expect-num { font-family: 'Space Grotesk', sans-serif; font-size: 40px; font-weight: 800; color: var(--navy); letter-spacing: -1.5px; margin-bottom: 0.75rem; }
    .yu-expect-num span { color: var(--red); }
    .yu-expect-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; }
    .yu-expect-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 400; }
    .yu-expect-note {
      border: 1.5px dashed var(--border-md); border-radius: 14px; padding: 1.5rem 2rem;
      font-size: 14px; color: var(--text-muted); line-height: 1.8; text-align: left;
    }
    .yu-expect-note strong { color: var(--navy); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .yu-pkg-hero { padding-left: 1.5rem; padding-right: 1.5rem; padding-bottom: 3rem; }
      .yu-pkg-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .yu-pkg-hero-img { order: -1; }
      .yu-pkg-hero-img img { height: 280px; }
      .yu-profiles-section { padding: 4rem 1.5rem; }
      .yu-profiles-grid { grid-template-columns: 1fr; }
      .yu-expect-section { padding: 4rem 1.5rem; }
      .yu-expect-grid { grid-template-columns: 1fr; }
    }

    /* ÇIKIŞ NİYETİ WHATSAPP POPUP */
.exit-popup-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(9,20,82,0.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.exit-popup-overlay.show { opacity: 1; pointer-events: all; }
.exit-popup {
  background: var(--white); border-radius: 20px; max-width: 420px; width: 100%;
  padding: 2.5rem 2rem 2rem; position: relative; text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.exit-popup-overlay.show .exit-popup { transform: scale(1) translateY(0); }
.exit-popup-close {
  position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px;
  border-radius: 50%; border: 1px solid var(--border-md); background: transparent;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 16px; transition: all 0.2s;
}
.exit-popup-close:hover { background: var(--red-light); color: var(--red); border-color: var(--red); }
.exit-popup-icon {
  width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.exit-popup h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 800;
  color: var(--navy); letter-spacing: -0.5px; margin-bottom: 0.75rem; line-height: 1.2;
}
.exit-popup p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.exit-popup-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 700;
  background: #25D366; color: #fff; border: none; padding: 14px 20px;
  border-radius: 10px; cursor: pointer; text-decoration: none;
  transition: opacity 0.2s; margin-bottom: 1rem;
}
.exit-popup-cta:hover { opacity: 0.88; }
.exit-popup-note { font-size: 12px; color: var(--text-hint); }

@media (max-width: 900px) {
  .nav-wrap { padding: 3% 3% 0 3%; }
  nav { padding: 0.9rem 1.25rem; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  .hero { padding: 9rem 1.5rem 3rem; }
  .hero h1 { font-size: clamp(30px, 9vw, 42px); letter-spacing: -2px; }
  .sector-pills { display: none; }
  .process-section { padding: 2rem 1.5rem; }
  .process-steps { flex-direction: column; align-items: stretch; }
  .process-arrow { display: none; }
  .about-section { padding: 4rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .logos-section { padding: 3rem 1.5rem; }
  .logo-slide img { height: 28px; }
  .crm-section { padding: 4rem 1.5rem; }
  .crm-inner { grid-template-columns: 1fr; gap: 2rem; }
  .crm-visual { display: none; }
  .crm-sectors { display: none; }
  .projects-section { padding: 4rem 1.5rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .pkgcards-section { padding: 4rem 1.5rem; }
  .pkgcards-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 4rem 1.5rem; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .cta-form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
}
@media (max-width: 1100px) and (min-width: 901px) {
  .pkgcards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .pkgcards-grid { grid-template-columns: 1fr; }
}